/* ====================================================================== */
/* HIGHLIGHTS PAGE — PREMIUM (loads after home.css)                       */
/* ====================================================================== */

.highlights-body {
    background: radial-gradient(circle at top, #0c1428, #020617 65%);
}

.highlights-main {
    flex: 1;
    width: 100%;
}

/* ----- Hero ----- */
.highlights-hero {
    position: relative;
    padding: 28px 40px 18px;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.highlights-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.highlights-hero-glow-a {
    width: 280px;
    height: 280px;
    background: #6366f1;
    top: -60px;
    left: 6%;
}

.highlights-hero-glow-b {
    width: 240px;
    height: 240px;
    background: #9146ff;
    bottom: -50px;
    right: 8%;
}

.highlights-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.highlights-hero .hero-eyebrow {
    margin-bottom: 8px;
    padding: 4px 12px;
    font-size: 10px;
    display: inline-block;
}

.highlights-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.highlights-hero h1 span {
    color: #93c5fd;
}

.highlights-hero-lead {
    margin: 0 0 6px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.highlights-hero-note {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    color: #64748b;
}

/* ----- Status bar ----- */
.hl-results-bar {
    display: flex;
    justify-content: center;
    padding: 12px 40px 4px;
}

.hl-results-count {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

/* ----- Layout ----- */
.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hl-section {
    width: 100%;
}

.hl-section-head {
    text-align: center;
    margin-bottom: 24px;
}

.hl-section-head .section-title {
    margin-bottom: 8px;
}

.hl-section-head .section-subtitle {
    margin: 0 auto;
    max-width: 520px;
}

.highlights-rg {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

/* ===== VIDEO ASPECT RATIO ===== */

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    border-radius: 16px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    border: none;
}

/* ===== FEATURED ===== */

.featured-video {
    width: 100%;
}

.featured-video .video-container {
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(147, 197, 253, 0.12);
}

/* ===== GRID & CARDS ===== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 197, 253, 0.25);
    box-shadow: 0 22px 60px rgba(99, 102, 241, 0.15);
}

.highlight-section h2 {
    display: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .highlights-hero {
        padding: 24px 20px 16px;
    }

    .highlights-hero-glow {
        opacity: 0.2;
    }

    .hl-results-bar,
    .highlights-container,
    .highlights-rg {
        padding-left: 20px;
        padding-right: 20px;
    }

    .highlights-container {
        gap: 36px;
        padding-bottom: 32px;
    }
}

/* Tournament Top Bar (shared component) */
.tournament-top-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #3d0b0b 50%, #1a1a1a 100%);
    border-bottom: 2px solid #ff4e50;
    color: #fff;
    padding: 10px 0;
    font-family: sans-serif;
    position: relative;
    z-index: 1000;
}

.t-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t-badge {
    background: #ff4e50;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    animation: blink 1s infinite;
}

.t-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.t-text strong {
    color: #f9d423;
}

.t-cta {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.t-cta:hover {
    background: #ff4e50;
    color: #fff;
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .t-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .t-text {
        font-size: 12px;
    }
}
