        :root {
            --primary: #FF5887;
            --primary-dark: #e8456f;
            --secondary: #1CA5FC;
            --bg-dark: #0f0f1a;
            --bg-card: #1a1a2e;
            --bg-lighter: #252540;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.75);
            --text-muted: rgba(255, 255, 255, 0.5);
            --gradient-pink: linear-gradient(135deg, #FF5887 0%, #FF8BA7 100%);
            --gradient-blue: linear-gradient(135deg, #1CA5FC 0%, #00D4FF 100%);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 12px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 15, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: white;
        }

        .cta-nav {
            padding: 10px 24px;
            background: var(--gradient-pink);
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 88, 135, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 100px 60px 60px;
            gap: 60px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1030 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 88, 135, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(255, 88, 135, 0.15);
            border: 1px solid rgba(255, 88, 135, 0.3);
            border-radius: 20px;
            font-size: 13px;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 52px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--gradient-pink);
            border: none;
            border-radius: 30px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 88, 135, 0.4);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .trust-badge .stars {
            color: #ffc107;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat {
            text-align: left;
        }

        .stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--secondary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Hero Image Grid */
        .hero-images {
            position: relative;
            height: 550px;
        }

        .hero-img {
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease;
        }

        .hero-img:hover {
            transform: scale(1.03);
            z-index: 10;
        }

        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, opacity 0.3s ease;
            /* Added opacity transition */
        }

        .hero-img-1 {
            width: 280px;
            height: 340px;
            top: 0;
            left: 0;
            z-index: 3;
        }

        .hero-img-2 {
            width: 240px;
            height: 300px;
            top: 40px;
            right: 20px;
            z-index: 2;
        }

        .hero-img-3 {
            width: 200px;
            height: 250px;
            bottom: 20px;
            left: 60px;
            z-index: 1;
        }

        .online-indicator {
            position: absolute;
            bottom: 16px;
            left: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 12px;
            color: white;
        }

        .online-indicator .dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
        }

        /* Users Online Section */
        .users-section {
            padding: 80px 60px;
            background: var(--bg-card);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 18px;
        }

        .users-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .user-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .user-card:hover {
            transform: translateY(-8px);
        }

        .user-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .user-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 12px 12px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        }

        .user-card-name {
            font-weight: 600;
            font-size: 14px;
        }

        .user-card-status {
            font-size: 12px;
            color: #00ff88;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .user-card-status::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #00ff88;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        /* Busy Status Styles */
        .user-card-status.status-busy {
            color: #ff4444;
        }

        .user-card-status.status-busy::before {
            background: #ff4444;
            box-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
        }

        .user-card.busy {
            /* Remove grayscale/opacity - make them look ACTIVE */
            opacity: 1;
            cursor: not-allowed;
            /* Red Ring Effect */
            box-shadow: inset 0 0 0 4px #ff4444;
        }

        .user-card.busy img {
            /* Slight zoom to show activity */
            transform: scale(1.05);
        }

        .user-card.busy:hover {
            transform: none;
        }

        /* Video Chat Section */
        .videochat-section {
            padding: 80px 60px;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1030 100%);
        }

        .videochat-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-card);
            border-radius: 24px;
            padding: 0;
            box-shadow: 0 30px 80px rgba(255, 88, 135, 0.15);
            position: relative;
            overflow: hidden;
        }

        .videochat-container:fullscreen {
            max-width: 100%;
            border-radius: 0;
        }

        .videochat-container:fullscreen .chatdancer-frame {
            height: calc(100vh - 60px) !important;
            min-height: calc(100vh - 60px);
            border-radius: 0;
        }

        /* ChatDancer Controls Bar */
        .chatdancer-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: linear-gradient(135deg, rgba(255, 88, 135, 0.1) 0%, rgba(28, 165, 252, 0.1) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .fullscreen-btn {
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            backdrop-filter: blur(10px);
        }

        .fullscreen-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.02);
        }

        .fullscreen-btn svg {
            width: 16px;
            height: 16px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        /* Gender Toggle Buttons */
        .gender-toggle {
            display: flex;
            gap: 8px;
        }

        .gender-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .gender-btn svg {
            width: 18px;
            height: 18px;
        }

        .gender-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .gender-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .gender-btn.active svg {
            stroke: white;
        }

        /* Chat Frame */
        .chatdancer-frame {
            width: 100%;
            min-height: 580px;
            height: 580px;
            background: #000;
            position: relative;
            overflow: hidden;
        }

        .chatdancer-frame iframe,
        #coomeet_container iframe {
            width: 100%;
            height: 100%;
            min-height: 580px;
            border: none;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
        }

        #coomeet_container {
            width: 100%;
            height: 100%;
            min-height: 580px;
            position: relative;
        }

        /* Features Section */
        .features {
            padding: 100px 60px;
            background: var(--bg-card);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--bg-lighter);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--gradient-pink);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .feature-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        /* Video Loader */
        .video-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }

        .video-loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 88, 135, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin-bottom: 20px;
        }

        .loader-text {
            color: var(--text-secondary);
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            animation: pulse 1.5s infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 60px;
            background: var(--bg-dark);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
        }

        .testimonial-location {
            font-size: 13px;
            color: var(--text-muted);
        }

        .testimonial-stars {
            color: #ffc107;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, var(--primary) 0%, #FF8BA7 100%);
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
        }

        .btn-white {
            padding: 16px 40px;
            background: white;
            border: none;
            border-radius: 30px;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            padding: 60px;
            background: #0a0a12;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 16px;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
        }

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

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 13px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            background: var(--bg-lighter);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-links a:hover {
            background: var(--primary);
        }

        .social-links svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            /* Ensure it's on top */
            position: relative;
            /* Needed for z-index */
            pointer-events: auto;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
            /* Smooth hamburger animation */
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 100px 30px 60px;
            }

            .hero-content {
                order: 1;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-subtitle {
                margin: 0 auto 32px;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-images {
                display: none;
            }

            .users-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
                /* Remove backdrop-filter to prevent containing block issue for fixed children */
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                background: #0f0f1a;
                /* Solid background instead */
            }

            .nav-links,
            .cta-nav {
                display: none;
            }

            /* Mobile Menu Active State */
            /* Mobile Menu Active State */
            .nav-links.active {
                display: flex !important;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #0f0f1a;
                z-index: 999;
                /* Just below the toggle button (1001) */
                justify-content: center;
                align-items: center;
                gap: 30px;
                padding: 20px;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
            }

            .nav-links.active li {
                width: 100%;
                text-align: center;
            }

            .nav-links.active a {
                font-size: 24px;
                display: block;
                padding: 10px;
            }


            .mobile-menu-btn {
                display: block;
            }

            .users-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .videochat-section,
            .features,
            .testimonials,
            .cta-section {
                padding: 60px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }

        /* Server Tabs Styling */
        .server-tabs {
            display: flex;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 10px 0;
            gap: 5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .server-tab {
            background: rgba(255, 255, 255, 0.05);
            border: none;
            padding: 12px 24px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border-radius: 8px 8px 0 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .server-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .server-tab.active {
            background: var(--bg-card);
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
        }

        /* --- REALISTIC SYSTEM SIMULATOR --- */
        .simulator-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 580px;
            background: #000;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* 1. The Blurred Background (Crucial for realism) */
        .simulator-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(15px);
            transition: filter 4s ease;
            transform: scale(1.1);
            z-index: 1;
        }

        /* 2. The "System Card" */
        .simulator-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            background: rgba(20, 20, 30, 0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 10;
            text-align: center;
        }

        /* 3. The "Loader" (Not a spinny ring, but a progress bar) */
        .connection-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
        }

        .spinner-mini {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .connection-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        /* 4. The Checklist (Looks like a technical diagnostic) */
        .system-steps {
            list-style: none;
            text-align: left;
            margin-bottom: 20px;
            padding: 0;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .step-item.active {
            color: #fff;
            font-weight: 500;
        }

        .step-item.done {
            color: #00ff88;
        }

        .step-item svg {
            width: 14px;
            height: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .step-item.done svg {
            opacity: 1;
        }

        /* 5. The "Answer Call" Button (Looks like iOS) */
        .action-area {
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ios-answer-btn {
            display: none;
            width: 100%;
            padding: 14px;
            background: #34c759;
            color: white;
            font-weight: 600;
            font-size: 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
        }

        .ios-answer-btn:hover {
            transform: scale(1.02);
        }

        .ios-answer-btn:active {
            transform: scale(0.98);
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
        }

        .status-dot.orange {
            background: #ff9900;
            box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
        }

        /* --- CONVERSION FUNNEL (MODAL) --- */
        .funnel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(15px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .funnel-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .funnel-card {
            background: rgba(30, 30, 45, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            width: 90%;
            max-width: 480px;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .funnel-overlay.active .funnel-card {
            transform: scale(1);
        }

        .funnel-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .funnel-step.active {
            display: block;
        }

        .funnel-title {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .funnel-text {
            color: var(--text-secondary);
            font-size: 16px;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .funnel-btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .funnel-btn {
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
        }

        .funnel-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .funnel-btn.primary {
            background: var(--gradient-pink);
            border: none;
            box-shadow: 0 10px 20px rgba(255, 88, 135, 0.2);
        }

        .funnel-btn.primary:hover {
            box-shadow: 0 15px 30px rgba(255, 88, 135, 0.3);
        }

        /* Loading Bar */
        .progress-container {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: var(--gradient-pink);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .analyzing-text {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            min-height: 20px;
        }

        /* --- LIVE NOTIFICATIONS (FOMO) --- */
        .live-notification {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: rgba(20, 20, 30, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(-150%);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1000;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .live-notification.active {
            transform: translateX(0);
        }

        .notif-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }

        .notif-content {
            display: flex;
            flex-direction: column;
        }

        .notif-title {
            font-size: 14px;
            font-weight: 700;
            color: white;
        }

        .notif-text {
            font-size: 12px;
            color: var(--text-secondary);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- PROGRESS DOTS --- */
        .funnel-progress {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: var(--primary);
            box-shadow: 0 0 10px rgba(255, 88, 135, 0.5);
        }

        .progress-dot.completed {
            background: #00ff88;
        }

        /* --- PULSING CTA --- */
        @keyframes ctaPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 10px 20px rgba(255, 88, 135, 0.2);
            }

            50% {
                transform: scale(1.02);
                box-shadow: 0 15px 30px rgba(255, 88, 135, 0.4);
            }
        }

        .funnel-btn.primary.pulse {
            animation: ctaPulse 2s ease-in-out infinite;
        }

        /* --- COUNTDOWN TIMER --- */
        .countdown-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 16px 0;
            padding: 12px 20px;
            background: rgba(255, 88, 135, 0.1);
            border: 1px solid rgba(255, 88, 135, 0.2);
            border-radius: 12px;
        }

        .countdown-timer {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
        }

        .countdown-text {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* --- MICRO-COMMITMENT --- */
        .commitment-checkbox {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            cursor: pointer;
            user-select: none;
        }

        .commitment-checkbox input {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .commitment-checkbox label {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* --- EXIT INTENT MODAL --- */
        .exit-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .exit-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .exit-card {
            background: linear-gradient(135deg, rgba(30, 30, 45, 0.95) 0%, rgba(40, 20, 40, 0.95) 100%);
            border: 1px solid rgba(255, 88, 135, 0.3);
            border-radius: 24px;
            padding: 40px;
            max-width: 420px;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .exit-overlay.active .exit-card {
            transform: scale(1);
        }

        .exit-users {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .exit-user-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid var(--bg-dark);
            margin-left: -15px;
            object-fit: cover;
        }

        .exit-user-img:first-child {
            margin-left: 0;
        }

        .exit-title {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }

        .exit-text {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 15px;
        }

        .exit-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 24px;
            cursor: pointer;
        }

        /* --- IFRAME GLOW EFFECT --- */
        @keyframes iframeGlow {

            0%,
            100% {
                box-shadow: 0 0 0 rgba(255, 88, 135, 0);
            }

            50% {
                box-shadow: 0 0 40px rgba(255, 88, 135, 0.3);
            }
        }

        .videochat-container.highlight {
            animation: iframeGlow 1.5s ease-out;
        }

        /* --- ENHANCED NOTIFICATIONS --- */
        .notif-type-badge {
            font-size: 10px;
            padding: 2px 6px;
            background: var(--primary);
            border-radius: 4px;
            margin-left: 8px;
        }

        .live-notification.urgent {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 88, 135, 0.3);
        }

        /* --- TRUST BADGES --- */
        .trust-strip {
            display: flex;
            justify-content: center;
            gap: 24px;
            padding: 12px;
            background: rgba(0, 255, 136, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 12px;
            color: var(--text-muted);
        }

        .trust-strip span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Hide hero after funnel for focus */
        body.funnel-complete .hero {
            display: none;
        }

        body.funnel-complete .users-section {
            display: none;
        }

        /* Live Now Tab Styles */
        .server-tab.live-now-tab {
            position: relative;
            overflow: visible;
        }

        .live-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #ff0000;
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse-red 1.5s infinite;
            box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
        }

        @keyframes pulse-red {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
            }
        }

        /* Simulation Overlay Styles */
        .simulation-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            font-family: 'Inter', sans-serif;
            pointer-events: none;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .simulation-text {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .simulation-end-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            z-index: 20;
            backdrop-filter: blur(5px);
        }

        .simulation-end-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .simulation-end-subtitle {
            font-size: 16px;
            color: #ccc;
        }

        /* Custom Context Menu */
        .custom-context-menu {
            display: none;
            position: absolute;
            z-index: 1000;
            background: rgba(15, 15, 26, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 200px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            font-family: 'Inter', sans-serif;
        }

        .context-menu-item {
            padding: 8px 16px;
            color: #fff;
            font-size: 13px;
            cursor: default;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .context-menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .context-menu-item.title {
            font-weight: 600;
            color: var(--primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 8px;
            margin-bottom: 4px;
        }

        .context-menu-item.info {
            color: #888;
            font-size: 11px;
        }

        .context-menu-separator {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 4px 0;
        }

        /* Video Transition Loader */
        .video-transition-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 15;
            color: white;
            font-family: 'Inter', sans-serif;
        }

        .transition-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 88, 135, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin-bottom: 20px;
        }

        .transition-text {
            font-size: 14px;
            color: #ccc;
            letter-spacing: 0.5px;
            animation: pulse-text 1.5s infinite;
        }

        @keyframes pulse-text {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        /* Notification Capture Toast */
        .notification-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: rgba(15, 15, 26, 0.95);
            border: 1px solid rgba(255, 88, 135, 0.3);
            border-radius: 12px;
            padding: 16px;
            width: 90%;
            max-width: 380px;
            z-index: 10000;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .notification-toast.active {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .toast-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FF5887, #fd3d73);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .toast-content h4 {
            color: #fff;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .toast-content p {
            color: #ccc;
            font-size: 12px;
            line-height: 1.3;
        }

        .toast-actions {
            margin-left: auto;
        }

        .toast-btn {
            background: rgba(255, 88, 135, 0.1);
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 6px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .toast-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* --- REPLICA UI STYLES --- */
        .simulation-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #000;
        }

        /* 1. Blurred Background Video */
        .sim-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(25px);
            opacity: 0.6;
            transform: scale(1.1);
            /* Prevent blurred edges */
        }

        /* 2. Main Foreground Video */
        .sim-main-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            z-index: 1;
        }

        /* 3. UI Overlay Layer */
        .sim-ui-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Header top, Footer bottom */
            pointer-events: none;
            /* Let clicks pass through to video */
        }

        /* Header (Top) */
        .sim-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            pointer-events: auto;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
        }

        .sim-user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sim-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            object-fit: cover;
        }

        .sim-user-details {
            display: flex;
            flex-direction: column;
        }

        .sim-username {
            font-weight: 700;
            font-size: 15px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .sim-timestamp {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
        }

        .sim-complaint-btn {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: background 0.2s;
        }

        .sim-complaint-btn:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        /* Footer (Bottom) */
        .sim-footer {
            padding: 20px 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            pointer-events: auto;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        }

        .sim-control-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
            color: white;
            padding: 0;
        }

        .sim-control-btn:active {
            transform: scale(0.9);
        }

        /* Specific Button Styles */
        .btn-back {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        .btn-mute {
            background: rgba(0, 0, 0, 0.6);
        }

        .center-controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-large {
            width: 56px;
            height: 56px;
        }

        .btn-reject {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-reject svg {
            fill: #ff4757;
            width: 24px;
            height: 24px;
        }

        .btn-add {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid #ff9f43;
            position: relative;
            overflow: hidden;
        }

        .btn-add svg {
            fill: #1CA5FC;
            width: 28px;
            height: 28px;
        }

        .btn-heart {
            background: #000;
            border: 1px solid rgba(0, 255, 0, 0.3);
        }

        .btn-heart svg {
            fill: #2ecc71;
            width: 24px;
            height: 24px;
        }

        /* Mobile adjustment */
        @media (max-width: 480px) {
            .sim-footer {
                padding: 15px 20px 30px;
            }

            .center-controls {
                gap: 15px;
            }

            .btn-large {
                width: 48px;
                height: 48px;
            }
        }

        /* --- UPSELL MODAL STYLES --- */
        .upsell-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .upsell-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .upsell-card {
            background: white;
            border-radius: 24px;
            padding: 40px 30px;
            width: 90%;
            max-width: 440px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: #1a1a2e;
            /* Dark text for white card */
        }

        .upsell-overlay.active .upsell-card {
            transform: scale(1);
        }

        .upsell-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            position: relative;
        }

        /* Icon Construction (Person + Alert) */
        .upsell-icon svg {
            width: 100%;
            height: 100%;
            stroke: #1a1a2e;
            fill: none;
            stroke-width: 1.5;
        }

        .upsell-alert-badge {
            position: absolute;
            bottom: 0px;
            right: 0px;
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .upsell-alert-badge svg {
            width: 32px;
            height: 32px;
            stroke: #0066FF;
            fill: none;
            stroke-width: 2;
        }

        .upsell-title {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a1a2e;
            line-height: 1.3;
        }

        .upsell-title span {
            color: #2ecc71;
            /* Green for "free!" */
        }

        .upsell-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 32px;
        }

        .upsell-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .btn-upsell-close {
            padding: 14px 32px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            color: #0066FF;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            flex: 1;
        }

        .btn-upsell-close:hover {
            background: #f5f5f5;
        }

        .btn-upsell-register {
            padding: 14px 32px;
            background: #0066FF;
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            flex: 1;
        }

        .btn-upsell-register:hover {
            background: #0052cc;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }

        /* --- CUSTOM CONTEXT MENU (Pink Dark Tech) --- */
        .custom-context-menu {
            background: rgba(15, 15, 26, 0.95);
            border: 1px solid #FF5887;
            /* Hot Pink Border */
            border-radius: 8px;
            padding: 0;
            min-width: 240px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 88, 135, 0.2);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.1s ease;
            backdrop-filter: blur(10px);
            font-family: 'Consolas', 'Monaco', monospace;
            /* Tech font */
        }

        .menu-header {
            background: linear-gradient(90deg, #FF5887 0%, #FF8BA7 100%);
            padding: 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .menu-title {
            font-size: 12px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
        }

        .menu-badge {
            font-size: 10px;
            background: rgba(0, 0, 0, 0.3);
            padding: 2px 6px;
            border-radius: 4px;
            color: white;
            font-weight: 600;
        }

        .menu-item {
            padding: 8px 16px;
            font-size: 12px;
            color: #b0b0b0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .menu-item.clickable {
            cursor: pointer;
            color: white;
            font-weight: 600;
            transition: background 0.2s;
        }

        .menu-item.clickable:hover {
            background: rgba(255, 88, 135, 0.1);
            color: #FF5887;
        }

        .tech-label {
            color: #666;
            font-size: 11px;
        }

        .tech-value {
            color: #1CA5FC;
            /* Blue for values */
            font-weight: 500;
        }

        .tech-value.good {
            color: #2ecc71;
        }

        .menu-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 4px 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }