   <style>
        :root {
            --emerald-900: #064e3b;
            --emerald-800: #065f46;
            --emerald-700: #047857;
            --emerald-600: #059669;
            --emerald-50: #ecfdf5;
            --orange-600: #ea580c;
            --orange-500: #f97316;
            --orange-400: #fb923c;
        }

        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body { 
            font-family: 'Outfit', sans-serif;
        }

        .font-display {
            font-family: 'Poppins', sans-serif;
        }

        /* Glassmorphism Navigation */
        .glass-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(6, 78, 59, 0.08);
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.04),
                0 0 0 1px rgba(6, 78, 59, 0.03);
            max-width: 100vw;
            overflow-x: hidden;
        }
.glass-nav .container {
            max-width: 100%;
            overflow-x: hidden;
        }
        /* Enhanced Logo Animation */
        .logo-container {
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo-container::before {
            content: '';
            position: absolute;
            inset: -8px;
            background: linear-gradient(135deg, var(--emerald-600), var(--orange-500));
            border-radius: 20px;
            opacity: 0;
            filter: blur(16px);
            transition: opacity 0.4s;
            z-index: -1;
        }

        .logo-container:hover::before {
            opacity: 0.15;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo-img {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: drop-shadow(0 2px 8px rgba(6, 78, 59, 0.1));
        }

        .logo-container:hover .logo-img {
            transform: scale(1.05) rotate(-2deg);
            filter: drop-shadow(0 8px 16px rgba(6, 78, 59, 0.2));
        }

        /* Premium Navigation Links */
        .nav-link {
            position: relative;
            font-weight: 700;
            letter-spacing: -0.02em;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: #374151;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--emerald-600), var(--emerald-700));
            border-radius: 3px;
            transform: translateX(-50%);
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--emerald-700);
            transform: translateY(-1px);
        }

        .nav-link.active {
            color: var(--emerald-700);
        }

        /* Mega Dropdown */
        .dropdown-menu {
            visibility: hidden;
            opacity: 0;
            transform: translateY(12px) scale(0.96);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-origin: top;
        }

        .dropdown:hover .dropdown-menu {
            visibility: visible;
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .mega-dropdown {
            background: white;
            border-radius: 28px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(6, 78, 59, 0.06);
            border: 1px solid rgba(6, 78, 59, 0.04);
            overflow: hidden;
        }

        .mega-dropdown::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(236, 253, 245, 0.4), rgba(255, 247, 237, 0.4));
            pointer-events: none;
        }

        /* Module Cards in Dropdown */
        .module-card {
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
        }

        .module-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.5));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .module-card:hover::before {
            opacity: 1;
        }

        .module-card:hover {
            transform: translateX(6px) translateY(-2px);
        }

        .module-icon {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .module-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: inherit;
            border-radius: inherit;
            filter: blur(12px);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }

        .module-card:hover .module-icon {
            transform: rotate(-8deg) scale(1.1);
        }

        .module-card:hover .module-icon::after {
            opacity: 0.5;
        }

        /* Daily Arena Live Badge */
        .arena-live {
            position: relative;
            animation: arenaGlow 2s ease-in-out infinite;
        }

        @keyframes arenaGlow {
            0%, 100% {
                box-shadow: 0 0 0 rgba(234, 88, 12, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
            }
        }

        .pulse-dot {
            animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulseDot {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        /* Google Sign In Button */
        .google-btn {
    background: linear-gradient(
        135deg,
        #34d399 0%,   /* light green */
        #059669 55%,  /* emerald */
        #065f46 100%  /* dark green */
    );
            box-shadow: 
                0 8px 24px rgba(6, 78, 59, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .google-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .google-btn:hover::before {
            opacity: 1;
        }

        .google-btn:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 32px rgba(6, 78, 59, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .google-btn:active {
            transform: translateY(0);
        }

        /* Mobile Drawer */
        #mobile-drawer {
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
        }

        .drawer-open {
            transform: translateX(0) !important;
        }

        #drawer-overlay {
            transition: opacity 0.3s ease;
        }

        /* Hub Card */
        .hub-card {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border: 2px solid #fbbf24;
            box-shadow: 
                0 8px 24px rgba(251, 191, 36, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .hub-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ea580c, #f59e0b, #ea580c);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        .hub-card:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 12px 32px rgba(251, 191, 36, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.6);
        }

        /* Telegram Button */
        .telegram-btn {
            background: linear-gradient(135deg, #2AABEE, #229ED9);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 12px rgba(42, 171, 238, 0.3);
        }

        .telegram-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(42, 171, 238, 0.4);
        }

        /* Section Labels */
        .section-label {
            position: relative;
            padding-left: 1rem;
        }

        .section-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: currentColor;
            border-radius: 2px;
        }
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.logo-container {
    min-width: 0;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .logo-img {
        height: 36px !important;
    }
    .logo-container .font-display {
        font-size: 16px !important;
    }
}
        /* Responsive Animations */
        @media (max-width: 768px) {
            .logo-container:hover {
                transform: none;
            }

            .nav-link:hover {
                transform: none;
            }
        }

        /* AFO 2026 Badge */
        .afo-badge {
            background: linear-gradient(135deg, #fff7ed, #ffedd5);
            border: 2px solid #fed7aa;
            position: relative;
            overflow: hidden;
        }

        .afo-badge::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(251, 146, 60, 0.1), transparent);
            animation: shine 3s linear infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Improved Mobile Menu Items */
        .mobile-menu-item {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu-item:hover {
            transform: translateX(6px);
        }

        /* Mobile Quick Actions */
        .quick-action-btn {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .quick-action-btn:active {
            transform: scale(0.95);
        }

        /* WhatsApp Floater Styles */
        .wa-button {
            animation: waButtonPulse 2s ease-in-out infinite;
        }

        @keyframes waButtonPulse {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
            }
            50% {
                box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
            }
        }

        .wa-greeting.show {
            display: block !important;
            transform: translateY(0);
            opacity: 1;
        }

        .wa-tooltip::before {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid #111827;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        /* Mobile optimization for WhatsApp */
        @media (max-width: 640px) {
            #whatsapp-floater {
                bottom: 1rem;
                right: 1rem;
            }

            .wa-button {
                width: 3.5rem;
                height: 3.5rem;
            }

            .wa-button i {
                font-size: 1.5rem;
            }

            #wa-greeting {
                max-width: calc(100vw - 6rem);
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .wa-button {
                animation: none;
            }
            
            .animate-ping {
                animation: none;
            }
        }
    </style>
