/* Variables */
:root {
    --bg-dark: #050810;
    --neon-green: #00ff88;
    --neon-cyan: #00e5ff;
    --gold: #ffd700;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

#bg-layer-1 {
    background-image: url('assets/dark_digital_forest.png');
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* Typography & Utilities */
.text-center { text-align: center; }
.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--neon-cyan);
}
.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
}

.btn-neon {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.2), 0 0 10px rgba(0, 255, 136, 0.2);
}
.btn-neon:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--glass-border);
}
.logo { font-size: 1.5rem; font-weight: 800; font-family: 'Space Grotesk'; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--neon-green); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
}
.hero-content {
    max-width: 600px;
    z-index: 2;
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 20px; }

/* 3D Coin CSS */
.hero-3d-coin {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tdtf-coin {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    /* Will be animated with GSAP */
}
.coin-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0) 70%);
    z-index: -1;
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 100px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}
.stat-item i {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

/* Tokenomics */
.tokenomics {
    padding: 100px 0;
}
.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.token-card ul {
    list-style: none;
    margin-top: 20px;
}
.token-card li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}
.distribution-bars { margin-top: 20px; }
.bar-group { margin-bottom: 20px; }
.bar-track {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin-top: 8px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    width: 0; /* Animated by GSAP */
    border-radius: 5px;
}

/* Roadmap Advanced */
.roadmap { padding: 120px 0; overflow-x: hidden; }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding: 40px 0; }
.timeline::after {
    content: '';
    display: table;
    clear: both;
}
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}
.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 4px;
    height: 0; /* GSAP animates this */
    background: linear-gradient(180deg, var(--neon-green), var(--neon-cyan));
    border-radius: 2px;
    box-shadow: 0 0 15px var(--neon-green);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 60px;
    clear: both;
}
.timeline-item.left { float: left; text-align: right; }
.timeline-item.right { float: right; text-align: left; }

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
    transition: all 0.5s ease;
}
.timeline-item.left .timeline-dot { right: -20px; }
.timeline-item.right .timeline-dot { left: -20px; }

.timeline-item.active .timeline-dot {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    transform: scale(1.1);
}

.timeline-content {
    padding: 30px;
    border-top: 2px solid transparent;
    transition: all 0.4s ease;
}
.timeline-item.active .timeline-content {
    border-top: 2px solid var(--neon-green);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.1);
}

.phase-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.timeline-content h3 { font-size: 1.8rem; margin-bottom: 15px; color: #fff; }
.timeline-content p { color: var(--text-muted); font-size: 1rem; }

/* 3D Hover Effect for Cards */
.3d-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.3d-card:hover {
    transform: translateY(-10px);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    background: rgba(5,8,16,0.9);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.social-links {
    display: flex;
    gap: 20px;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    transform: translateY(-5px);
}
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--neon-green);
    cursor: pointer;
    z-index: 101;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .navbar { padding: 15px 20px; flex-direction: row; justify-content: space-between; }
    .navbar.scrolled { padding: 10px 20px; }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(5, 8, 16, 0.95);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-container.active { right: 0; }
    
    .nav-links { flex-direction: column; text-align: center; width: 100%; gap: 20px; display: flex; }
    .nav-actions { display: flex; flex-direction: column; gap: 10px; width: 90%; margin: 0 auto; }
    .nav-actions .btn { margin-right: 0 !important; width: 100%; text-align: center; }
    
    .hero { flex-direction: column; text-align: center; justify-content: center; padding: 120px 5% 50px; }
    .hero-title { font-size: 2.5rem; }
    .hero-3d-coin { width: 100%; height: 300px; margin-top: 20px; }
    .tdtf-coin { width: 200px; }
    .coin-glow { width: 180px; height: 180px; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 10px; }
    .btn { width: 100%; }
    .token-grid, .stats-grid { grid-template-columns: 1fr; }
    .about, .tokenomics, .roadmap { padding: 60px 0; }
    .section-title { font-size: 2.2rem; text-align: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .timeline-line { left: 30px; transform: none; }
    .timeline-progress { left: 30px; transform: none; }
    .timeline-item { width: 100%; padding: 0 0 0 70px; margin-bottom: 40px; }
    .timeline-item.left { text-align: left; }
    .timeline-item.right { text-align: left; }
    .timeline-dot { top: 20px !important; }
    .timeline-item.left .timeline-dot { right: auto; left: 10px; }
    .timeline-item.right .timeline-dot { left: 10px; }
}

/* Auth Forms (Login / Register) */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    font-size: 1.1rem;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--neon-cyan);
    transition: color 0.3s;
}

.auth-links a:hover {
    color: var(--neon-green);
}


/* ===== DROPDOWN MENU STYLES ===== added by deepseek */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(13, 43, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 16px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 150, 0.05);
    z-index: 1000;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text-light);
    background: rgba(46, 204, 113, 0.08);
    border-left-color: var(--accent);
}

.dropdown-menu a i {
    margin-right: 10px;
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* Dropdown arrow rotation */
.dropdown > a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ===== MEGA MENU (Optional - for larger dropdowns) ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 600px;
    background: rgba(13, 43, 31, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mega-menu .mega-column h4 {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.mega-menu .mega-column a {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mega-menu .mega-column a:hover {
    color: var(--accent);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* ===== RESPONSIVE DROPDOWNS ===== */
@media (max-width: 992px) {
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 8px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        pointer-events: all;
        margin: 0.5rem 0 0.5rem 1.5rem;
        min-width: auto;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown > a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        display: none;
        grid-template-columns: 1fr;
        padding: 1rem;
        margin: 0.5rem 0 0.5rem 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-radius: 8px;
        box-shadow: none;
    }
    
    .mega-menu.show {
        display: grid;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
}


/* ===== DROPDOWN MENU STYLES ===== */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown > a i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.65rem;
}

.dropdown.active > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(13, 43, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 16px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 150, 0.05);
    z-index: 1000;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text-light);
    background: rgba(46, 204, 113, 0.08);
    border-left-color: var(--accent);
}

.dropdown-menu a i {
    margin-right: 10px;
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* ===== MOBILE RESPONSIVE DROPDOWNS ===== */
@media (max-width: 992px) {
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(46, 204, 113, 0.05);
        border-radius: 8px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        pointer-events: all;
        margin: 0.5rem 0 0.5rem 1.5rem;
        min-width: auto;
        backdrop-filter: none;
        transition: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        white-space: normal;
        border-left: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(46, 204, 113, 0.05);
        border-left: none;
    }
    
    .dropdown > a i.fa-chevron-down {
        margin-left: auto;
    }
    
    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
}

/* ===== DROPDOWN MENU STYLES ===== */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.65rem;
    margin-left: 5px;
}

.dropdown.active > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(13, 43, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 16px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 150, 0.05);
    z-index: 1000;
    pointer-events: none;
}

/* Desktop hover effect */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }
}

.dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text-light);
    background: rgba(46, 204, 113, 0.08);
    border-left-color: var(--accent);
}

.dropdown-menu a i {
    margin-right: 10px;
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* ===== MOBILE RESPONSIVE DROPDOWNS ===== */
@media (max-width: 992px) {
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown > a i.fa-chevron-down {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(46, 204, 113, 0.05);
        border-radius: 8px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        pointer-events: all;
        margin: 0.5rem 0 0.5rem 1.5rem;
        min-width: auto;
        backdrop-filter: none;
        transition: none;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        white-space: normal;
        border-left: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(46, 204, 113, 0.05);
        border-left: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
}

/* Mobile menu container */
@media (max-width: 992px) {
    .nav-container.open {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: rgba(7, 25, 20, 0.98);
        padding: 1.5rem;
        position: absolute;
        top: 100%;
        left: 0;
        border-bottom: 2px solid rgba(46, 204, 113, 0.2);
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links > li > a {
        display: flex;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        color: var(--text-muted);
    }
    
    .nav-links > li > a i {
        margin-right: 10px;
    }
    
    .nav-links > li > a:hover {
        color: var(--accent);
    }
    
    .nav-actions {
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-actions .btn {
        flex: 1;
        text-align: center;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}
