        /* ==================== CSS VARIABLES ==================== */
        :root {
            --dating-red: #E53935;
            --creator-orange: #FF9800;
            --ai-gold: #FFD700;
            --professional-white: #FFFFFF;
            --fitness-teal: #009688;
            --bg-dark: #0a0a0f;
            --bg-section: #111118;
            --text-white: #FFFFFF;
            --text-gray: #9CA3AF;
            --text-dim: #6B7280;
        }

        /* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            position: relative;
        }

        /* ==================== TOP BAR ==================== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), transparent);
            backdrop-filter: blur(10px);
        }

        .top-bar a, .top-bar button {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-decoration: none;
            color: var(--text-gray);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease;
            height: 32px;
            display: inline-flex;
            align-items: center;
            padding: 0 1rem;
        }

        .top-bar a:hover, .top-bar button:hover {
            color: var(--text-white);
        }

        /* Price Badge with Dropdown */
        .price-badge {
            position: relative;
            padding: 0 1rem !important;
            height: 32px !important;
            background: linear-gradient(135deg, rgba(255,179,0,0.15), rgba(0,188,212,0.15));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 2rem;
            color: var(--text-white) !important;
            font-weight: 600;
            font-size: 0.75rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        .price-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 0.5rem;
            padding: 1.5rem;
            background: var(--bg-section);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0.75rem;
            min-width: 420px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 200;
        }

        .price-badge:hover .price-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .price-dropdown-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-white);
            font-size: 0.85rem;
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .price-feature-icon {
            color: var(--fitness-teal);
            font-weight: bold;
        }

        .price-note {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.7rem;
            color: var(--text-dim);
            text-align: center;
        }

        /* TOS Link with Dropdown - Button Style */
        .tos-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            height: 32px;
        }

        .tos-wrapper a {
            font-family: 'Raleway', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-decoration: none;
            color: var(--text-white);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0 1rem;
            height: 32px;
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 2rem;
        }

        .tos-wrapper a:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
        }

        .tos-dropdown {
            position: absolute;
            top: 100%;
            left: 25%;
            margin-top: 0.5rem;
            padding: 1.25rem;
            background: #000000;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 0.75rem;
            min-width: 320px;
            max-width: 400px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 200;
        }

        .tos-wrapper:hover .tos-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .tos-dropdown-title {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            color: var(--text-white);
            text-align: center;
        }

        .tos-dropdown-subtitle {
            font-size: 0.7rem;
            color: var(--text-dim);
            text-align: center;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .tos-section {
            margin-bottom: 0.5rem;
        }

        .tos-section-title {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 0.25rem;
        }

        .tos-section-text {
            font-size: 0.7rem;
            color: var(--text-gray);
            line-height: 1.4;
        }

        .tos-highlight {
            background: rgba(0, 150, 136, 0.15);
            border-left: 2px solid var(--fitness-teal);
            padding: 0.5rem 0.75rem;
            margin: 0.75rem 0;
            border-radius: 0 0.25rem 0.25rem 0;
        }

        .tos-highlight-text {
            font-size: 0.7rem;
            color: var(--fitness-teal);
            font-weight: 500;
        }

        .tos-click-hint {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.65rem;
            color: var(--text-dim);
            text-align: center;
        }

        /* Sign Up Button - WHITE */
        .signup-btn {
            padding: 0 1rem !important;
            height: 32px !important;
            background: #FFFFFF !important;
            border-radius: 2rem;
            color: var(--bg-dark) !important;
            font-weight: 600 !important;
            font-size: 0.675rem !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .signup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            color: var(--bg-dark) !important;
        }

        /* Login Button - Outline style */
        .login-btn {
            padding: 0 1rem !important;
            height: 32px !important;
            background: transparent !important;
            border: 1px solid rgba(255,255,255,0.3) !important;
            border-radius: 2rem;
            color: var(--text-white) !important;
            font-weight: 500 !important;
            font-size: 0.675rem !important;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: rgba(255,255,255,0.5) !important;
        }

        /* User Menu (when logged in) */
        .user-menu-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .user-menu-btn {
            padding: 0 1rem !important;
            height: 32px !important;
            background: linear-gradient(135deg, var(--fitness-teal), var(--ai-royalblue)) !important;
            border-radius: 2rem;
            color: var(--text-white) !important;
            font-weight: 600 !important;
            font-size: 0.675rem !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .user-menu-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 150, 136, 0.3);
        }

        .user-menu-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            padding: 0.5rem;
            background: var(--bg-section);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0.75rem;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 200;
        }

        .user-menu-wrapper:hover .user-menu-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .user-menu-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-gray);
            text-decoration: none;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .user-menu-item:hover {
            background: rgba(255,255,255,0.05);
            color: var(--text-white);
        }

        .user-menu-item.logout {
            color: var(--dating-red);
        }

        .user-menu-item.logout:hover {
            background: rgba(229, 57, 53, 0.1);
        }

        /* AI Button - Gradient with Dropdown */
        .ai-btn-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            height: 32px;
        }

        .ai-btn {
            padding: 0 1rem !important;
            height: 32px !important;
            background: linear-gradient(135deg, var(--ai-gold), var(--fitness-teal)) !important;
            border-radius: 2rem;
            color: var(--bg-dark) !important;
            font-weight: 600 !important;
            font-size: 0.7rem !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ai-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        .ai-btn-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            padding: 1rem 1.5rem;
            background: #000000;
            border: 1px solid rgba(255,215,0,0.3);
            border-radius: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 200;
        }

        .ai-btn-wrapper:hover .ai-btn-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .ai-btn-dropdown-text {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--ai-gold);
            text-shadow: 0 0 10px var(--ai-gold);
            text-decoration: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .ai-btn-dropdown-text:hover {
            color: #FFFFFF;
            text-shadow: 0 0 15px var(--ai-gold), 0 0 30px var(--ai-gold);
        }

        /* Mic Button */
        .mic-btn {
            width: 32px !important;
            height: 32px !important;
            padding: 0 !important;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1) !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            vertical-align: middle;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .mic-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2) !important;
        }

        .mic-btn svg {
            width: 16px;
            height: 16px;
            fill: var(--text-gray);
            transition: fill 0.3s ease;
        }

        .mic-btn:hover svg {
            fill: var(--text-white);
        }

        /* ==================== SOCIAL FEATURE BUTTONS (Second Row) ==================== */
        .social-features-bar {
            position: fixed;
            top: 48px;
            left: 0;
            right: 0;
            z-index: 99;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(to bottom, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.7));
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .social-feature-btn {
            padding: 0 0.6rem !important;
            height: 28px !important;
            background: rgba(255,255,255,0.03) !important;
            border: 1px solid rgba(255,255,255,0.08) !important;
            border-radius: 1rem;
            color: var(--text-gray) !important;
            font-weight: 500 !important;
            font-size: 0.65rem !important;
            display: inline-flex !important;
            align-items: center;
            gap: 0.3rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .social-feature-btn:hover {
            background: rgba(255,255,255,0.08) !important;
            border-color: rgba(255,255,255,0.2) !important;
            color: var(--text-white) !important;
            transform: translateY(-1px);
        }

        .social-feature-btn .feature-emoji {
            font-size: 0.8rem;
        }

        .social-feature-btn.messages:hover { border-color: var(--ai-royalblue) !important; }
        .social-feature-btn.stories:hover { border-color: var(--creator-orange) !important; }
        .social-feature-btn.feed:hover { border-color: var(--fitness-teal) !important; }
        .social-feature-btn.groups:hover { border-color: var(--ai-gold) !important; }
        .social-feature-btn.events:hover { border-color: var(--dating-red) !important; }
        .social-feature-btn.live:hover { border-color: #FF0000 !important; }
        .social-feature-btn.moments:hover { border-color: var(--creator-orange) !important; }
        .social-feature-btn.drive:hover { border-color: var(--ai-royalblue) !important; }

        /* Feature Preview Modal */
        .feature-preview-modal {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .feature-preview-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .feature-preview-content {
            background: var(--bg-section);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .feature-preview-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .feature-preview-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .feature-preview-close svg {
            width: 16px;
            height: 16px;
            fill: var(--text-gray);
        }

        .feature-preview-icon {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .feature-preview-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--ai-gold), var(--fitness-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-preview-subtitle {
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .feature-preview-features {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-preview-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255,255,255,0.03);
            border-radius: 0.75rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .feature-preview-item-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-preview-item-text h4 {
            color: var(--text-white);
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        .feature-preview-item-text p {
            color: var(--text-gray);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .feature-preview-cta {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .feature-preview-cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--ai-royalblue), var(--fitness-teal));
            border: none;
            border-radius: 0.75rem;
            color: var(--text-white);
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-preview-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
        }

        /* ==================== MAIN CONTAINER ==================== */
        .main-container {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 150px;
            padding-bottom: 120px;
        }

        /* ==================== STAR PORTAL ==================== */
        .star-portal {
            position: relative;
            width: 320px;
            height: 320px;
        }

        .star-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
        }

        .star-point {
            stroke-width: 1.5;
            cursor: pointer;
            transition: fill 0.4s ease, stroke 0.4s ease, filter 0.4s ease, stroke-width 0.3s ease;
            pointer-events: all;
        }

        .star-point:hover {
            stroke-width: 2;
        }

        .star-point.dating {
            fill: rgba(229, 57, 53, 0.3);
            stroke: var(--dating-red);
            stroke-width: 2;
        }
        
        .star-point.dating:hover {
            fill: rgba(229, 57, 53, 0.8);
            stroke-width: 3;
        }

        .star-point.creator {
            fill: rgba(255, 152, 0, 0.3);
            stroke: var(--creator-orange);
            stroke-width: 2;
        }
        
        .star-point.creator:hover {
            fill: rgba(255, 152, 0, 0.8);
            stroke-width: 3;
        }

        .star-point.ai {
            fill: rgba(65, 105, 225, 0.3);
            stroke: #4169E1;
            stroke-width: 2;
        }
        
        .star-point.ai:hover {
            fill: rgba(65, 105, 225, 0.8);
            stroke-width: 3;
        }

        .star-point.professional {
            fill: rgba(255, 215, 0, 0.3);
            stroke: var(--ai-gold);
            stroke-width: 2;
        }
        
        .star-point.professional:hover {
            fill: rgba(255, 215, 0, 0.8);
            stroke-width: 3;
        }

        .star-point.fitness {
            fill: rgba(0, 200, 83, 0.3);
            stroke: #00C853;
            stroke-width: 2;
        }
        
        .star-point.fitness:hover {
            fill: rgba(0, 200, 83, 0.8);
            stroke-width: 3;
        }

        /* Orbit Labels */
        .orbit-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            z-index: 50;
        }
        
        .orbit-label {
            position: absolute;
            font-family: 'Cinzel', serif;
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            pointer-events: auto;
            white-space: nowrap;
            text-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            z-index: 100;
        }

        .orbit-label:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .orbit-label.dating {
            color: var(--dating-red);
            top: 126px;
            left: 103px;
            text-shadow: 0 0 10px var(--dating-red), 0 0 20px var(--dating-red), 0 0 40px var(--dating-red);
        }

        .orbit-label.dating:hover {
            text-shadow: 0 0 20px var(--dating-red), 0 0 40px var(--dating-red), 0 0 80px var(--dating-red), 0 0 120px var(--dating-red);
        }
        
        .orbit-label.creator {
            color: #FF9800;
            top: -54px;
            left: 167px;
        }

        .orbit-label.creator:hover {
            text-shadow: 0 0 10px #FF9800, 0 0 20px #FF9800, 0 0 40px #FF9800;
        }
        
        .orbit-label.professional {
            color: var(--ai-gold);
            top: -156px;
            left: 0;
            text-shadow: 0 0 10px var(--ai-gold), 0 0 20px var(--ai-gold), 0 0 40px var(--ai-gold);
        }

        .orbit-label.professional:hover {
            text-shadow: 0 0 20px var(--ai-gold), 0 0 40px var(--ai-gold), 0 0 80px var(--ai-gold), 0 0 120px var(--ai-gold);
        }
        
        .orbit-label.fitness {
            color: #00C853;
            top: 126px;
            left: -103px;
            text-shadow: 0 0 10px #00C853, 0 0 20px #00C853, 0 0 40px #00C853;
        }

        .orbit-label.fitness:hover {
            text-shadow: 0 0 20px #00C853, 0 0 40px #00C853, 0 0 80px #00C853, 0 0 120px #00C853;
        }
        
        .orbit-label.ai {
            color: #4169E1;
            top: -54px;
            left: -167px;
        }

        .orbit-label.ai:hover {
            text-shadow: 0 0 10px #4169E1, 0 0 20px #4169E1, 0 0 40px #4169E1;
        }

        /* Center Logo Text */
        .center-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            pointer-events: none;
        }

        .center-logo h1 {
            pointer-events: none;
        }

        .center-logo h1 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            margin-bottom: 0.25rem;
            animation: colorCycle 20s ease-in-out infinite;
        }

        .center-logo-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 1rem;
            padding: 1rem 1.5rem;
            background: #000000;
            border: 1px solid rgba(255,215,0,0.3);
            border-radius: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 100;
        }

        .center-logo:hover .center-logo-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .center-logo-dropdown-text {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: var(--ai-gold);
            text-shadow: 0 0 10px var(--ai-gold);
        }
        
        @keyframes colorCycle {
            0%, 100% {
                color: var(--professional-yellow);
                text-shadow: 0 0 20px var(--professional-yellow), 0 0 40px var(--professional-yellow), 0 0 60px var(--professional-yellow);
            }
            20% {
                color: var(--creator-orange);
                text-shadow: 0 0 20px var(--creator-orange), 0 0 40px var(--creator-orange), 0 0 60px var(--creator-orange);
            }
            40% {
                color: var(--dating-red);
                text-shadow: 0 0 20px var(--dating-red), 0 0 40px var(--dating-red), 0 0 60px var(--dating-red);
            }
            60% {
                color: var(--fitness-teal);
                text-shadow: 0 0 20px var(--fitness-teal), 0 0 40px var(--fitness-teal), 0 0 60px var(--fitness-teal);
            }
            80% {
                color: var(--ai-royalblue);
                text-shadow: 0 0 20px var(--ai-royalblue), 0 0 40px var(--ai-royalblue), 0 0 60px var(--ai-royalblue);
            }
        }

        /* ==================== TAGLINE ==================== */
        .tagline {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            text-align: center;
            font-family: 'Cinzel', serif;
            font-size: clamp(1.2rem, 3.2vw, 2.4rem);
            font-weight: 600;
            letter-spacing: 0.4em;
            color: var(--text-gray);
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(255,255,255,0.1);
            z-index: 5;
            pointer-events: auto;
            cursor: pointer;
        }

        .tagline a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .tagline a:hover {
            color: var(--ai-gold);
            text-shadow: 0 0 20px var(--ai-gold);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            text-align: center;
            background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
            z-index: 50;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-white);
        }

        .footer-links span {
            color: var(--text-dim);
        }

        /* ==================== PREVIEW OVERLAY ==================== */
        .preview-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 200;
            background: var(--bg-dark);
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preview-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            color: var(--text-gray);
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .back-btn:hover {
            color: var(--text-white);
        }

        .back-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .preview-signup {
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, var(--ai-royalblue), var(--fitness-teal));
            border-radius: 2rem;
            border: none;
            color: var(--text-white);
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .preview-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
        }

        .preview-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            overflow-y: auto;
        }

        .preview-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .preview-title {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .preview-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 500px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 700px;
        }

        .feature-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.1);
        }

        .feature-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .preview-cta {
            margin-top: 3rem;
            text-align: center;
        }

        .preview-cta p {
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-top: 0.75rem;
        }

        .cta-btn {
            padding: 1rem 3rem;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            border: none;
            border-radius: 3rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
        }

        /* Platform-specific colors */
        .preview-overlay.dating .preview-icon { background: linear-gradient(135deg, var(--dating-red), #ff6b6b); }
        .preview-overlay.dating .preview-title { color: var(--dating-red); }
        .preview-overlay.dating .feature-card:hover { border-color: var(--dating-red); }
        .preview-overlay.dating .cta-btn { background: linear-gradient(135deg, var(--dating-red), #ff6b6b); color: white; }
        .preview-overlay.dating .cta-btn:hover { box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4); }

        .preview-overlay.creator .preview-icon { background: linear-gradient(135deg, var(--creator-orange), #ffd54f); }
        .preview-overlay.creator .preview-title { color: var(--creator-orange); }
        .preview-overlay.creator .feature-card:hover { border-color: var(--creator-orange); }
        .preview-overlay.creator .cta-btn { background: linear-gradient(135deg, var(--creator-orange), #ffd54f); color: var(--bg-dark); }
        .preview-overlay.creator .cta-btn:hover { box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4); }

        .preview-overlay.ai .preview-icon { background: linear-gradient(135deg, var(--ai-royalblue), #6495ED); }
        .preview-overlay.ai .preview-title { color: var(--ai-royalblue); }
        .preview-overlay.ai .feature-card:hover { border-color: var(--ai-royalblue); }
        .preview-overlay.ai .cta-btn { background: linear-gradient(135deg, var(--ai-royalblue), #6495ED); color: white; }
        .preview-overlay.ai .cta-btn:hover { box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4); }

        .preview-overlay.professional .preview-icon { background: linear-gradient(135deg, var(--professional-yellow), #FFF59D); }
        .preview-overlay.professional .preview-title { color: var(--professional-yellow); }
        .preview-overlay.professional .feature-card:hover { border-color: var(--professional-yellow); }
        .preview-overlay.professional .cta-btn { background: linear-gradient(135deg, var(--professional-yellow), #FFF59D); color: var(--bg-dark); }
        .preview-overlay.professional .cta-btn:hover { box-shadow: 0 10px 30px rgba(255, 235, 59, 0.4); }

        .preview-overlay.fitness .preview-icon { background: linear-gradient(135deg, var(--fitness-teal), #4DB6AC); }
        .preview-overlay.fitness .preview-title { color: var(--fitness-teal); }
        .preview-overlay.fitness .feature-card:hover { border-color: var(--fitness-teal); }
        .preview-overlay.fitness .cta-btn { background: linear-gradient(135deg, var(--fitness-teal), #4DB6AC); color: white; }
        .preview-overlay.fitness .cta-btn:hover { box-shadow: 0 10px 30px rgba(0, 150, 136, 0.4); }

        /* ==================== SIGN UP MODAL ==================== */
        .signup-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 300;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .signup-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .signup-box {
            background: var(--bg-section);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.5rem;
            padding: 3rem;
            width: 100%;
            max-width: 450px;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .signup-modal.active .signup-box {
            transform: translateY(0);
        }

        .signup-box h2 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .signup-box .price-info {
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .signup-box input[type="email"],
        .signup-box input[type="password"],
        .signup-box input[type="text"],
        .signup-box input[type="date"],
        .signup-box select {
            width: 100%;
            padding: 1rem 1.25rem;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0.75rem;
            color: var(--text-white);
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .signup-box select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }

        .signup-box select option {
            background: var(--bg-section);
            color: var(--text-white);
        }

        .signup-box input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(0.7);
            cursor: pointer;
        }

        .signup-row {
            display: flex;
            gap: 1rem;
        }

        .signup-row > * {
            flex: 1;
        }

        .signup-box input:focus {
            outline: none;
            border-color: var(--ai-royalblue);
        }

        .signup-box input::placeholder {
            color: var(--text-dim);
        }

        /* Consent Checkboxes */
        .consent-group {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .consent-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .consent-item input[type="checkbox"] {
            margin-top: 0.2rem;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .consent-item a {
            color: var(--ai-royalblue);
            text-decoration: none;
        }

        .consent-item a:hover {
            text-decoration: underline;
        }

        .legacy-consent {
            background: rgba(255, 235, 59, 0.1);
            border: 1px solid rgba(255, 235, 59, 0.3);
            border-radius: 0.5rem;
            padding: 0.75rem;
            margin-top: 0.5rem;
        }

        .legacy-consent .consent-item {
            margin-bottom: 0;
        }

        .signup-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--ai-royalblue), var(--fitness-teal));
            border: none;
            border-radius: 0.75rem;
            color: var(--text-white);
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .signup-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
        }

        .signup-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .signup-box .privacy-note {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: var(--text-dim);
        }

        .signup-error {
            background: rgba(229, 57, 53, 0.15);
            border: 1px solid var(--dating-red);
            color: #ff6b6b;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            display: none;
        }

        .signup-error.visible {
            display: block;
        }

        .signup-success {
            text-align: center;
            padding: 2rem 0;
        }

        .signup-success-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .signup-success h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--fitness-teal);
        }

        .signup-success p {
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .signup-success .email-highlight {
            color: var(--text-white);
            font-weight: 600;
        }

        .signup-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .signup-submit.loading {
            position: relative;
            color: transparent;
        }

        .signup-submit.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.8s linear infinite;
        }

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

        .close-modal {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-modal:hover {
            background: rgba(255,255,255,0.1);
        }

        .close-modal svg {
            width: 16px;
            height: 16px;
            fill: var(--text-gray);
        }

        /* ==================== AI CHATBOT PANEL ==================== */
        .chatbot-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: var(--bg-section);
            border-left: 1px solid rgba(255,255,255,0.1);
            z-index: 250;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .chatbot-panel.active {
            right: 0;
        }

        .chatbot-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header h3 {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            letter-spacing: 0.1em;
        }

        .chatbot-close {
            background: none;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            font-size: 1.5rem;
            line-height: 1;
        }

        .chatbot-messages {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
        }

        .chatbot-message {
            margin-bottom: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .chatbot-message.ai {
            background: rgba(65, 105, 225, 0.1);
            border: 1px solid rgba(65, 105, 225, 0.2);
        }

        .chatbot-message.user {
            background: rgba(255,255,255,0.05);
            margin-left: 2rem;
        }

        .chatbot-input {
            padding: 1rem 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            gap: 0.75rem;
        }

        .chatbot-input input {
            flex: 1;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0.5rem;
            color: var(--text-white);
            font-family: 'Raleway', sans-serif;
        }

        .chatbot-input button {
            padding: 0.75rem 1.5rem;
            background: var(--ai-royalblue);
            border: none;
            border-radius: 0.5rem;
            color: white;
            cursor: pointer;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .top-bar {
                gap: 0.5rem;
                padding: 0.75rem 1rem;
                flex-wrap: wrap;
            }

            .top-bar a, .top-bar button {
                font-size: 0.65rem;
                height: 28px !important;
            }

            .price-badge {
                font-size: 0.65rem;
            }

            .star-portal {
                width: 224px;
                height: 224px;
            }

            .center-logo h1 {
                font-size: 1.4rem;
                letter-spacing: 0.2em;
            }

            .orbit-label {
                font-size: 0.70rem;
            }

            .orbit-label.dating { top: 89px; left: 72px; }
            .orbit-label.creator { top: -38px; left: 117px; }
            .orbit-label.professional { top: -110px; left: 0; }
            .orbit-label.fitness { top: 89px; left: -72px; }
            .orbit-label.ai { top: -38px; left: -117px; }

            .tagline {
                font-size: clamp(0.8rem, 2.4vw, 1.2rem);
                letter-spacing: 0.2em;
                bottom: 70px;
            }

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

            .preview-title {
                font-size: 1.8rem;
            }

            .chatbot-panel {
                width: 100%;
                right: -100%;
            }
        }

        @media (max-width: 480px) {
            .star-portal {
                width: 176px;
                height: 176px;
            }

            .signup-box {
                margin: 1rem;
                padding: 2rem;
            }
        }

        /* ==================== MOMENTS APP ==================== */
        .moments-container {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #000;
            position: relative;
        }

        .moments-tabs {
            display: flex;
            background: #111;
            border-bottom: 1px solid #333;
            padding: 0.5rem;
            gap: 0.5rem;
        }

        .moments-tab {
            flex: 1;
            padding: 0.75rem;
            background: transparent;
            border: none;
            color: #888;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s;
            font-weight: 500;
        }

        .moments-tab.active {
            background: var(--se-gradient);
            color: white;
        }

        .moments-feed {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .moment-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .moment-video {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .moment-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
        }

        .moment-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .moment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
        }

        .moment-username {
            font-weight: 600;
            font-size: 1rem;
        }

        .moment-caption {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .moment-actions {
            position: absolute;
            right: 1rem;
            bottom: 100px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .moment-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            color: white;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .moment-action:hover {
            transform: scale(1.1);
        }

        .moment-action i {
            font-size: 1.75rem;
        }

        .moment-action.liked i {
            color: #ff4757;
        }

        .moment-action.saved i {
            color: #ffd700;
        }

        .moment-action span {
            font-size: 0.75rem;
        }

        .moment-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: background 0.2s;
            z-index: 10;
        }

        .moment-nav:hover {
            background: rgba(255,255,255,0.3);
        }

        .moment-nav.prev { left: 1rem; }
        .moment-nav.next { right: 1rem; }

        .moments-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #888;
            text-align: center;
            padding: 2rem;
        }

        .moments-empty i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #444;
        }

        .create-moment-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--se-gradient);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 100;
        }

        .moment-comments {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            max-height: 50%;
            background: rgba(0,0,0,0.9);
            border-radius: 20px 20px 0 0;
            display: none;
            flex-direction: column;
        }

        .moment-comments.open {
            display: flex;
        }

        .moment-comments-header {
            padding: 1rem;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .moment-comments-list {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
        }

        .moment-comment {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .moment-comment-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
        }

        .moment-comment-content {
            flex: 1;
        }

        .moment-comment-author {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .moment-comment-text {
            font-size: 0.9rem;
            color: #ccc;
        }

        .moment-comment-input {
            display: flex;
            gap: 0.5rem;
            padding: 1rem;
            border-top: 1px solid #333;
        }

        .moment-comment-input input {
            flex: 1;
            background: #222;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 20px;
            color: white;
        }

        /* ==================== LIVE STREAMING APP ==================== */
        .live-app { display: flex; flex-direction: column; height: 100%; min-height: 500px; }
        .live-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-bottom: 1px solid var(--border-color); }
        .live-tabs { display: flex; gap: 0.5rem; }
        .live-tab { padding: 0.5rem 1rem; border-radius: 0.5rem; border: none; background: transparent; color: var(--text-dim); cursor: pointer; transition: all 0.2s; }
        .live-tab:hover, .live-tab.active { background: var(--bg-hover); color: var(--text-primary); }
        .live-btn { padding: 0.5rem 1rem; border-radius: 0.5rem; border: none; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; background: #ef4444; color: white; font-weight: 500; }
        .live-btn:hover { filter: brightness(1.1); }
        .live-content { flex: 1; overflow-y: auto; padding: 1rem; }
        .live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
        .live-card { background: var(--bg-section); border: 1px solid var(--border-color); border-radius: 0.75rem; overflow: hidden; cursor: pointer; transition: all 0.2s; }
        .live-card:hover { border-color: var(--accent-primary); transform: translateY(-2px); }
        .live-thumbnail { position: relative; aspect-ratio: 16/9; background: var(--bg-tertiary); }
        .live-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
        .live-thumbnail-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-dim); }
        .live-thumbnail-placeholder i { font-size: 3rem; }
        .live-badge { position: absolute; top: 0.5rem; left: 0.5rem; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: bold; }
        .live-badge.live { background: #ef4444; color: white; animation: pulse 2s infinite; }
        .live-badge.scheduled { background: #f59e0b; color: white; }
        .live-badge.ended { background: var(--bg-tertiary); color: var(--text-dim); }
        .live-viewers { position: absolute; bottom: 0.5rem; right: 0.5rem; background: rgba(0,0,0,0.7); color: white; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; display: flex; align-items: center; gap: 0.25rem; }
        .live-info { padding: 1rem; }
        .live-title { font-weight: 600; margin-bottom: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .live-host { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dim); font-size: 0.875rem; }
        .live-host-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.75rem; }
        .live-empty { text-align: center; padding: 3rem; color: var(--text-dim); }
        .live-empty i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }
        .live-create-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 2000; }
        .live-create-content { background: var(--bg-section); border-radius: 1rem; padding: 2rem; width: 90%; max-width: 500px; }
        .live-create-content h2 { margin-bottom: 1.5rem; }
        .live-form-group { margin-bottom: 1rem; }
        .live-form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
        .live-form-group input, .live-form-group textarea, .live-form-group select { width: 100%; padding: 0.75rem; border: 1px solid var(--border-color); border-radius: 0.5rem; background: var(--bg-primary); color: var(--text-primary); }
        .live-form-group textarea { resize: vertical; min-height: 80px; }
        .live-form-actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem; }
        .live-viewer-ui { position: fixed; inset: 0; background: #000; z-index: 2000; display: flex; flex-direction: column; }
        .live-viewer-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: rgba(0,0,0,0.8); }
        .live-viewer-video { flex: 1; display: flex; align-items: center; justify-content: center; }
        .live-viewer-video video { max-width: 100%; max-height: 100%; }
        .live-viewer-sidebar { width: 320px; background: var(--bg-section); display: flex; flex-direction: column; }
        .live-chat { flex: 1; overflow-y: auto; padding: 1rem; }
        .live-chat-message { margin-bottom: 0.5rem; }
        .live-chat-user { font-weight: 500; color: var(--accent-primary); }
        .live-chat-input { display: flex; gap: 0.5rem; padding: 1rem; border-top: 1px solid var(--border-color); }
        .live-chat-input input { flex: 1; padding: 0.5rem; border: 1px solid var(--border-color); border-radius: 0.5rem; background: var(--bg-primary); color: var(--text-primary); }

        /* ==================== DRIVE APP ==================== */
        .drive-app {
            display: flex;
            height: 100%;
            min-height: 500px;
        }

        .drive-sidebar {
            width: 200px;
            background: var(--bg-section);
            border-right: 1px solid var(--border-color);
            padding: 1rem;
        }

        .drive-nav-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            cursor: pointer;
            color: var(--text-dim);
            transition: all 0.2s;
            margin-bottom: 0.25rem;
        }

        .drive-nav-item:hover, .drive-nav-item.active {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

        .drive-nav-item i { width: 20px; text-align: center; }

        .drive-storage-info {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .storage-bar {
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 3px;
            overflow: hidden;
            margin: 0.5rem 0;
        }

        .storage-used {
            height: 100%;
            background: var(--accent-primary);
            border-radius: 3px;
        }

        .drive-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .drive-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .drive-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dim);
        }

        .drive-breadcrumb span {
            cursor: pointer;
        }

        .drive-breadcrumb span:hover {
            color: var(--accent-primary);
        }

        .drive-actions {
            display: flex;
            gap: 0.5rem;
        }

        .drive-btn {
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }

        .drive-btn-primary {
            background: var(--accent-primary);
            color: white;
        }

        .drive-btn-secondary {
            background: var(--bg-tertiary);
            color: var(--text-primary);
        }

        .drive-btn:hover {
            filter: brightness(1.1);
        }

        .drive-content {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
        }

        .drive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
        }

        .drive-list {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .drive-item {
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .drive-item:hover {
            border-color: var(--accent-primary);
            transform: translateY(-2px);
        }

        .drive-item.selected {
            border-color: var(--accent-primary);
            background: rgba(99, 102, 241, 0.1);
        }

        .drive-item-icon {
            font-size: 3rem;
            margin-bottom: 0.75rem;
        }

        .drive-item-icon.folder { color: #fbbf24; }
        .drive-item-icon.image { color: #10b981; }
        .drive-item-icon.video { color: #ef4444; }
        .drive-item-icon.audio { color: #8b5cf6; }
        .drive-item-icon.document { color: #3b82f6; }
        .drive-item-icon.archive { color: #f59e0b; }
        .drive-item-icon.file { color: #6b7280; }

        .drive-item-name {
            font-size: 0.875rem;
            color: var(--text-primary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .drive-item-meta {
            font-size: 0.75rem;
            color: var(--text-dim);
            margin-top: 0.25rem;
        }

        .drive-list .drive-item {
            display: flex;
            align-items: center;
            text-align: left;
            padding: 0.75rem 1rem;
        }

        .drive-list .drive-item-icon {
            font-size: 1.5rem;
            margin-bottom: 0;
            margin-right: 1rem;
            width: 40px;
        }

        .drive-list .drive-item-info {
            flex: 1;
        }

        .drive-list .drive-item-size {
            color: var(--text-dim);
            font-size: 0.875rem;
            width: 80px;
            text-align: right;
        }

        .drive-list .drive-item-date {
            color: var(--text-dim);
            font-size: 0.875rem;
            width: 120px;
            text-align: right;
        }

        .drive-empty {
            text-align: center;
            padding: 3rem;
            color: var(--text-dim);
        }

        .drive-empty i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .drive-context-menu {
            position: fixed;
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 0.5rem 0;
            min-width: 180px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .drive-context-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            color: var(--text-primary);
            transition: background 0.2s;
        }

        .drive-context-item:hover {
            background: var(--bg-hover);
        }

        .drive-context-item.danger {
            color: #ef4444;
        }

        .drive-context-divider {
            height: 1px;
            background: var(--border-color);
            margin: 0.5rem 0;
        }

        .drive-upload-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .drive-upload-content {
            background: var(--bg-section);
            border-radius: 1rem;
            padding: 2rem;
            width: 90%;
            max-width: 500px;
        }

        .drive-dropzone {
            border: 2px dashed var(--border-color);
            border-radius: 1rem;
            padding: 3rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .drive-dropzone:hover, .drive-dropzone.dragover {
            border-color: var(--accent-primary);
            background: rgba(99, 102, 241, 0.1);
        }

        .drive-dropzone i {
            font-size: 3rem;
            color: var(--accent-primary);
            margin-bottom: 1rem;
        }

        /* ==================== VIDEO CALL UI ==================== */
        .chat-header-actions {
            display: flex;
            gap: 0.5rem;
            margin-left: auto;
        }

        .call-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .call-btn.audio-call {
            background: var(--accent-secondary);
            color: white;
        }

        .call-btn.video-call {
            background: var(--accent-primary);
            color: white;
        }

        .call-btn:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .livestream-container .live-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ff4444;
            font-weight: bold;
        }

        .livestream-container .live-indicator i {
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .viewer-count {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            color: white;
        }

        .host-view {
            width: 70%;
        }

        .viewers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 0.5rem;
        }

        .stream-view {
            width: 100%;
            height: 100%;
        }

        .stream-view video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .call-ui {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
        }

        .call-container {
            width: 90%;
            max-width: 1200px;
            height: 80vh;
            display: flex;
            flex-direction: column;
            background: var(--bg-section);
            border-radius: 1rem;
            overflow: hidden;
        }

        .call-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            color: white;
            font-weight: 600;
        }

        .call-end-btn {
            padding: 0.5rem 1.5rem;
            background: var(--dating-red);
            border: none;
            border-radius: 0.5rem;
            color: white;
            cursor: pointer;
            font-weight: 600;
        }

        .call-videos {
            flex: 1;
            display: flex;
            gap: 1rem;
            padding: 1rem;
            overflow: hidden;
        }

        .local-video-container {
            width: 200px;
            height: 150px;
            background: #000;
            border-radius: 0.5rem;
            overflow: hidden;
            position: relative;
        }

        .local-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scaleX(-1);
        }

        .remote-videos-container {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        .remote-video {
            max-width: 100%;
            max-height: 100%;
            border-radius: 0.5rem;
            background: #000;
        }

        .call-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
        }

        .call-control-btn {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            color: white;
            cursor: pointer;
            transition: all 0.2s;
        }

        .call-control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* ==================== MESSAGING APP ==================== */
        .messaging-app { display: flex; height: 70vh; max-height: 600px; background: var(--bg-dark); border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
        .messaging-sidebar { width: 280px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; background: rgba(0,0,0,0.3); }
        .messaging-sidebar-header { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
        .messaging-sidebar-header h3 { font-family: Cinzel, serif; font-size: 1rem; color: var(--text-white); margin: 0; }
        .new-chat-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--fitness-teal); border: none; color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
        .new-chat-btn:hover { transform: scale(1.1); background: #00a896; }
        .conversation-list { flex: 1; overflow-y: auto; padding: 0.5rem; }
        .conversation-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 0.5rem; cursor: pointer; transition: background 0.2s; }
        .conversation-item:hover { background: rgba(255,255,255,0.05); }
        .conversation-item.active { background: rgba(0, 150, 136, 0.2); }
        .conversation-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; font-weight: 600; flex-shrink: 0; }
        .conversation-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .conversation-info { flex: 1; min-width: 0; }
        .conversation-name { font-weight: 600; color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .conversation-preview { font-size: 0.8rem; color: var(--text-gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .conversation-meta { text-align: right; flex-shrink: 0; }
        .conversation-time { font-size: 0.7rem; color: var(--text-dim); margin-bottom: 0.25rem; }
        .unread-badge { background: var(--dating-red); color: white; font-size: 0.65rem; font-weight: 600; padding: 0.15rem 0.4rem; border-radius: 1rem; display: inline-block; }
        .messaging-main { flex: 1; display: flex; flex-direction: column; background: var(--bg-section); }
        .messaging-main-header { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 1rem; }
        .messaging-main-header .conversation-avatar { width: 40px; height: 40px; font-size: 1rem; }
        .chat-header-info h4 { font-weight: 600; color: var(--text-white); margin: 0 0 0.25rem 0; font-size: 0.95rem; }
        .chat-header-status { font-size: 0.75rem; color: var(--fitness-teal); }
        .chat-header-actions { margin-left: auto; display: flex; gap: 0.5rem; }
        .chat-action-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-gray); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
        .chat-action-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-white); }
        .messages-container { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
        .message-bubble { max-width: 70%; padding: 0.75rem 1rem; border-radius: 1rem; font-size: 0.9rem; line-height: 1.4; position: relative; }
        .message-bubble.sent { align-self: flex-end; background: var(--fitness-teal); color: white; border-bottom-right-radius: 0.25rem; }
        .message-bubble.received { align-self: flex-start; background: rgba(255,255,255,0.1); color: var(--text-white); border-bottom-left-radius: 0.25rem; }
        .message-time { font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; text-align: right; }
        .message-bubble.received .message-time { color: var(--text-dim); }
        .typing-indicator { display: flex; gap: 0.25rem; padding: 0.5rem 0; align-items: center; }
        .typing-indicator span { width: 8px; height: 8px; background: var(--text-gray); border-radius: 50%; animation: typing 1.4s infinite ease-in-out; }
        .typing-indicator span:nth-child(1) { animation-delay: 0s; }
        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
        .typing-text { font-size: 0.75rem; color: var(--text-dim); margin-left: 0.5rem; }
        .message-input-container { padding: 1rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 0.75rem; align-items: flex-end; }
        .message-input-wrapper { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; display: flex; align-items: center; padding: 0.5rem 1rem; }
        .message-input { flex: 1; background: transparent; border: none; outline: none; color: var(--text-white); font-family: inherit; font-size: 0.9rem; resize: none; max-height: 100px; line-height: 1.4; }
        .message-input::placeholder { color: var(--text-dim); }
        .send-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--fitness-teal); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; flex-shrink: 0; }
        .send-btn:hover { transform: scale(1.05); background: #00a896; }
        .send-btn:disabled { background: rgba(255,255,255,0.1); cursor: not-allowed; transform: none; }
        .no-conversation-selected { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-dim); gap: 1rem; }
        .no-conversation-selected .icon { font-size: 3rem; opacity: 0.5; }
        .no-conversations { padding: 2rem; text-align: center; color: var(--text-dim); }
        .no-conversations .icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.5; }
        .loading-conversations { padding: 2rem; text-align: center; color: var(--text-dim); }
        @media (max-width: 768px) { .messaging-app { flex-direction: column; height: 80vh; } .messaging-sidebar { width: 100%; height: 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); } .messaging-main { height: 60%; } }

        /* ==================== STORIES APP ==================== */
        .stories-app { padding: 1rem; }
        .stories-feed { display: flex; gap: 1rem; overflow-x: auto; padding: 0.5rem 0; margin-bottom: 1.5rem; }
        .stories-feed::-webkit-scrollbar { height: 4px; }
        .stories-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
        .story-ring { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; flex-shrink: 0; }
        .story-ring-avatar { width: 68px; height: 68px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg, var(--dating-red), var(--creator-orange), var(--ai-gold)); }
        .story-ring-avatar.viewed { background: rgba(255,255,255,0.3); }
        .story-ring-avatar.add-story { background: var(--fitness-teal); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
        .story-ring-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-dark); }
        .story-ring-name { font-size: 0.7rem; color: var(--text-gray); max-width: 70px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .story-viewer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #000; z-index: 1000; display: flex; align-items: center; justify-content: center; }
        .story-viewer-content { position: relative; width: 100%; max-width: 420px; height: 100%; max-height: 750px; background: var(--bg-section); border-radius: 1rem; overflow: hidden; }
        .story-progress-bar { position: absolute; top: 0; left: 0; right: 0; display: flex; gap: 4px; padding: 8px 12px; z-index: 10; }
        .story-progress-segment { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; overflow: hidden; }
        .story-progress-fill { height: 100%; background: white; width: 0%; transition: width 0.1s linear; }
        .story-header { position: absolute; top: 20px; left: 0; right: 0; display: flex; align-items: center; padding: 0 12px; z-index: 10; }
        .story-header-avatar { width: 36px; height: 36px; border-radius: 50%; margin-right: 10px; }
        .story-header-info { flex: 1; }
        .story-header-name { color: white; font-weight: 600; font-size: 0.85rem; }
        .story-header-time { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
        .story-close-btn { width: 32px; height: 32px; background: rgba(0,0,0,0.3); border: none; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .story-media { width: 100%; height: 100%; object-fit: cover; }
        .story-text-overlay { position: absolute; bottom: 100px; left: 0; right: 0; padding: 1rem; text-align: center; }
        .story-text-content { color: white; font-size: 1.2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .story-nav { position: absolute; top: 0; bottom: 0; width: 30%; cursor: pointer; z-index: 5; }
        .story-nav.prev { left: 0; }
        .story-nav.next { right: 0; }
        .story-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; display: flex; gap: 0.75rem; align-items: center; z-index: 10; background: linear-gradient(transparent, rgba(0,0,0,0.5)); }
        .story-reply-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 2rem; padding: 0.6rem 1rem; color: white; font-family: inherit; font-size: 0.85rem; outline: none; }
        .story-reply-input::placeholder { color: rgba(255,255,255,0.5); }
        .story-react-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }
        .story-reactions { display: flex; gap: 0.5rem; }
        .story-reaction { font-size: 1.5rem; cursor: pointer; transition: transform 0.2s; }
        .story-reaction:hover { transform: scale(1.2); }
        .my-stories-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .my-stories-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .my-stories-header h4 { color: var(--text-white); font-size: 0.95rem; margin: 0; }
        .add-story-btn { padding: 0.5rem 1rem; background: var(--fitness-teal); border: none; border-radius: 2rem; color: white; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; }
        .add-story-btn:hover { background: #00a896; }
        .my-stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.75rem; }
        .my-story-item { aspect-ratio: 9/16; border-radius: 0.5rem; overflow: hidden; position: relative; cursor: pointer; background: rgba(255,255,255,0.05); }
        .my-story-item img { width: 100%; height: 100%; object-fit: cover; }
        .my-story-item .story-views { position: absolute; bottom: 0.5rem; left: 0.5rem; font-size: 0.7rem; color: white; display: flex; align-items: center; gap: 0.25rem; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
        .no-stories { text-align: center; padding: 2rem; color: var(--text-dim); }
        .highlights-section { margin-top: 1.5rem; }
        .highlights-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .highlights-header h4 { color: var(--text-white); font-size: 0.95rem; margin: 0; }
        .highlights-grid { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
        .highlight-item { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; }
        .highlight-cover { width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); overflow: hidden; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
        .highlight-cover img { width: 100%; height: 100%; object-fit: cover; }
        .highlight-name { font-size: 0.7rem; color: var(--text-gray); max-width: 70px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        /* ==================== FEED APP ==================== */
        .feed-app { max-width: 600px; margin: 0 auto; padding: 1rem; }
        .feed-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .feed-header h3 { font-family: Cinzel, serif; font-size: 1.1rem; color: var(--text-white); margin: 0; }
        .create-post-btn { padding: 0.5rem 1rem; background: var(--fitness-teal); border: none; border-radius: 2rem; color: white; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; }
        .create-post-btn:hover { background: #00a896; }
        .create-post-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 1rem; margin-bottom: 1.5rem; }
        .create-post-input { width: 100%; background: transparent; border: none; color: var(--text-white); font-family: inherit; font-size: 0.95rem; resize: none; min-height: 60px; outline: none; }
        .create-post-input::placeholder { color: var(--text-dim); }
        .create-post-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .create-post-options { display: flex; gap: 0.75rem; }
        .create-post-option { background: none; border: none; color: var(--text-gray); font-size: 1.1rem; cursor: pointer; padding: 0.25rem; transition: color 0.2s; }
        .create-post-option:hover { color: var(--text-white); }
        .post-submit-btn { padding: 0.5rem 1.25rem; background: var(--fitness-teal); border: none; border-radius: 2rem; color: white; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
        .post-submit-btn:hover { background: #00a896; }
        .post-submit-btn:disabled { background: rgba(255,255,255,0.1); cursor: not-allowed; }
        .posts-list { display: flex; flex-direction: column; gap: 1rem; }
        .post-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; overflow: hidden; }
        .post-header { display: flex; align-items: center; padding: 1rem; gap: 0.75rem; }
        .post-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; flex-shrink: 0; }
        .post-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .post-user-info { flex: 1; }
        .post-user-name { font-weight: 600; color: var(--text-white); font-size: 0.9rem; }
        .post-time { font-size: 0.75rem; color: var(--text-dim); }
        .post-menu-btn { background: none; border: none; color: var(--text-gray); font-size: 1.2rem; cursor: pointer; padding: 0.25rem 0.5rem; }
        .post-content { padding: 0 1rem 1rem; }
        .post-text { color: var(--text-white); font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.75rem; white-space: pre-wrap; }
        .post-media { width: 100%; max-height: 500px; object-fit: cover; }
        .post-media-grid { display: grid; gap: 2px; }
        .post-media-grid.count-2 { grid-template-columns: 1fr 1fr; }
        .post-media-grid.count-3 { grid-template-columns: 1fr 1fr; }
        .post-media-grid.count-4 { grid-template-columns: 1fr 1fr; }
        .post-media-item { width: 100%; aspect-ratio: 1; object-fit: cover; }
        .post-stats { display: flex; gap: 1rem; padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: var(--text-dim); }
        .post-actions { display: flex; border-top: 1px solid rgba(255,255,255,0.05); }
        .post-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; background: none; border: none; color: var(--text-gray); font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
        .post-action-btn:hover { background: rgba(255,255,255,0.05); color: var(--text-white); }
        .post-action-btn.liked { color: var(--dating-red); }
        .post-action-btn .icon { font-size: 1.1rem; }
        .post-comments-section { padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
        .comment-item { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
        .comment-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.7rem; font-weight: 600; flex-shrink: 0; }
        .comment-content { flex: 1; background: rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 0.5rem 0.75rem; }
        .comment-user { font-weight: 600; color: var(--text-white); font-size: 0.8rem; }
        .comment-text { color: var(--text-gray); font-size: 0.8rem; margin-top: 0.15rem; }
        .comment-input-wrapper { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
        .comment-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 2rem; padding: 0.5rem 0.75rem; color: var(--text-white); font-family: inherit; font-size: 0.8rem; outline: none; }
        .comment-input::placeholder { color: var(--text-dim); }
        .comment-submit { background: var(--fitness-teal); border: none; border-radius: 50%; width: 32px; height: 32px; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .no-posts { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }
        .no-posts .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
        .load-more-btn { width: 100%; padding: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; color: var(--text-gray); font-family: inherit; font-size: 0.85rem; cursor: pointer; margin-top: 1rem; transition: all 0.2s; }
        .load-more-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-white); }
        .reactions-popup { position: absolute; bottom: 100%; left: 0; background: var(--bg-section); border: 1px solid rgba(255,255,255,0.1); border-radius: 2rem; padding: 0.5rem; display: flex; gap: 0.25rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
        .reaction-option { font-size: 1.3rem; cursor: pointer; padding: 0.25rem 0.35rem; border-radius: 50%; transition: transform 0.2s, background 0.2s; }
        .reaction-option:hover { transform: scale(1.3); background: rgba(255,255,255,0.1); }

        /* ==================== GROUPS APP ==================== */
        .groups-app { padding: 1rem; }
        .groups-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .groups-header h3 { font-family: Cinzel, serif; font-size: 1.1rem; color: var(--text-white); margin: 0; }
        .create-group-btn { padding: 0.5rem 1rem; background: var(--fitness-teal); border: none; border-radius: 2rem; color: white; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; }
        .create-group-btn:hover { background: #00a896; }
        .groups-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
        .groups-tab { padding: 0.5rem 1rem; background: none; border: none; color: var(--text-gray); font-family: inherit; font-size: 0.85rem; cursor: pointer; border-radius: 0.5rem; transition: all 0.2s; }
        .groups-tab:hover { background: rgba(255,255,255,0.05); color: var(--text-white); }
        .groups-tab.active { background: rgba(0, 150, 136, 0.2); color: var(--fitness-teal); }
        .groups-search { margin-bottom: 1.5rem; }
        .groups-search-input { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; color: var(--text-white); font-family: inherit; font-size: 0.9rem; outline: none; }
        .groups-search-input:focus { border-color: var(--fitness-teal); }
        .groups-search-input::placeholder { color: var(--text-dim); }
        .groups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
        .group-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; overflow: hidden; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
        .group-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }
        .group-cover { height: 100px; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); position: relative; }
        .group-cover img { width: 100%; height: 100%; object-fit: cover; }
        .group-avatar { position: absolute; bottom: -24px; left: 1rem; width: 56px; height: 56px; border-radius: 0.75rem; background: var(--bg-section); border: 3px solid var(--bg-dark); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
        .group-avatar img { width: 100%; height: 100%; border-radius: 0.5rem; object-fit: cover; }
        .group-info { padding: 2rem 1rem 1rem; }
        .group-name { font-weight: 600; color: var(--text-white); font-size: 1rem; margin-bottom: 0.25rem; }
        .group-privacy { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.5rem; }
        .group-stats { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-gray); margin-bottom: 0.75rem; }
        .group-description { font-size: 0.8rem; color: var(--text-gray); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .group-actions { padding: 0.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 0.5rem; }
        .group-action-btn { flex: 1; padding: 0.5rem; border-radius: 0.5rem; font-family: inherit; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
        .group-action-btn.primary { background: var(--fitness-teal); border: none; color: white; }
        .group-action-btn.primary:hover { background: #00a896; }
        .group-action-btn.secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-gray); }
        .group-action-btn.secondary:hover { background: rgba(255,255,255,0.1); color: var(--text-white); }
        .group-action-btn.joined { background: rgba(0, 150, 136, 0.2); border: 1px solid var(--fitness-teal); color: var(--fitness-teal); }
        .no-groups { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }
        .no-groups .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
        .group-detail-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 1001; display: flex; align-items: center; justify-content: center; padding: 1rem; }
        .group-detail-content { background: var(--bg-section); border-radius: 1rem; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; }
        .group-detail-header { position: relative; }
        .group-detail-cover { height: 150px; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); }
        .group-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
        .group-detail-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; background: rgba(0,0,0,0.5); border: none; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; }
        .group-detail-avatar { position: absolute; bottom: -30px; left: 1.5rem; width: 72px; height: 72px; border-radius: 1rem; background: var(--bg-section); border: 4px solid var(--bg-section); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
        .group-detail-body { padding: 2.5rem 1.5rem 1.5rem; }
        .group-detail-title { font-size: 1.25rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.25rem; }
        .group-detail-meta { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1rem; }
        .group-detail-stats { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
        .group-detail-stat { text-align: center; }
        .group-detail-stat-value { font-size: 1.1rem; font-weight: 600; color: var(--text-white); }
        .group-detail-stat-label { font-size: 0.75rem; color: var(--text-dim); }
        .group-detail-desc { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; margin-bottom: 1rem; }
        .group-detail-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
        .group-members-section { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
        .group-members-title { font-size: 0.9rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.75rem; }
        .group-members-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .group-member-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; font-weight: 600; }

        /* ==================== EVENTS APP ==================== */
        .events-app { padding: 1rem; }
        .events-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .events-header h3 { font-family: Cinzel, serif; font-size: 1.1rem; color: var(--text-white); margin: 0; }
        .create-event-btn { padding: 0.5rem 1rem; background: var(--fitness-teal); border: none; border-radius: 2rem; color: white; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; }
        .create-event-btn:hover { background: #00a896; }
        .events-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; overflow-x: auto; }
        .events-tab { padding: 0.5rem 1rem; background: none; border: none; color: var(--text-gray); font-family: inherit; font-size: 0.85rem; cursor: pointer; border-radius: 0.5rem; transition: all 0.2s; white-space: nowrap; }
        .events-tab:hover { background: rgba(255,255,255,0.05); color: var(--text-white); }
        .events-tab.active { background: rgba(0, 150, 136, 0.2); color: var(--fitness-teal); }
        .events-list { display: flex; flex-direction: column; gap: 1rem; }
        .event-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; overflow: hidden; display: flex; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
        .event-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }
        .event-date-badge { width: 70px; background: linear-gradient(135deg, var(--dating-red), var(--creator-orange)); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem 0.5rem; flex-shrink: 0; }
        .event-date-month { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.9); }
        .event-date-day { font-size: 1.5rem; font-weight: 700; color: white; }
        .event-date-weekday { font-size: 0.65rem; color: rgba(255,255,255,0.7); }
        .event-info { flex: 1; padding: 1rem; display: flex; flex-direction: column; }
        .event-title { font-weight: 600; color: var(--text-white); font-size: 1rem; margin-bottom: 0.25rem; }
        .event-time { font-size: 0.8rem; color: var(--fitness-teal); margin-bottom: 0.5rem; }
        .event-location { font-size: 0.8rem; color: var(--text-gray); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.25rem; }
        .event-host { font-size: 0.75rem; color: var(--text-dim); }
        .event-stats { display: flex; gap: 1rem; margin-top: auto; padding-top: 0.5rem; }
        .event-stat { font-size: 0.75rem; color: var(--text-gray); }
        .event-stat-value { font-weight: 600; color: var(--text-white); }
        .event-actions { display: flex; flex-direction: column; justify-content: center; padding: 1rem; gap: 0.5rem; border-left: 1px solid rgba(255,255,255,0.05); }
        .event-rsvp-btn { padding: 0.5rem 1rem; border-radius: 0.5rem; font-family: inherit; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; min-width: 90px; }
        .event-rsvp-btn.going { background: var(--fitness-teal); border: none; color: white; }
        .event-rsvp-btn.going:hover { background: #00a896; }
        .event-rsvp-btn.interested { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: var(--text-gray); }
        .event-rsvp-btn.interested:hover { background: rgba(255,255,255,0.1); color: var(--text-white); }
        .event-rsvp-btn.rsvpd { background: rgba(0, 150, 136, 0.2); border: 1px solid var(--fitness-teal); color: var(--fitness-teal); }
        .no-events { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }
        .no-events .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
        .event-detail-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 1001; display: flex; align-items: center; justify-content: center; padding: 1rem; }
        .event-detail-content { background: var(--bg-section); border-radius: 1rem; max-width: 550px; width: 100%; max-height: 85vh; overflow-y: auto; }
        .event-detail-header { position: relative; padding: 1.5rem; background: linear-gradient(135deg, rgba(229,57,53,0.2), rgba(255,152,0,0.2)); }
        .event-detail-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; background: rgba(0,0,0,0.3); border: none; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; }
        .event-detail-date { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
        .event-detail-date-badge { width: 60px; height: 60px; background: var(--dating-red); border-radius: 0.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .event-detail-date-badge .month { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.9); }
        .event-detail-date-badge .day { font-size: 1.3rem; font-weight: 700; color: white; }
        .event-detail-datetime { flex: 1; }
        .event-detail-datetime .date { font-size: 0.9rem; color: var(--text-white); font-weight: 500; }
        .event-detail-datetime .time { font-size: 0.85rem; color: var(--text-gray); }
        .event-detail-title { font-size: 1.25rem; font-weight: 600; color: var(--text-white); }
        .event-detail-body { padding: 1.5rem; }
        .event-detail-section { margin-bottom: 1.25rem; }
        .event-detail-section-title { font-size: 0.8rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
        .event-detail-location { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-gray); font-size: 0.9rem; }
        .event-detail-location .icon { color: var(--dating-red); }
        .event-detail-desc { color: var(--text-gray); font-size: 0.9rem; line-height: 1.5; }
        .event-detail-host { display: flex; align-items: center; gap: 0.75rem; }
        .event-detail-host-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; }
        .event-detail-host-info { flex: 1; }
        .event-detail-host-name { font-weight: 600; color: var(--text-white); font-size: 0.9rem; }
        .event-detail-host-label { font-size: 0.75rem; color: var(--text-dim); }
        .event-detail-stats { display: flex; gap: 1.5rem; padding: 1rem; background: rgba(255,255,255,0.03); border-radius: 0.5rem; }
        .event-detail-stat { text-align: center; flex: 1; }
        .event-detail-stat-value { font-size: 1.1rem; font-weight: 600; color: var(--text-white); }
        .event-detail-stat-label { font-size: 0.7rem; color: var(--text-dim); }
        .event-detail-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
        .event-detail-actions .event-rsvp-btn { flex: 1; padding: 0.75rem; font-size: 0.9rem; }

    
        /* ==================== NOTIFICATIONS ==================== */
        .notification-bell {
            position: relative;
            cursor: pointer;
            padding: 0.5rem;
        }

        .notification-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: #ff4757;
            color: white;
            font-size: 0.7rem;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .notification-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 350px;
            max-height: 400px;
            background: var(--bg-secondary);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            display: none;
            overflow: hidden;
            z-index: 1000;
        }

        .notification-dropdown.open {
            display: block;
        }

        .notification-header {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .notification-list {
            max-height: 300px;
            overflow-y: auto;
        }

        .notification-item {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: background 0.2s;
        }

        .notification-item:hover {
            background: var(--bg-tertiary);
        }

        .notification-item.unread {
            background: rgba(99, 102, 241, 0.1);
        }

        .notification-item .title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .notification-item .body {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .notification-item .time {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            margin-top: 0.25rem;
        }

        .notification-empty {
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
        }


        
        /* USER SEARCH */
        .user-search-container { position: relative; display: none; margin-right: 0.5rem; }
        .user-search-container.visible { display: block; }
        .user-search-input { width: 200px; padding: 0.5rem 0.75rem; padding-right: 2rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 1.5rem; background: rgba(255,255,255,0.05); color: var(--text-white); font-size: 0.85rem; outline: none; transition: all 0.3s; }
        .user-search-input:focus { border-color: var(--fitness-teal); background: rgba(255,255,255,0.1); width: 280px; }
        .user-search-input::placeholder { color: var(--text-dim); }
        .user-search-clear { position: absolute; right: 0.5rem; top: 50%%; transform: translateY(-50%%); background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 0.25rem; display: none; }
        .user-search-clear.visible { display: block; }
        .user-search-results { position: absolute; top: 100%%; left: 0; right: 0; margin-top: 0.5rem; background: var(--bg-section); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; max-height: 400px; overflow-y: auto; display: none; z-index: 1000; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
        .user-search-results.visible { display: block; }
        .user-search-result { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; cursor: pointer; transition: background 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .user-search-result:last-child { border-bottom: none; }
        .user-search-result:hover { background: rgba(255,255,255,0.05); }
        .user-search-avatar { width: 40px; height: 40px; border-radius: 50%%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; color: var(--bg-dark); flex-shrink: 0; }
        .user-search-avatar img { width: 100%%; height: 100%%; border-radius: 50%%; object-fit: cover; }
        .user-search-info { flex: 1; min-width: 0; }
        .user-search-name { font-weight: 600; color: var(--text-white); display: flex; align-items: center; gap: 0.25rem; }
        .user-search-name .verified { color: var(--fitness-teal); font-size: 0.8rem; }
        .user-search-username { font-size: 0.8rem; color: var(--text-dim); }
        .user-search-bio { font-size: 0.75rem; color: var(--text-gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .user-search-loading, .user-search-empty { padding: 1.5rem; text-align: center; color: var(--text-dim); }
        .user-profile-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .user-profile-modal.visible { opacity: 1; visibility: visible; }
        .user-profile-card { background: var(--bg-section); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; width: 400px; max-width: 90vw; max-height: 80vh; overflow-y: auto; }
        .user-profile-header { padding: 2rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .user-profile-avatar { width: 100px; height: 100px; border-radius: 50%%; background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 2.5rem; color: var(--bg-dark); margin: 0 auto 1rem; }
        .user-profile-avatar img { width: 100%%; height: 100%%; border-radius: 50%%; object-fit: cover; }
        .user-profile-name { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
        .user-profile-username { color: var(--text-dim); margin-top: 0.25rem; }
        .user-profile-bio { margin-top: 1rem; color: var(--text-gray); line-height: 1.5; }
        .user-profile-stats { display: flex; justify-content: center; gap: 2rem; padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .user-profile-stat { text-align: center; }
        .user-profile-stat-value { font-size: 1.25rem; font-weight: 700; color: var(--text-white); }
        .user-profile-stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; }
        .user-profile-details { padding: 1.5rem; }
        .user-profile-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-gray); font-size: 0.9rem; }
        .user-profile-actions { padding: 1.5rem; display: flex; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .user-profile-btn { flex: 1; padding: 0.75rem; border-radius: 0.5rem; border: none; cursor: pointer; font-weight: 600; transition: all 0.2s; }
        .user-profile-btn.primary { background: var(--fitness-teal); color: white; }
        .user-profile-btn.secondary { background: rgba(255,255,255,0.1); color: var(--text-white); }
    
        /* Followers/Following List Modal */
        .follow-list-modal {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85);
            display: flex; align-items: center; justify-content: center;
            z-index: 2100; opacity: 0; visibility: hidden; transition: all 0.3s;
        }
        .follow-list-modal.visible { opacity: 1; visibility: visible; }
        .follow-list-container {
            background: var(--bg-section);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1rem;
            width: 400px; max-width: 90vw; max-height: 70vh;
            display: flex; flex-direction: column;
        }
        .follow-list-header {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: space-between;
        }
        .follow-list-title { font-size: 1.1rem; font-weight: 600; }
        .follow-list-close {
            background: none; border: none; color: var(--text-dim);
            font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
        }
        .follow-list-close:hover { color: var(--text-white); }
        .follow-list-content {
            flex: 1; overflow-y: auto; padding: 0.5rem 0;
        }
        .follow-list-item {
            display: flex; align-items: center; gap: 0.75rem;
            padding: 0.75rem 1.5rem; cursor: pointer; transition: background 0.2s;
        }
        .follow-list-item:hover { background: rgba(255,255,255,0.05); }
        .follow-list-avatar {
            width: 48px; height: 48px; border-radius: 50%;
            background: linear-gradient(135deg, var(--fitness-teal), var(--ai-gold));
            display: flex; align-items: center; justify-content: center;
            font-weight: 600; font-size: 1.1rem; color: var(--bg-dark); flex-shrink: 0;
        }
        .follow-list-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .follow-list-info { flex: 1; min-width: 0; }
        .follow-list-name { font-weight: 600; color: var(--text-white); display: flex; align-items: center; gap: 0.25rem; }
        .follow-list-name .verified { color: var(--fitness-teal); font-size: 0.8rem; }
        .follow-list-username { font-size: 0.85rem; color: var(--text-dim); }
        .follow-list-bio { font-size: 0.8rem; color: var(--text-gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 0.25rem; }
        .follow-list-btn {
            padding: 0.5rem 1rem; border-radius: 1rem; border: none;
            font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
        }
        .follow-list-btn.following { background: rgba(255,255,255,0.1); color: var(--text-white); }
        .follow-list-btn.not-following { background: var(--fitness-teal); color: white; }
        .follow-list-empty { padding: 3rem; text-align: center; color: var(--text-dim); }
        .follow-list-loading { padding: 2rem; text-align: center; color: var(--text-dim); }
        .user-profile-stat-clickable { cursor: pointer; transition: opacity 0.2s; }
        .user-profile-stat-clickable:hover { opacity: 0.8; }

    
        /* Notification Toast */
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        .notification-toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--bg-section), #1a1a2e);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 1rem 1.25rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            z-index: 9999;
            max-width: 320px;
            animation: slideIn 0.3s ease;
            cursor: pointer;
        }
        .notification-toast:hover {
            border-color: var(--fitness-teal);
        }
        .notification-toast strong {
            color: var(--text-white);
            display: block;
            margin-bottom: 0.25rem;
        }
        .notification-toast-body {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .notification-toast-icon {
            display: inline-block;
            margin-right: 0.5rem;
            color: var(--fitness-teal);
        }

