﻿        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem 5%;
            background-color: transparent;
        }

        nav.scrolled {
            padding: 1rem 5%;
            background-color: rgba(26, 26, 26, 0.5);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled .logo {
            height: 35px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a.is-disabled {
            opacity: 0.8;
            cursor: not-allowed;
            pointer-events: none;
        }

        .nav-links a.is-disabled::after {
            display: none;
        }

        .nav-badge {
            position: absolute;
            top: -0.65rem;
            right: -0.8rem;
            transform: translateX(50%);
            font-size: 0.65rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            padding: 0.15rem 0.4rem;
            border-radius: 999px;
            background: rgba(96, 165, 250, 0.18);
            border: 1px solid rgba(96, 165, 250, 0.45);
            color: #e0e0e0;
            line-height: 1;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #60a5fa;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .nav-dropdown-arrow {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
        }

        .nav-dropdown-arrow svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            display: block;
        }

        .nav-dropdown:hover .nav-dropdown-arrow {
            transform: rotate(180deg);
            
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 1rem);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.472);
            backdrop-filter: blur(100px);
            border: 2px solid #3a3a3a;
            border-radius: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            z-index: 100;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.2s ease;
            border-radius: 6px;
            margin: 0.25rem;
        }

        .nav-dropdown-menu a:hover {
            background: #3a3a3a;
            color: #60a5fa;
        }

        .nav-dropdown-menu a::after {
            display: none;
        }

        .discord-btn {
            background: linear-gradient(135deg, #5865f2, #7289da);
            padding: 1rem;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 130px;
            height: 37px;
            text-decoration: none;
        }

        .discord-btn img {
            width: 100px;
            height: auto;
        }

        .discord-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
            text-decoration: none;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            cursor: pointer;
            z-index: 1001;
            position: relative;
            padding: 0.5rem;
        }

        .mobile-toggle img {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 1150px) {
            nav {
                padding: 1rem 1.5rem;
            }

            nav.scrolled {
                padding: 0.75rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(26, 26, 26, 0.711);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                transition: right 0.4s ease;
                backdrop-filter: blur(10px);
                max-width: 200px;
                font-size: 1em;
                font-weight: bold;
                z-index: 2000;
            }

            .nav-links.active {
                right: 0;
            }
            .nav-dropdown {
                width: 100%;
                text-align: center;
            }

            .nav-dropdown-toggle {
                justify-content: center;
            }

            .nav-dropdown-arrow {
                display: none;
            }

            .nav-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: transparent;
                border: none;
                box-shadow: none;
                margin-top: 1rem;
                min-width: auto;
            }

            .nav-dropdown-menu a {
                padding: 0.5rem 2rem;
                margin: 0;
                background: transparent !important;
                font-size: 1em;
            }

            .mobile-toggle {
                display: block;
            }
            .logo {
            height: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
            nav.scrolled .logo {
            height: 25px;
        }
        }

