        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0b0f;
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
        }
        
        /* ============================================
           VARIABLES & THEME
           ============================================ */
        :root {
            --bg-primary: #0a0b0f;
            --bg-secondary: #12141a;
            --bg-card: #1a1d26;
            --bg-card-hover: #22262f;
            
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            
            --accent-purple: #a855f7;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-pink: #ec4899;
            --accent-green: #10b981;
            
            --glow-purple: rgba(168, 85, 247, 0.4);
            --glow-blue: rgba(59, 130, 246, 0.4);
            --glow-cyan: rgba(6, 182, 212, 0.3);
            
            --gradient-main: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
            --gradient-card: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
            
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(168, 85, 247, 0.3);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
            
            --shadow-glow: 0 0 30px var(--glow-purple);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            
            --container-max: 1280px;
            --header-height: 72px;
        }
        
        /* ============================================
           LAYOUT
           ============================================ */
        .cv-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ============================================
           HEADER
           ============================================ */
        .cv-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            background: rgba(10, 11, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .cv-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .cv-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-primary);
        }
        
        .cv-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-main);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
        }
        
        .cv-logo-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        .cv-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .cv-nav-link {
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        
        .cv-nav-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .cv-nav-link.cv-btn-primary {
            background: var(--gradient-main);
            color: white;
            border: none;
        }
        
        .cv-nav-link.cv-btn-primary:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        
        .cv-nav-link.cv-btn-outline {
            border-color: var(--border-glow);
            color: var(--accent-purple);
        }
        
        .cv-nav-link.cv-btn-outline:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: var(--accent-purple);
        }
        
        /* ============================================
           HERO SECTION
           ============================================ */
        .cv-hero {
            padding-top: calc(var(--header-height) + 80px);
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .cv-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150%;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 70% 10%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 50% 30% at 30% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cv-hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .cv-hero-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .cv-hero-text h1 span {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cv-hero-text p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 500px;
        }
        
        /* Join Form */
        .cv-join-form {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .cv-input-wrapper {
            flex: 1;
            position: relative;
        }
        
        .cv-input {
            width: 100%;
            padding: 16px 20px;
            padding-left: 50px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            font-size: 1rem;
            color: var(--text-primary);
            transition: all 0.2s ease;
        }
        
        .cv-input::placeholder {
            color: var(--text-muted);
        }
        
        .cv-input:focus {
            outline: none;
            border-color: var(--accent-purple);
            box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
        }
        
        .cv-input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }
        
        .cv-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: var(--radius-lg);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .cv-btn-primary {
            background: var(--gradient-main);
            color: white;
        }
        
        .cv-btn-primary:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        
        .cv-btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }
        
        .cv-btn-secondary:hover {
            border-color: var(--accent-purple);
            background: rgba(168, 85, 247, 0.1);
        }
        
        .cv-hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .cv-hero-link {
            color: var(--accent-cyan);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .cv-hero-link:hover {
            text-decoration: underline;
        }
        
        /* Hero Visual */
        .cv-hero-visual {
            position: relative;
        }
        
        .cv-hero-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .cv-hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
        }
        
        .cv-hero-card-preview {
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .cv-hero-card-preview svg {
            width: 80px;
            height: 80px;
            color: var(--accent-purple);
            opacity: 0.5;
        }
        
        .cv-hero-card-preview::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        }
        
        .cv-hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .cv-badge {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .cv-badge-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-green);
            border-radius: 50%;
        }
        
        /* ============================================
           STATS SECTION
           ============================================ */
        .cv-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding: 40px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            margin: 40px 0;
        }
        
        .cv-stat {
            text-align: center;
        }
        
        .cv-stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
        }
        
        .cv-stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        /* ============================================
           LIVE ROOMS SECTION
           ============================================ */
        .cv-section {
            padding: 60px 0;
        }
        
        .cv-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cv-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .cv-live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: #f87171;
        }
        
        .cv-live-dot {
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            animation: cv-pulse 1.5s infinite;
        }
        
        @keyframes cv-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }
        
        /* Categories */
        .cv-categories {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 4px;
            scrollbar-width: none;
        }
        
        .cv-categories::-webkit-scrollbar {
            display: none;
        }
        
        .cv-category-btn {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .cv-category-btn:hover {
            border-color: var(--accent-purple);
            color: var(--text-primary);
            background: rgba(168, 85, 247, 0.1);
        }
        
        .cv-category-btn.active {
            background: var(--gradient-main);
            border-color: transparent;
            color: white;
        }
        
        /* Room Grid */
        .cv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 1100px) {
            .cv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 700px) {
            .cv-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Room Card */
        .cv-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .cv-card:hover {
            border-color: var(--border-glow);
            transform: translateY(-8px);
            box-shadow: var(--shadow-card), 0 0 40px rgba(168, 85, 247, 0.15);
        }
        
        .cv-card.is-premium {
            border-color: var(--accent-purple);
        }
        
        .cv-card.is-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-main);
            z-index: 10;
        }
        
        .cv-card-thumb {
            position: relative;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #1e1e2e 0%, #12141a 100%);
            overflow: hidden;
        }
        
        .cv-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .cv-card:hover .cv-card-thumb img {
            transform: scale(1.05);
        }
        
        .cv-card-thumb-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
        }
        
        .cv-card-thumb-placeholder svg {
            width: 60px;
            height: 60px;
            color: var(--accent-purple);
            opacity: 0.6;
        }
        
        .cv-card-live {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #ef4444;
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .cv-card-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: cv-pulse 1.5s infinite;
        }
        
        .cv-card-premium {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gradient-main);
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .cv-card-viewers {
            position: absolute;
            bottom: 12px;
            left: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            color: white;
        }
        
        .cv-card-viewers svg {
            width: 14px;
            height: 14px;
        }
        
        .cv-card-category {
            position: absolute;
            bottom: 12px;
            right: 12px;
            padding: 6px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            backdrop-filter: blur(8px);
        }
        
        .cv-card-body {
            padding: 20px;
        }
        
        .cv-card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .cv-card-host {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .cv-card-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-purple);
            background: var(--bg-secondary);
        }
        
        .cv-card-host-info {
            flex: 1;
            min-width: 0;
        }
        
        .cv-card-host-name {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .cv-card-host-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .cv-card-join {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--accent-purple);
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-purple);
            transition: all 0.2s ease;
        }
        
        .cv-card-join:hover {
            background: var(--accent-purple);
            color: white;
        }
        
        .cv-card-lock {
            color: var(--text-muted);
            margin-left: auto;
        }
        
        /* Empty State */
        .cv-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 40px;
            background: var(--bg-card);
            border: 1px dashed var(--border-subtle);
            border-radius: var(--radius-xl);
        }
        
        .cv-empty-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: rgba(168, 85, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cv-empty-icon svg {
            width: 40px;
            height: 40px;
            color: var(--accent-purple);
        }
        
        .cv-empty h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .cv-empty p {
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        
        /* Loading */
        .cv-loading {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            padding: 60px;
        }
        
        .cv-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--border-subtle);
            border-top-color: var(--accent-purple);
            border-radius: 50%;
            animation: cv-spin 1s linear infinite;
        }
        
        @keyframes cv-spin {
            to { transform: rotate(360deg); }
        }
        
        /* Load More */
        .cv-load-more {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 40px auto 0;
            padding: 16px 32px;
            background: transparent;
            border: 2px solid var(--accent-purple);
            border-radius: var(--radius-full);
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-purple);
            transition: all 0.2s ease;
        }
        
        .cv-load-more:hover {
            background: var(--accent-purple);
            color: white;
            box-shadow: var(--shadow-glow);
        }
        
        /* ============================================
           FEATURES SECTION
           ============================================ */
        .cv-features {
            padding: 80px 0;
            border-top: 1px solid var(--border-subtle);
        }
        
        .cv-features-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 32px;
        }
        
        .cv-features-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        
        @media (max-width: 1000px) {
            .cv-features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .cv-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .cv-feature {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px;
            text-align: center;
            transition: all 0.2s ease;
        }
        
        .cv-feature:hover {
            border-color: var(--border-glow);
            transform: translateY(-4px);
        }
        
        .cv-feature-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: rgba(168, 85, 247, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-purple);
        }
        
        .cv-feature-title {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        
        .cv-feature-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        .cv-footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-subtle);
        }
        
        .cv-footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cv-footer-copy {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .cv-footer-copy a {
            color: var(--accent-purple);
        }
        
        .cv-footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        
        .cv-footer-link {
            font-size: 0.9rem;
            color: var(--text-secondary);
            transition: color 0.2s;
        }
        
        .cv-footer-link:hover {
            color: var(--accent-purple);
        }
        
        .cv-footer-social {
            display: flex;
            gap: 16px;
        }
        
        .cv-footer-social a {
            color: var(--text-muted);
            transition: color 0.2s;
        }
        
        .cv-footer-social a:hover {
            color: var(--accent-purple);
        }
        
        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .cv-hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .cv-hero-visual {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .cv-header-inner {
                padding: 0 16px;
            }
            
            .cv-nav {
                display: none;
            }
            
            .cv-hero {
                padding-top: calc(var(--header-height) + 40px);
            }
            
            .cv-hero-text h1 {
                font-size: 2rem;
            }
            
            .cv-join-form {
                flex-direction: column;
            }
            
            .cv-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            
            .cv-stat-value {
                font-size: 1.75rem;
            }
            
            .cv-container {
                padding: 0 16px;
            }
            
            .cv-section-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        /* Mobile menu toggle */
        .cv-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            padding: 8px;
        }
        
        @media (max-width: 768px) {
            .cv-menu-toggle {
                display: block;
            }
        }
   