/* Color Palette Variables */
:root {
    --primary-bg: #181A1C;
    --secondary-bg: #23272A;
    --accent-orange: #F05A1A;
    --accent-orange-light: #F5A623;
    --text-white: #FFFFFF;
    --text-gray: #DDE6E8;
    --border-gray: #A9B4B7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    background: rgba(24, 26, 28, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--accent-orange);
    font-size: 24px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent-orange-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.play-btn {
    background: var(--accent-orange);
    color: var(--primary-bg);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.play-btn:hover {
    background: #e0941a;
    transform: translateY(-2px);
}

/* Back Button (for privacy-policy and terms pages) */
.back-btn {
    background: var(--accent-orange);
    color: var(--primary-bg);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.back-btn:hover {
    background: #e0941a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.hero h1 {
    color: var(--accent-orange);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(245, 90, 26, 0.18);
}

.hero h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    color: var(--accent-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat .label {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
    margin: 40px 0;
    text-align: center;
}

.countdown-container h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--secondary-bg);
    border: 2px solid var(--border-gray);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 90, 26, 0.2);
}

.countdown-number {
    display: block;
    color: var(--accent-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    background: var(--accent-orange);
    color: var(--primary-bg);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.primary-cta:hover {
    background: #e0941a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.secondary-cta {
    background: transparent;
    color: var(--text-white);
    padding: 18px 35px;
    text-decoration: none;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.secondary-cta:hover {
    background: var(--border-gray);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

/* PDF Download Button */
.pdf-download {
    background: var(--accent-orange);
    color: var(--primary-bg);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    margin: 20px 10px;
}

.pdf-download:hover {
    background: #e0941a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.section-title {
    color: var(--accent-orange);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-gray);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
}

.feature-card h3 {
    color: var(--accent-orange-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.token-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.token-card .number {
    color: var(--accent-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.token-card .label {
    color: var(--accent-orange-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.token-card .description {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.distribution-chart {
    background: var(--secondary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.distribution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
}

.distribution-item:last-child {
    border-bottom: none;
}

.distribution-label {
    color: var(--text-white);
    font-weight: 500;
}

.distribution-percentage {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Roadmap */
.roadmap {
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-orange);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-content {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    width: 45%;
    position: relative;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent-orange);
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
    right: -20px;
}

.roadmap-item:nth-child(even) .roadmap-content::before {
    left: -20px;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.roadmap-quarter {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.roadmap-title {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-description {
    color: var(--text-gray);
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.security-icon {
    color: var(--accent-orange);
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-gray);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-orange-light);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    border-top: 1px solid var(--border-gray);
    padding-top: 30px;
}

/* Privacy Policy and Terms Pages Specific Styles */
.privacy-header, .terms-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.privacy-header h1, .terms-header h1 {
    color: var(--accent-orange);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(245, 90, 26, 0.18);
}

.privacy-header p, .terms-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.privacy-section, .terms-section {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-section:hover, .terms-section:hover {
    transform: translateY(-2px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.1);
}

.privacy-section h2, .terms-section h2 {
    color: var(--accent-orange-light);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 10px;
}

.privacy-section h3, .terms-section h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.privacy-section p, .terms-section p {
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 1rem;
}

.privacy-section ul, .privacy-section li, .terms-section ul, .terms-section ol, .terms-section li {
    color: var(--text-gray);
    margin: 20px 0 20px 25px;
}

.privacy-section li, .terms-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.contact-info, .contact {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    color: var(--primary-bg);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

.contact-info h3, .contact h2 {
    color: var(--primary-bg);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-bg);
}

.contact-info p, .contact p, .contact ul, .contact li {
    color: var(--primary-bg);
    margin-bottom: 8px;
    font-weight: 500;
}

.last-updated {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.back-home {
    background: var(--accent-orange);
    color: var(--primary-bg);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.back-home:hover {
    background: #e0941a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

/* Small icon utilities for headings */
.icon-18 {
    width: 18px;
    height: 18px;
}

.icon-gap {
    margin-right: 8px;
    vertical-align: -3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap::before {
        left: 20px;
    }
    
    .roadmap-item {
        flex-direction: row !important;
    }
    
    .roadmap-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .roadmap-content::before {
        left: -40px !important;
    }
    
    .roadmap-dot {
        left: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 20px;
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    border-top: 1px solid var(--border-gray);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--accent-orange);
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--accent-orange);
    color: var(--primary-bg);
}

.cookie-accept:hover {
    background: #e0941a;
    transform: translateY(-2px);
}

/* Utility classes extracted from inline styles */
.icon-accent {
    color: var(--accent-orange);
}

.icon-32 {
    width: 32px;
    height: 32px;
}

.chart-title {
    color: var(--accent-orange-light);
    margin-bottom: 30px;
    text-align: center;
}

.link-accent {
    color: var(--accent-orange);
}

.disabled-toggle {
    opacity: 0.5;
    cursor: not-allowed;
}

.hidden-input {
    display: none;
}

/* Legal pages narrower layout */
body.legal .container {
    max-width: 900px;
}

/* Terms page subtitle extracted from inline */
.terms-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.1rem;
}

.cookie-decline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-gray);
}

.cookie-decline:hover {
    background: var(--border-gray);
    color: var(--primary-bg);
}

.cookie-settings {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-gray);
}

.cookie-settings:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.cookie-option-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--border-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--accent-orange);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active::after {
    transform: translateX(26px);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text h2 {
    color: var(--accent-orange);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list li strong {
    color: var(--text-white);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 90, 26, 0.2);
}

.stat-number {
    color: var(--accent-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-bg);
    border-radius: 20px;
    padding: 60px 0;
    margin: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--primary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 90, 26, 0.15);
}

.contact-item strong {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-item a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-orange-light);
}

/* Contact Form */
.contact-form {
    background: var(--primary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 15px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(240, 90, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--secondary-bg);
    color: var(--text-white);
}

/* Navigation active state */
.nav-menu a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Logo link styling */
.logo a {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
}

.logo a:hover {
    color: var(--accent-orange-light);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
}
