/* ═══════════════════════════════════════════════
   FIFA World Cup 2026 — styles.css
   Theme: Red × Dark Navy
   ═══════════════════════════════════════════════ */

:root {
    --navy: #04142b;
    --navy2: #071e3d;
    --red: #e8002d;
    --red-dk: #b5001f;
    --red-lt: #ff3355;
    --red-glow: #ff1f4a;
    --gold: #ffcc00;
    --white: #ffffff;
    --off: #f0f6fa;
    --gray: #7a90aa;
    --light: #f0d6dc;
    --font-display: "Barlow Condensed", sans-serif;
    --font-body: "Barlow", sans-serif;
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 36px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── HEADER COUNTDOWN ── */

.header-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
}

.countdown-lbl {
    /* font-family: var(--font-display); */
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 2px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    /* color: var(--red); */
    line-height: 1;
    margin-bottom: 12px;
    padding: 0 2px;
}

/* ── SCHEDULE HERO BANNER ── */

.schedule-hero-banner {
    position: relative;
    overflow: hidden;
}

.schedule-hero-tag {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.schedule-city-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    display: inline-block;
    padding: 10px 32px;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #252525;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
    color: var(--red-lt);
    background: rgba(232, 0, 45, 0.1);
}

.nav-watch {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 900 !important;
    padding: 8px 20px !important;
    border-radius: var(--r-sm) !important;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-watch:hover {
    background: var(--red-lt) !important;
    color: var(--white) !important;
}

/* hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy2);
    padding: 12px 28px;
    border-top: 1px solid rgba(232, 0, 45, 0.15);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--light);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-transform: uppercase;
}

/* ── HERO ── */

.hero {
    position: relative;
    min-height: 90vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 28px 60px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse 60% 60% at 80% 30%, rgba(232, 0, 45, 0.18) 0%, transparent 70%), radial-gradient( ellipse 40% 50% at 20% 80%, rgba(232, 0, 45, 0.12) 0%, transparent 60%), radial-gradient( ellipse 30% 30% at 50% 50%, rgba(255, 31, 74, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.s1 {
    width: 700px;
    height: 700px;
    background: radial-gradient( circle, rgba(232, 0, 45, 0.15) 0%, transparent 70%);
    top: -220px;
    right: -120px;
    animation: pulse 7s ease-in-out infinite;
}

.s2 {
    width: 350px;
    height: 350px;
    background: radial-gradient( circle, rgba(232, 0, 45, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -60px;
    animation: pulse 9s ease-in-out infinite reverse;
}

.s3 {
    width: 160px;
    height: 160px;
    background: rgba(255, 31, 74, 0.07);
    top: 40%;
    left: 32%;
    animation: pulse 5s ease-in-out infinite 2s;
}

.s4 {
    width: 70px;
    height: 70px;
    background: var(--gold);
    opacity: 0.12;
    top: 18%;
    right: 34%;
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.09);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line1 {
    display: block;
    font-size: clamp(4rem, 10vw, 8.5rem);
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero-title .line2 {
    display: block;
    font-size: clamp(4rem, 10vw, 8.5rem);
    -webkit-text-stroke: 2.5px var(--red);
    color: transparent;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-sub {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 36px;
    text-transform: uppercase;
    animation: fadeUp 0.6s ease 0.3s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    animation: fadeUp 0.6s ease 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── BUTTONS ── */

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--r-sm);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(232, 0, 45, 0.45);
}

.btn-watch:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 0, 45, 0.6);
}

.btn-watch--full {
    width: 100%;
    justify-content: center;
}

.btn-watch--lg {
    font-size: 1.15rem;
    padding: 20px 48px;
}

.btn-secondary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
    border: 2px solid rgba(232, 0, 45, 0.5);
    padding: 14px 28px;
    border-radius: var(--r-sm);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red-lt);
    background: rgba(232, 0, 45, 0.07);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeUp 0.6s ease 0.5s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gray);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(232, 0, 45, 0.35);
}

.hero-trophy {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

.trophy-glow {
    width: 280px;
    height: 280px;
    background: radial-gradient( circle, rgba(232, 0, 45, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.trophy-icon {
    font-size: 9rem;
    filter: drop-shadow(0 8px 40px rgba(232, 0, 45, 0.6));
    animation: float 4s ease-in-out infinite;
}

/* ── WATCH BANNER ── */

.live-logo {
    width: 20px;
    border-radius: 50%;
}

.watch-banner {
    background: linear-gradient( 90deg, var(--red-dk) 0%, var(--red) 50%, var(--red-dk) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 24px;
    flex-wrap: wrap;
}

.watch-banner p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--white);
    text-transform: uppercase;
}

.banner-cta {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--white);
    background: var(--navy);
    padding: 7px 20px;
    border-radius: var(--r-sm);
    letter-spacing: 1px;
    transition: background 0.2s;
    white-space: nowrap;
}

.banner-cta:hover {
    background: var(--navy2);
}

/* ── SCHEDULE SECTION ── */

.schedule-section {
    position: relative;
    padding: 25px;
    overflow: hidden;
    background: linear-gradient(180deg, #11653b 0%, #98ca2b 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    background: rgba(232, 0, 45, 0.1);
    border: 1px solid rgba(232, 0, 45, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.section-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.schedule-grid {
    position: relative;
    z-index: 2;
    max-width: 60%;
    margin: 0 auto;
    /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; */
}

/* stage card */

.stage-card {
    background: rgba(13, 139, 120, 0.689);
    border: 1px solid rgba(232, 0, 45, 0.25);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(232, 0, 45, 0.12);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stage-card.visible {
    opacity: 1;
    transform: none;
}

.stage-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(232, 0, 45, 0.2);
}

.knockout-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

/* match card */

.match-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--r-md);
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.match-card.visible {
    opacity: 1;
    transform: none;
}

.match-card:hover {
    box-shadow: 0 0 0 2px var(--red), 0 10px 36px rgba(232, 0, 45, 0.3);
    transform: translateY(-3px);
}

.match-card--highlight {
    box-shadow: 0 0 0 2px var(--gold), 0 4px 20px rgba(255, 204, 0, 0.25);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.team {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
}

.team-right {
    flex-direction: row-reverse;
}

.flag {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.flag-img {
    width: auto;
    height: 48px;
    object-fit: cover;
    border-radius: 0 35% 0 35%;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--navy);
    text-transform: uppercase;
}

.team-name.tbd {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 700;
}

.vs {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy2);
    flex-shrink: 0;
    padding: 0 6px;
}

.match-meta {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    background: #000;
    text-align: center;
    padding: 9px 18px;
    text-transform: uppercase;
    border-top: 2px solid rgba(232, 0, 45, 0.3);
}

.match-watch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(90deg, var(--red-dk) 0%, var(--red) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px;
    transition: filter 0.2s;
}

.match-watch:hover {
    filter: brightness(1.12);
}

/* ==========================================
   NEW MATCH CARD STYLE
========================================== */

.match-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.match-top {
    background: #2b2c2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.live-now {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(232, 0, 45, 0.8);
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 12px rgba(232, 0, 45, 1);
    }
}

.league-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.match-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #252525;
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: -13px;
}

.match-watch-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--red-dk) 0%, var(--red) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: 0.25s;
}

.match-watch-small:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.match-center .vs {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    /* color: var(--navy); */
    color: white;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-right {
    flex-direction: column;
}

.flag-img {
    width: 70px;
    height: 48px;
    object-fit: cover;
    border-radius: 20% 0 20% 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 580px) {
    .match-body {
        padding: 15px 10px;
        gap: 8px;
    }
    .flag-img {
        width: 52px;
        height: 36px;
    }
    .team-name {
        font-size: 0.72rem;
        text-align: center;
    }
    .match-center .vs {
        font-size: 1.2rem;
    }
    .match-watch-small {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    .league-name {
        font-size: 0.6rem;
    }
    .live-now {
        font-size: 0.65rem;
    }
}

/* stream cta inside schedule */

.stream-cta-card {
    background: linear-gradient(135deg, var(--red-dk) 0%, var(--red) 100%);
    border: 1px solid rgba(232, 0, 45, 0.5);
    border-radius: var(--r-md);
    padding: 30px 24px;
    text-align: center;
    margin-top: auto;
}

.stream-cta-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stream-cta-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    line-height: 1.55;
}

.stream-cta-card .btn-watch {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.stream-cta-card .btn-watch:hover {
    background: var(--navy);
    color: var(--white);
}

/* ── CITIES ── */

.cities-section {
    background: var(--navy2);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.cities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse 60% 80% at 50% 50%, rgba(232, 0, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cities-section .section-header {
    position: relative;
    z-index: 2;
}

.cities-section .section-header h2 {
    color: var(--white);
}

.cities-section .section-tag {
    color: var(--red-lt);
    background: rgba(232, 0, 45, 0.12);
    border-color: rgba(232, 0, 45, 0.35);
}

.cities-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-card {
    background: rgba(232, 0, 45, 0.06);
    border: 1px solid rgba(232, 0, 45, 0.18);
    border-radius: var(--r-md);
    padding: 30px 20px;
    text-align: center;
    cursor: default;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s, border-color 0.25s;
}

.city-card.visible {
    opacity: 1;
    transform: none;
}

.city-card:hover {
    background: rgba(232, 0, 45, 0.14);
    border-color: rgba(232, 0, 45, 0.4);
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 28px rgba(232, 0, 45, 0.18);
}

.city-icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.city-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.city-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ── CTA SECTION ── */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    text-align: center;
    background: radial-gradient( ellipse 60% 60% at 20% 40%, rgba(232, 0, 45, 0.18) 0%, transparent 55%), radial-gradient( ellipse 50% 50% at 80% 60%, rgba(232, 0, 45, 0.12) 0%, transparent 55%), linear-gradient(160deg, #04142b 0%, #071e3d 60%, #04142b 100%);
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.c1 {
    width: 600px;
    height: 600px;
    background: radial-gradient( circle, rgba(232, 0, 45, 0.14) 0%, transparent 70%);
    top: -250px;
    left: -150px;
    animation: pulse 8s ease-in-out infinite;
}

.c2 {
    width: 450px;
    height: 450px;
    background: radial-gradient( circle, rgba(232, 0, 45, 0.1) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation: pulse 10s ease-in-out infinite reverse;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 660px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.93;
    margin-bottom: 22px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 30px;
}

.cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-bottom: 38px;
}

.cta-features li {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 51, 85, 0.9);
}

.cta-legal {
    margin-top: 22px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.5;
}

/* ── FOOTER ── */

.site-footer {
    background: #020c1a;
    padding: 44px 24px;
    border-top: 3px solid var(--red);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.brand-logo--footer {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red-lt);
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.18);
    max-width: 520px;
    line-height: 1.65;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-trophy {
        display: none;
    }
    .header-countdown {
        gap: 2px;
    }
    .countdown-num {
        font-size: 1.2rem;
    }
    .countdown-unit {
        min-width: 36px;
    }
}

@media (max-width: 580px) {
    body {
        overflow-x: hidden;
    }
    .header-inner {
        padding: 0 14px;
    }
    .mobile-nav {
        padding: 10px 14px;
    }
    .hero {
        min-height: auto;
        padding: 52px 14px 44px;
    }
    .hero-content {
        width: 100%;
    }
    .hero-title .line1,
    .hero-title .line2 {
        font-size: 3rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-stats {
        gap: 14px;
    }
    .stat-num {
        font-size: 1.8rem;
    }
    .watch-banner {
        padding: 12px 14px;
        gap: 12px;
        text-align: center;
    }
    .watch-banner p {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }
    .schedule-section {
        padding: 10px 0;
    }
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    .stage-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 20px 14px;
        gap: 12px;
    }
    .match-card {
        border-radius: 8px;
    }
    .match-teams {
        padding: 12px 10px;
        gap: 4px;
    }
    .team-name {
        font-size: 0.82rem;
        letter-spacing: 0;
    }
    .flag-img {
        width: 40px;
        height: 26px;
    }
    .vs {
        font-size: 1.1rem;
        padding: 0 2px;
    }
    .match-meta {
        font-size: 0.78rem;
        padding: 8px 10px;
        letter-spacing: 1px;
    }
    .match-watch {
        font-size: 0.78rem;
        padding: 9px;
        letter-spacing: 1.5px;
    }
    .cities-section {
        padding: 60px 14px;
    }
    .cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .cta-section {
        padding: 70px 14px;
    }
    .btn-watch--lg {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    .cta-title {
        font-size: 2.4rem;
    }
    .site-footer {
        padding: 36px 14px;
    }
    .footer-links {
        gap: 16px;
    }
}

@media (max-width: 400px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    .hero-title .line1,
    .hero-title .line2 {
        font-size: 2.6rem;
    }
    .team-name {
        font-size: 0.72rem;
    }
    .flag-img {
        width: 34px;
        height: 22px;
    }
}

/* ─── CRESTS MARQUEE STRIP ─── */

.crests-strip-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 18px 0;
    margin-bottom: 10px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient( 90deg, rgb(52 195 200 / 80%), rgb(111 242 184 / 63%));
}

/* fade edges */

.crests-strip-wrap::before,
.crests-strip-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.crests-strip-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.crests-strip-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.crests-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: scroll-crests 30s linear infinite;
}

.crests-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-crests {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.crest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 52px;
}

.crest-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s, filter 0.2s;
}

.crest-item:hover img {
    transform: scale(1.18);
    filter: drop-shadow(0 4px 12px rgba(232, 25, 44, 0.4));
}

.crest-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    white-space: nowrap;
}