/* CC-02b Wave 1 - extracted from FRONTEND/02_profiles/video-introduction.html */
:root {
            --celebration-orange: #f97316;
            --video-coral: #ff6b6b;
            --studio-navy: #1e3a8a;
        }
        
        .video-animation {
            animation: recordingGlow 3s ease-in-out infinite;
        }
        
        @keyframes recordingGlow {
            0%, 100% { 
                box-shadow: 0 0 2rem rgba(255, 107, 107, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 2.5rem rgba(30, 58, 138, 0.4);
                transform: scale(1.02);
            }
        }
        
        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s;
        }
        
        .video-card:hover::before {
            left: 100%;
        }
        
        .recording-zone {
            border: 0.125rem dashed #d1d5db;
            border-radius: 1rem;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            min-height: 25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .recording-zone.active {
            border-color: var(--video-coral);
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
            animation: recordingPulse 2s ease-in-out infinite;
        }
        
        @keyframes recordingPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .video-player {
            position: relative;
            width: 100%;
            height: 18.75rem;
            background: #000;
            border-radius: 1rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--video-coral);
            width: 0%;
            transition: width 0.1s;
        }
        
        .recording-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--video-coral);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 624.9375rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .recording-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: white;
            border-radius: 50%;
            animation: recordingBlink 1s ease-in-out infinite;
        }
        
        @keyframes recordingBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        .video-prompt {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 0.0625rem solid rgba(59, 130, 246, 0.3);
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 1rem 0;
        }
