/* ===== RESET & BASE (required by hero) ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #090909;
    --bg-tertiary: #101010;
    --gold: #D8B36A;
    --gold-light: #E4C57A;
    --gold-glow: #F4D38B;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --gray: #BDBDBD;
    --gray-dark: #888888;
    --red-accent: #E74C3C;
    --radius-card: 28px;
    --radius-btn: 16px;
    --radius-sm: 24px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-btn: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ===== SCROLLBAR (optional) ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-btn);
    font-weight: 500;
    font-size: 15px;
    padding: 16px 38px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 30px rgba(216, 179, 106, 0.08);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 60px rgba(216, 179, 106, 0.25);
    transform: scale(1.02);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
    transform: scale(1);
    will-change: transform, opacity;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-slideshow .slide.ken-burns {
    animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.75) 30%, rgba(5, 5, 5, 0.35) 70%, rgba(5, 5, 5, 0.5) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(216, 179, 106, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.45fr 0.90fr 0.85fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

/* Hero Heading */
.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-heading .pre {
    font-family: var(--font-btn);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero-heading h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-heading h1 .gold {
    color: var(--gold);
}

.hero-heading .desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 480px;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 8px;
}

.hero-heading .desc strong {
    color: var(--white);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Broadcast Panel */
.broadcast-panel {
    border-radius: var(--radius-card);
    padding: 28px 26px 32px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition-smooth);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.broadcast-panel:hover {
    transform: translateY(-4px);
}

.broadcast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.broadcast-live {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-accent);
}

.broadcast-live .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red-accent);
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.broadcast-time {
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.broadcast-activity {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-off);
    letter-spacing: 0.3px;
}
.broadcast-activity .highlight {
    color: var(--gold);
    font-weight: 500;
}

.broadcast-vote {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.broadcast-vote .label {
    font-size: 12px;
    color: var(--gray-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.vote-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vote-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.vote-bar .fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 1.2s ease;
}

.vote-bar .pct {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    min-width: 36px;
    text-align: right;
}

.broadcast-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--white);
}

.stat-item .lbl {
    font-size: 11px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    display: block;
    margin-top: 2px;
}

.broadcast-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.broadcast-countdown .timer {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.broadcast-quiz {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.broadcast-quiz .q-label {
    color: var(--gold);
    font-weight: 500;
}

/* Venue Showcase */
.venue-showcase {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    transition: transform var(--transition-smooth);
}

.venue-showcase:hover {
    transform: translateY(-6px) scale(1.01);
}

.venue-showcase .showcase-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.venue-showcase .showcase-slide.active {
    opacity: 1;
}

.venue-showcase .badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.venue-showcase .badge .gold {
    color: var(--gold);
}

.gold {
    color: var(--gold);
}

/* ===== RESPONSIVE (hero only) ===== */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .hero-grid .hero-heading {
        grid-column: 1 / -1;
    }
    .hero-grid .broadcast-panel {
        grid-column: 1 / 2;
    }
    .hero-grid .venue-showcase {
        grid-column: 2 / 3;
    }
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-grid .hero-heading {
        grid-column: 1;
    }
    .hero-grid .broadcast-panel {
        grid-column: 1;
    }
    .hero-grid .venue-showcase {
        grid-column: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-heading .desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-heading h1 {
        font-size: 32px;
    }
    .hero-heading .pre {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .hero-heading .desc {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .broadcast-panel {
        padding: 22px 18px 26px;
        min-height: auto;
    }
    .broadcast-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    .stat-item .num {
        font-size: 17px;
    }
    .venue-showcase {
        aspect-ratio: 4/3;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-heading h1 {
        font-size: 26px;
    }
    .broadcast-panel {
        padding: 18px 14px 22px;
    }
    .broadcast-vote .label {
        font-size: 10px;
    }
    .vote-bar-wrap {
        gap: 8px;
    }
    .vote-bar .pct {
        font-size: 11px;
        min-width: 28px;
    }
    .container {
        padding: 0 14px;
    }
}