:root {
    --bg-base: #f8f9fa;
    --accent-blue: #1e50a2;
    --accent-yellow: #ffcc00;
    --glass: rgba(255, 255, 255, 0.8);
    --text-main: #111;
}

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

body {
    background-color: var(--bg-base);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* Background Mesh */
.mesh-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    filter: blur(120px);
}

.mesh-ball { position: absolute; border-radius: 50%; opacity: 0.4; animation: move 20s infinite alternate ease-in-out; }
.ball-1 { width: 80vw; height: 80vw; background: var(--accent-blue); top: -10%; left: -10%; }
.ball-2 { width: 60vw; height: 60vw; background: var(--accent-yellow); bottom: -10%; right: -5%; }
.ball-3 { width: 40vw; height: 40vw; background: #ff4d4d; top: 30%; right: 10%; }

@keyframes move { from { transform: translate(0, 0); } to { transform: translate(50px, 50px); } }

/* The Card */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 48px;
    width: 100%;
    max-width: 480px;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    text-align: center;
}

.shimmer {
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: sweep 8s infinite;
}

@keyframes sweep { 0% { left: -150%; } 20%, 100% { left: 250%; } }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.logo { width: 220px; margin-bottom: 1.5rem; }

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.status-pill.is-live { background: #ff4d4d; color: #fff; }
.pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 2s infinite; }
.status-pill.is-live .pulse { background: #fff; }

@keyframes blink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.tagline { font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; }
.subtext { font-size: 0.9rem; color: #666; margin-bottom: 2rem; }

.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 2rem; }
.slot { background: #fff; padding: 1rem; border-radius: 20px; }
.day { display: block; font-size: 0.6rem; font-weight: 900; color: var(--accent-blue); letter-spacing: 1.5px; }
.time { font-weight: 700; font-size: 0.9rem; }

.btn-primary {
    display: block;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    transition: 0.3s;
    margin-bottom: 1.5rem;
}

.btn-primary:hover { transform: translateY(-3px); background: var(--accent-blue); }

.social-row { display: flex; justify-content: center; gap: 24px; }
.social-link img { width: 24px; opacity: 0.4; transition: 0.3s; }
.social-link:hover img { opacity: 1; transform: scale(1.1); }

/* Marquee Section */
.marquee-section { width: 100%; max-width: 1200px; text-align: center; }
.marquee-title { font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; color: #888; margin-bottom: 20px; }

.marquee-wrapper { 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
    min-height: 220px; /* Prevents layout collapse */
}

.marquee-content { 
    display: flex; 
    gap: 20px; 
    width: max-content; 
    animation: scroll 40s linear infinite; 
}

.marquee-item img { 
    width: 200px; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 24px; 
    border: 4px solid #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 500px) {
    .schedule-grid { grid-template-columns: 1fr; }
    .marquee-item img { width: 140px; height: 140px; }
}