
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        :root {
            --peach: #FFD8C9;
            --peach-light: #FFF5F1;
            --peach-dark: #FFBAA5;
            --purple: #7C3AED;
            --purple-light: #8B5CF6;
            --purple-dark: #5B21B6;
            --purple-transparent: rgba(124, 58, 237, 0.1);
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --white: #FFFFFF;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
            --radius: 20px;
            --radius-sm: 14px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        body {
            background: linear-gradient(135deg, var(--peach-light) 0%, #FFECE6 100%);
            min-height: 100vh;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Fixed Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            backdrop-filter: blur(10px);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 70px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--purple), var(--purple-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .header-btn {
            background: var(--purple-transparent);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            color: var(--purple);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .header-btn:hover {
            background: var(--purple);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
        }
        
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #EF4444;
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Compact Setup Page */
        .setup-page {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 70px);
            padding: 30px 20px;
            margin-top: 70px;
            max-width: 450px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .setup-container {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px 25px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .setup-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--peach-dark), var(--purple));
        }
        
        .setup-title {
            font-size: 1.8rem;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 700;
            text-align: center;
        }
        
        .setup-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Compact Form Elements */
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .input-label i {
            color: var(--purple);
            font-size: 0.9rem;
        }
        
        .input-field {
            width: 100%;
            padding: 14px 16px;
            background: var(--peach-light);
            border: 2px solid transparent;
            border-radius: var(--radius-sm);
            color: var(--text-dark);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .input-field:focus {
            outline: none;
            border-color: var(--purple);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
        }
        
        /* Compact Gender Selection */
        .gender-section {
            margin-bottom: 20px;
        }
        
        .gender-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .gender-card {
            background: var(--peach-light);
            border: 2px solid transparent;
            border-radius: var(--radius-sm);
            padding: 18px 8px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        
        .gender-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
        }
        
        .gender-card.selected {
            background: var(--white);
            border-color: var(--purple);
            box-shadow: 0 8px 16px rgba(124, 58, 237, 0.12);
        }
        
        .gender-icon {
            font-size: 2.2rem;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .gender-card.selected .gender-icon {
            background: var(--purple-transparent);
        }
        
        .male-icon {
            color: var(--purple);
        }
        
        .female-icon {
            color: #EC4899;
        }
        
        .both-icon {
            color: #8B5CF6;
        }
        
        .gender-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
        }
        
        /* Compact 18+ Checkbox */
        .age-confirm-container {
            background: linear-gradient(135deg, rgba(255, 216, 201, 0.5), rgba(255, 186, 165, 0.5));
            border-radius: var(--radius-sm);
            padding: 18px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 186, 165, 0.5);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
        }
        
        .checkbox-container input {
            width: 20px;
            height: 20px;
            accent-color: var(--purple);
            cursor: pointer;
        }
        
        .age-warning {
            color: #DC2626;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        
        /* Start Button */
        .start-btn-container {
            margin-top: 20px;
        }
        
        .btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--purple), var(--purple-light));
            color: white;
            margin-top: 5px;
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, var(--purple-dark), var(--purple));
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(124, 58, 237, 0.4);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .online-count {
            text-align: center;
            margin-top: 20px;
            color: var(--text-light);
            font-style: italic;
            font-size: 0.9rem;
        }
        
        .online-count i {
            color: #10B981;
            margin-right: 6px;
        }
        
        /* Call Page */
        .call-page {
            display: flex;
            flex-direction: column;
            height: 100vh;
            display: none;
            background: #0F172A;
        }
        
        .call-page.active {
            display: flex;
        }
        
        /* Floating Call Window */
        .floating-call-window {
            position: fixed;
            top: 90px; /* 20px margin from header (70px + 20px) */
            right: 30px;
            width: 320px;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            z-index: 999;
            display: none;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: top right;
        }
        
        .floating-call-window.active {
            display: block;
            animation: floatIn 0.4s ease-out;
        }
        
        .floating-call-window.minimized {
            width: 200px;
            height: 50px;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .floating-call-window.minimized:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        .floating-call-window.minimized .floating-body,
        .floating-call-window.minimized .floating-controls {
            display: none;
        }
        
        .floating-call-window.minimized .floating-header {
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: none;
        }
        
        .floating-call-window.minimized .floating-minimize-btn {
            transform: rotate(180deg);
        }
        
        @keyframes floatIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .floating-header {
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: move;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            user-select: none;
        }
        
        .floating-header h3 {
            color: white;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .floating-header i {
            color: var(--peach);
        }
        
        .floating-minimize-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
            margin-left: 10px;
        }
        
        .floating-minimize-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .floating-body {
            height: 160px;
            background: #1E293B;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .floating-video-placeholder {
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.15);
        }
        
        .floating-user-info {
            position: absolute;
            bottom: 12px;
            left: 15px;
            color: white;
        }
        
        .floating-user-info h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            font-weight: 600;
        }
        
        .floating-user-info p {
            font-size: 0.8rem;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .floating-timer {
            position: absolute;
            bottom: 12px;
            right: 15px;
            color: #10B981;
            font-weight: bold;
            font-family: monospace;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.4);
            padding: 4px 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .floating-controls {
            padding: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .floating-control-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .floating-control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .floating-control-btn.end {
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
        }
        
        .floating-control-btn.end:hover {
            background: rgba(239, 68, 68, 0.3);
        }
        
        /* Full Call View */
        .full-call-view {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding-top: 70px;
        }
        
        .call-header {
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 23, 42, 0.8);
        }
        
        .call-user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .call-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
        }
        
        .call-user-details h3 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 6px;
        }
        
        .call-user-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #94A3B8;
            font-size: 0.9rem;
        }
        
        .call-status {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .call-timer {
            font-size: 1.5rem;
            font-weight: bold;
            color: #10B981;
            font-family: monospace;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .call-minimize-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .call-minimize-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .status-badge {
            background: linear-gradient(to right, #10B981, #059669);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .video-container {
            flex: 1;
            background: #0F172A;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-placeholder {
            text-align: center;
            padding: 25px;
            max-width: 500px;
        }
        
        .video-placeholder i {
            font-size: 6rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--purple), var(--purple-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .video-placeholder h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: white;
        }
        
        .video-placeholder p {
            color: #94A3B8;
            font-size: 1rem;
            margin-bottom: 25px;
        }
        
        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--purple);
            animation: pulse 1.5s infinite ease-in-out;
        }
        
        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .call-controls {
            padding: 20px 25px;
            background: rgba(15, 23, 42, 0.9);
            display: flex;
            justify-content: center;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .control-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            font-size: 1.6rem;
            color: white;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .control-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
        }
        
        .control-btn::after {
            content: attr(title);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .control-btn:hover::after {
            opacity: 1;
        }
        
        .mute-btn {
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
        }
        
        .cut-btn {
            background: linear-gradient(135deg, #EF4444, #DC2626);
        }
        
        .skip-btn {
            background: linear-gradient(135deg, #10B981, #059669);
        }
        
        .speaker-btn {
            background: linear-gradient(135deg, #F59E0B, #D97706);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 20px;
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: auto;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .setup-page {
                padding: 25px 15px;
                max-width: 400px;
            }
            
            .setup-container {
                padding: 25px 20px;
            }
            
            .setup-title {
                font-size: 1.6rem;
            }
            
            .gender-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .gender-card {
                flex-direction: row;
                padding: 15px;
                text-align: left;
                justify-content: flex-start;
                gap: 15px;
            }
            
            .floating-call-window {
                width: 280px;
                right: 20px;
            }
            
            .floating-call-window.minimized {
                width: 180px;
            }
            
            .call-controls {
                padding: 15px;
                gap: 15px;
            }
            
            .control-btn {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 480px) {
            .main-header {
                padding: 12px 20px;
                height: 65px;
            }
            
            .logo-text h1 {
                font-size: 1.3rem;
            }
            
            .setup-page {
                margin-top: 65px;
            }
            
            .floating-call-window {
                top: 85px;
                width: 260px;
                right: 10px;
            }
            
            .floating-call-window.minimized {
                width: 160px;
            }
            
            .call-header {
                padding: 12px 20px;
            }
            
            .call-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .call-timer {
                font-size: 1.3rem;
            }
        }