:root {
    --navy: #060d1a;
    --navy2: #0b1829;
    --navy3: #0f2034;
    --gold: #c9a227;
    --gold2: #e8c355;
    --red: #d42b2b;
    --green: #1a7a3c;
    --white: #f4f6fa;
    --muted: #8a9bb8;
    --border: rgba(255, 255, 255, .09);
    --card: #0d1e33;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .45);
    --grad-gold: linear-gradient(135deg, #c9a227, #e8c355);
    --grad-navy: linear-gradient(180deg, #060d1a, #0f2034);
    --font-head: 'Bebas Neue', sans-serif;
    --font-sub: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

/* ── SKIP ── */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    padding: .5rem 1rem;
    background: var(--gold);
    color: #000;
    z-index: 9999;
    font-weight: 700
}

/* ── CONTAINER ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem
}

/* ── COUNTDOWN BAR ── */
.cbar {
    background: linear-gradient(90deg, #0f2034, #1a3055, #0f2034);
    border-bottom: 1px solid rgba(201, 162, 39, .3);
    padding: .45rem 0;
    font-size: .72rem;
    color: var(--muted);
    text-align: center
}

.cbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.cnt-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px
}

.cnt-num {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--gold);
    line-height: 1
}

.cnt-lbl {
    font-size: .55rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 13, 26, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: .6rem 0
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    flex-shrink: 0
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 8px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.logo-domain {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: .04em;
    color: #fff
}

.logo-domain strong {
    color: var(--gold)
}

.logo-text em {
    font-size: .62rem;
    color: var(--muted);
    font-style: normal
}

.main-nav {
    flex: 1
}

.main-nav ul {
    display: flex;
    gap: .1rem;
    flex-wrap: wrap
}

.main-nav a {
    font-family: var(--font-sub);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem .7rem;
    border-radius: 6px;
    color: var(--muted);
    transition: color .15s, background .15s
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.header-tracker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--grad-gold);
    color: #000 !important;
    font-family: var(--font-sub);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .45rem 1.1rem;
    border-radius: 20px;
    white-space: nowrap;
    transition: opacity .2s;
    flex-shrink: 0
}

.header-tracker:hover {
    opacity: .88
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: .5rem;
    flex-shrink: 0
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s
}

.mobile-nav {
    display: none;
    position: fixed;
    /* Sits exactly below sticky header (62px = logo 42px + padding 10px*2) */
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy2);
    z-index: 200;
    overflow-y: auto;
    padding: 1rem
}

.mobile-nav.open {
    display: block
}

.mobile-nav li {
    border-bottom: 1px solid var(--border)
}

.mobile-nav a {
    display: block;
    padding: .85rem 1rem;
    font-family: var(--font-sub);
    font-size: .9rem;
    color: var(--white)
}

.mobile-nav a:hover {
    color: var(--gold)
}

/* ── HERO ── */
.site-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
    z-index: 0
}

.site-hero:hover .hero-bg {
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 13, 26, .2) 0%, rgba(6, 13, 26, .55) 40%, rgba(6, 13, 26, .88) 75%, rgba(6, 13, 26, .99) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 1.5rem
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 162, 39, .15);
    border: 1px solid rgba(201, 162, 39, .35);
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .72rem;
    font-family: var(--font-sub);
    letter-spacing: .08em;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.5s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.site-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: .04em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .6);
    line-height: 1.05;
    margin-bottom: .75rem
}

.site-hero h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    max-width: 680px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
    margin-bottom: 1.5rem
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--grad-gold);
    color: #000;
    font-family: var(--font-sub);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .6rem 1.4rem;
    border-radius: 20px;
    transition: opacity .2s, transform .2s
}

.btn-primary:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-sub);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .6rem 1.4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: border-color .2s, background .2s
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, .1);
    color: var(--gold)
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(6, 13, 26, .6);
    backdrop-filter: blur(8px)
}

.h-stat {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid var(--border)
}

.h-stat:last-child {
    border-right: none
}

.h-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1
}

.h-stat-lbl {
    font-size: .65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .2rem
}

/* ── SECTION ── */
.section {
    padding: 4rem 0
}

.section.alt {
    background: var(--navy2)
}

.sec-label {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, .1);
    border: 1px solid rgba(201, 162, 39, .2);
    border-radius: 20px;
    padding: .2rem .75rem;
    margin-bottom: .75rem
}

.sec-h {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: .5rem
}

.sec-h span {
    color: var(--gold)
}

.sec-sub {
    font-size: .9rem;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 2rem
}

.sec-header {
    margin-bottom: 2rem
}

/* ── STADIUM GRID ── */
.stadiums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.st-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .2s, box-shadow .2s, border-color .2s
}

.st-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 162, 39, .3)
}

.st-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .4s
}

.st-card:hover .st-card-img {
    transform: scale(1.04)
}

.st-card-body {
    padding: 1rem
}

.st-country {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .2rem
}

.st-card-body h3 {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .4rem
}

.st-meta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.st-meta span {
    font-size: .72rem;
    color: var(--muted)
}

.st-meta strong {
    color: var(--gold)
}

.st-badge {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .05em;
    padding: .15rem .5rem;
    border-radius: 4px;
    background: rgba(201, 162, 39, .15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, .25);
    margin-top: .4rem
}

.st-badge.final {
    background: rgba(212, 43, 43, .15);
    color: #ff6b6b;
    border-color: rgba(212, 43, 43, .3)
}

/* ── HOST SECTIONS ── */
.hosts-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.h-tab {
    font-family: var(--font-sub);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .5rem 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    background: none
}

.h-tab.active,
.h-tab:hover {
    background: rgba(201, 162, 39, .12);
    border-color: rgba(201, 162, 39, .4);
    color: var(--gold)
}

/* ── TABLES ── */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.data-table caption {
    font-family: var(--font-sub);
    font-size: .75rem;
    color: var(--muted);
    text-align: left;
    padding: .5rem 0;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    caption-side: top
}

.data-table th {
    background: rgba(201, 162, 39, .1);
    color: var(--gold);
    font-family: var(--font-sub);
    font-size: .72rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .65rem .85rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, .2)
}

.data-table td {
    padding: .6rem .85rem;
    border-bottom: 1px solid var(--border);
    color: var(--white);
    vertical-align: middle
}

.data-table tr:last-child td {
    border-bottom: none
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.cell-gold {
    color: var(--gold);
    font-weight: 700
}

.cell-green {
    color: #4ade80;
    font-weight: 700
}

/* ── CHART BARS ── */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.bar-row {
    display: flex;
    align-items: center;
    gap: .75rem
}

.bar-label {
    min-width: 180px;
    font-size: .78rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    gap: .5rem
}

.bar-label strong {
    font-size: .76rem
}

.bar-label span {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap
}

.bar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: 5px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    background: var(--grad-gold);
    transition: width 1s ease-out
}

.bar-fill.blue {
    background: linear-gradient(90deg, #1a5c8e, #3a8cc0)
}

.bar-fill.green {
    background: linear-gradient(90deg, #1a7a3c, #2db564)
}

.bar-fill.red {
    background: linear-gradient(90deg, #8b1a1a, #c43232)
}

/* ── COMPARISON GRID ── */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.compare-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center
}

.compare-flag {
    font-size: 2.5rem;
    margin-bottom: .5rem
}

.compare-num {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1
}

.compare-lbl {
    font-size: .7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .2rem
}

/* ── STADIUM DETAIL ── */
.st-detail {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start
}

.st-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative
}

.st-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover
}

.st-detail-info {
    padding: .5rem 0
}

.st-fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin: 1.25rem 0
}

.st-fact {
    background: linear-gradient(135deg, var(--card), var(--navy3));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .9rem 1rem
}

.st-fact-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1
}

.st-fact-lbl {
    font-size: .65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .2rem
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

details.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s
}

details.faq-item[open] {
    border-color: rgba(201, 162, 39, .35)
}

details.faq-item summary {
    padding: 1rem 1.25rem;
    font-family: var(--font-sub);
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem
}

details.faq-item summary::-webkit-details-marker {
    display: none
}

details.faq-item summary::after {
    content: '＋';
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s
}

details.faq-item[open] summary::after {
    transform: rotate(45deg)
}

.faq-body {
    padding: 0 1.25rem 1.1rem;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border)
}

/* ── SEO ARTICLE ── */
.seo-article {
    max-width: 820px;
    margin: 0 auto
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: .03em
}

.seo-article h3 {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin: 1.5rem 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.seo-article p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: .9rem
}

.seo-article strong {
    color: var(--white)
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px
}

.text-link:hover {
    color: var(--gold2)
}

.related-links {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.related-links a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-family: var(--font-sub);
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--gold);
    background: rgba(201, 162, 39, .08);
    border: 1px solid rgba(201, 162, 39, .2);
    padding: .35rem .9rem;
    border-radius: 20px;
    transition: background .2s
}

.related-links a:hover {
    background: rgba(201, 162, 39, .18)
}

/* ── BREADCRUMB ── */
.crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: .75rem;
    flex-wrap: wrap
}

.crumb a {
    color: var(--muted);
    text-decoration: underline
}

.crumb a:hover {
    color: var(--gold)
}

.crumb span {
    color: rgba(255, 255, 255, .3)
}

/* ── PAGE HERO ── */
.pg-hero {
    background: linear-gradient(180deg, var(--navy2), var(--navy));
    padding: 3.5rem 0 2rem;
    border-bottom: 1px solid var(--border)
}

.pg-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: .5rem
}

.pg-sub {
    font-size: .9rem;
    color: var(--muted);
    max-width: 640px
}

/* ── SEO LINKS ── */
.seo-links {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0
}

.seo-links a {
    font-size: .78rem;
    font-family: var(--font-sub);
    padding: .3rem .8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all .2s
}

.seo-links a:hover {
    background: rgba(201, 162, 39, .1);
    border-color: rgba(201, 162, 39, .3);
    color: var(--gold)
}

/* ── TIMELINE ── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0
}

.tl-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    position: relative
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 24px;
    bottom: 0;
    width: 1px;
    background: var(--border)
}

.tl-item:last-child::before {
    display: none
}

.tl-date {
    min-width: 52px;
    font-family: var(--font-head);
    font-size: .85rem;
    color: var(--gold);
    text-align: right;
    padding-top: .15rem
}

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: .4rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .2)
}

.tl-body h4 {
    font-family: var(--font-sub);
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .2rem
}

.tl-body p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6
}

/* ── FOOTER ── */
.site-footer {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .75rem
}

.footer-brand .footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 6px
}

.footer-brand .footer-logo span {
    font-family: var(--font-head);
    font-size: .9rem;
    color: #fff
}

.footer-brand .footer-logo strong {
    color: var(--gold)
}

.footer-brand p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65
}

.footer-nav h4 {
    font-family: var(--font-sub);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem
}

.footer-nav li {
    margin-bottom: .4rem
}

.footer-nav a {
    font-size: .8rem;
    color: var(--muted);
    transition: color .15s
}

.footer-nav a:hover {
    color: #fff
}

.footer-social-label {
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem
}

.footer-social-row {
    display: flex;
    gap: .65rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .65);
    transition: all .2s;
    background: rgba(255, 255, 255, .03)
}

.soc-btn:hover {
    transform: translateY(-2px)
}

.soc-fb:hover {
    color: #1877f2;
    border-color: #1877f2
}

.soc-x:hover {
    color: #fff;
    border-color: #fff
}

.soc-tt:hover {
    color: #ff0050;
    border-color: #ff0050
}

.soc-ig:hover {
    color: #e1306c;
    border-color: #e1306c
}

.footer-bottom {
    text-align: center;
    font-size: .72rem;
    color: var(--muted)
}

.footer-bottom p {
    margin-bottom: .2rem
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: underline;
    transition: color .15s
}

.footer-bottom a:hover {
    color: var(--gold)
}

/* ── BADGE ── */
.badge {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .15rem .55rem;
    border-radius: 4px;
    text-transform: uppercase
}

.badge-gold {
    background: rgba(201, 162, 39, .15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, .3)
}

.badge-red {
    background: rgba(212, 43, 43, .15);
    color: #ff6b6b;
    border: 1px solid rgba(212, 43, 43, .3)
}

.badge-green {
    background: rgba(26, 122, 60, .15);
    color: #4ade80;
    border: 1px solid rgba(26, 122, 60, .3)
}

/* ── MISC UTILITY ── */
.text-gold {
    color: var(--gold)
}

.text-muted {
    color: var(--muted)
}

.see-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-sub);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 162, 39, .35);
    padding-bottom: .1rem;
    transition: border-color .2s
}

.see-all:hover {
    border-color: var(--gold)
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .stadiums-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .st-detail {
        grid-template-columns: 1fr
    }

    .compare-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .header-tracker {
        display: none
    }

    .burger {
        display: flex
    }

    .site-hero {
        min-height: 75vh
    }

    .stadiums-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 2.5rem 0
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hosts-tabs {
        gap: .3rem
    }

    /* inline-style grids: 3-col → 1-col */
    [style*="repeat(3"] { grid-template-columns: 1fr !important }

    /* 2fr grids → 1-col */
    [style*="2fr 1fr"] { grid-template-columns: 1fr !important }
    [style*="1.4fr"]   { grid-template-columns: 1fr !important }

    /* Nation headers in index with images */
    [style*="height:100px"] { height: 80px !important }

    /* Cbar on mobile: hide text spans, center numbers */
    .cbar-inner { gap: .5rem; justify-content: center }
    .cbar-inner > span { display: none }

    /* Stadium detail images */
    .st-detail-img img { height: 220px }

    /* st-detail single col — already at 1024 but ensure at 768 too */
    .st-detail { grid-template-columns: 1fr !important }
}

@media(max-width:480px) {
    /* Mobile nav adjusts if cbar scrolls off */
    .mobile-nav { top: 64px }

    .compare-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .btn-primary,
    .btn-outline {
        justify-content: center
    }

    /* Cbar: smaller units */
    .cnt-num { font-size: 1rem }
    .cnt-unit { min-width: 30px }

    /* Footer single col */
    .footer-grid { grid-template-columns: 1fr }

    /* All remaining 2-col grids */
    [style*="repeat(2"] { grid-template-columns: 1fr !important }
}