/* worldcup2026schedule.ca — broadcast dashboard theme */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
    --bg: #03070f;
    --surface: #080f1e;
    --card: #0c1628;
    --card2: #101f35;
    --cyan: #00e5ff;
    --cyan-dim: rgba(0, 229, 255, .15);
    --cyan-border: rgba(0, 229, 255, .2);
    --purple: #7c3aed;
    --purple-light: #a855f7;
    --gold: #fbbf24;
    --green: #10b981;
    --red: #ef4444;
    --text: #e2e8f0;
    --text-muted: rgba(226, 232, 240, .6);
    --text-dim: rgba(226, 232, 240, .3);
    --border: rgba(255, 255, 255, .06);
    --font-mono: 'Share Tech Mono', monospace;
    --font-head: 'Rajdhani', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    --font-body: 'Inter', sans-serif;
    --glow-cyan: 0 0 20px rgba(0, 229, 255, .3), 0 0 60px rgba(0, 229, 255, .1);
    --glow-purple: 0 0 20px rgba(124, 58, 237, .4);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: .2s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: #fff
}

ul {
    list-style: none
}

/* ─── GRID NOISE BG ─ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(0, 229, 255, .04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(124, 58, 237, .06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0
}

/* ─── SKIP ─ */
.skip-link {
    position: absolute;
    top: -99px;
    left: 0;
    background: var(--cyan);
    color: #000;
    padding: .5rem 1rem;
    z-index: 999;
    border-radius: 0 0 8px 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

/* ─── CONTAINER ─ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1
}

/* ─── HEADER ─ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 7, 15, .88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cyan-border)
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: .5
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 1rem
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    border-radius: 6px
}

.logo-text {
    line-height: 1.1
}

.logo-domain {
    font-family: var(--font-mono);
    font-size: .88rem;
    color: #fff;
    letter-spacing: .03em
}

.logo-domain span {
    color: var(--cyan)
}

.logo-tagline {
    font-size: .6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .1em
}

.main-nav ul {
    display: flex;
    gap: .1rem
}

.main-nav a {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: .4rem .75rem;
    border-radius: 6px;
    transition: all var(--transition);
    border: 1px solid transparent
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--cyan);
    border-color: var(--cyan-border);
    background: var(--cyan-dim)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--cyan-border);
    border-radius: 6px;
    cursor: pointer;
    padding: .35rem .5rem
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: all var(--transition)
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(3, 7, 15, .97);
    border-bottom: 1px solid var(--cyan-border);
    z-index: 99;
    padding: .75rem 0
}

.mobile-nav.open {
    display: block
}

.mobile-nav li a {
    display: block;
    padding: .65rem 1.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all var(--transition)
}

.mobile-nav li a:hover {
    color: var(--cyan);
    background: var(--cyan-dim)
}

/* ─── HERO ─ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.25) saturate(1.5)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 15, .3) 0%, rgba(3, 7, 15, .75) 60%, var(--bg) 100%)
}

/* Grid lines effect */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 229, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 229, 255, .08);
    border: 1px solid var(--cyan-border);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    padding: .35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: .92;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(0, 229, 255, .2)
}

.hero h1 .cyan {
    color: var(--cyan);
    text-shadow: var(--glow-cyan)
}

.hero h1 .dim {
    opacity: .5
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem
}

.hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--cyan);
    color: #000;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .7rem 1.75rem;
    border-radius: 6px;
    transition: all var(--transition);
    box-shadow: var(--glow-cyan)
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 40px rgba(0, 229, 255, .5)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--cyan-border);
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .7rem 1.75rem;
    border-radius: 6px;
    transition: all var(--transition)
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-dim)
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border)
}

.stat-item .num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--cyan);
    line-height: 1;
    text-shadow: var(--glow-cyan)
}

.stat-item .lbl {
    font-family: var(--font-head);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim)
}

/* ─── LIVE TICKER ─ */
.ticker-bar {
    background: rgba(0, 229, 255, .05);
    border-top: 1px solid var(--cyan-border);
    border-bottom: 1px solid var(--border);
    padding: .6rem 0;
    overflow: hidden
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 40s linear infinite
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0
}

.ticker-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    display: inline-block;
    animation: pulse 2s infinite
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.8)
    }
}

/* ─── COUNTDOWN ─ */
.countdown-section {
    padding: 3rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border)
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto
}

.cd-unit {
    background: var(--card);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cd-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan)
}

.cd-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--cyan);
    line-height: 1;
    display: block;
    text-shadow: var(--glow-cyan)
}

.cd-label {
    font-family: var(--font-mono);
    font-size: .6rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: .1em;
    margin-top: .25rem
}

/* ─── SECTION ─ */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1
}

.section-tag {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: .6rem;
    display: block
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: .75rem
}

.section-title span {
    color: var(--cyan)
}

.section-sub {
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7
}

.section-header {
    margin-bottom: 3rem
}

.section-header.centered {
    text-align: center
}

.section-header.centered .section-sub {
    margin: 0 auto
}

/* ─── MATCH CARD ─ */
.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem
}

.match-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.match-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cyan);
    opacity: 0;
    transition: opacity var(--transition)
}

.match-card:hover {
    border-color: var(--cyan-border);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.match-card:hover::before {
    opacity: 1
}

.match-phase {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .6rem
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem
}

.match-team {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.match-team.right {
    justify-content: flex-end;
    flex-direction: row-reverse
}

.match-vs {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dim);
    text-align: center
}

.match-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim)
}

/* ─── TABLE ─ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem
}

.data-table caption {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: left;
    padding: .7rem 1rem;
    border-bottom: 1px solid var(--border)
}

.data-table th {
    background: rgba(0, 229, 255, .05);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--cyan-border)
}

.data-table td {
    padding: .65rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    color: var(--text-muted);
    vertical-align: middle
}

.data-table tr:last-child td {
    border: none
}

.data-table tr:hover td {
    background: rgba(0, 229, 255, .03)
}

.data-table .highlight td {
    background: rgba(0, 229, 255, .06);
    color: var(--text)
}

.flag-sm {
    border-radius: 2px;
    vertical-align: middle;
    margin-right: .4rem
}

/* ─── BAR CHART ─ */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.bar-row {
    display: grid;
    grid-template-columns: 150px 1fr 40px;
    gap: .75rem;
    align-items: center
}

.bar-label {
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-muted)
}

.bar-track {
    height: 6px;
    background: rgba(255, 255, 255, .05);
    border-radius: 3px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), rgba(0, 229, 255, .4));
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
}

.bar-val {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--cyan);
    text-align: right
}

/* ─── PHASE TIMELINE ─ */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem
}

.tl-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition)
}

.tl-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px
}

.tl-final::after {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(251, 191, 36, .5)
}

.tl-semi::after {
    background: var(--purple-light)
}

.tl-quarter::after {
    background: var(--purple)
}

.tl-r16::after {
    background: #f97316
}

.tl-r32::after {
    background: #3b82f6
}

.tl-group::after {
    background: var(--green)
}

.tl-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan-border)
}

.tl-phase {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem
}

.tl-date {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    line-height: 1
}

.tl-matches {
    font-family: var(--font-head);
    font-size: .78rem;
    color: var(--text-dim);
    margin-top: .4rem
}

/* ─── SISTER SITE ─ */
.sister-section {
    background: linear-gradient(135deg, #05080f 0%, #0a1020 50%, #050810 100%);
    border-top: 1px solid rgba(251, 191, 36, .1);
    border-bottom: 1px solid rgba(0, 229, 255, .08);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden
}

.sister-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent)
}

/* ─── SEO TEXT ─ */
.seo-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .85rem;
    letter-spacing: .02em
}

.seo-article p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 1rem
}

.seo-article a {
    color: var(--cyan);
    border-bottom: 1px dashed var(--cyan-border);
    transition: border-color var(--transition)
}

.seo-article a:hover {
    border-color: var(--cyan)
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0, 229, 255, .06);
    border: 1px solid var(--cyan-border);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .3rem .85rem;
    border-radius: 4px;
    transition: all var(--transition)
}

.quick-link:hover {
    background: rgba(0, 229, 255, .12);
    color: var(--cyan)
}

/* ─── CARDS ─ */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition)
}

.stat-card:hover {
    border-color: var(--cyan-border);
    box-shadow: var(--glow-cyan)
}

.stat-card .icon {
    font-size: 1.8rem;
    margin-bottom: .75rem
}

.stat-card .big {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--cyan);
    line-height: 1;
    text-shadow: var(--glow-cyan)
}

.stat-card .name {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    margin: .25rem 0
}

.stat-card .desc {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.6
}

.badge-cyan {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 3px;
    background: rgba(0, 229, 255, .1);
    color: var(--cyan);
    border: 1px solid var(--cyan-border)
}

.badge-gold {
    background: rgba(251, 191, 36, .1);
    color: var(--gold);
    border-color: rgba(251, 191, 36, .25)
}

.badge-purple {
    background: rgba(124, 58, 237, .15);
    color: var(--purple-light);
    border-color: rgba(124, 58, 237, .3)
}

.badge-green {
    background: rgba(16, 185, 129, .1);
    color: var(--green);
    border-color: rgba(16, 185, 129, .25)
}

/* ─── FAQ ─ */
.faq-list {
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 0;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition)
}

.faq-q:hover {
    color: var(--cyan)
}

.faq-icon {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--cyan);
    transition: transform var(--transition);
    flex-shrink: 0
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.78
}

.faq-item.open .faq-answer {
    display: block
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

/* ─── FOOTER ─ */
.site-footer {
    background: #020508;
    border-top: 1px solid var(--cyan-border);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 1
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: .4
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .85rem
}

.footer-brand p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem
}

.footer-col ul li {
    margin-bottom: .4rem
}

.footer-col ul li a {
    font-size: .82rem;
    color: var(--text-dim);
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--cyan)
}

.footer-social {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center
}

.footer-social p {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1rem
}

.social-row {
    display: flex;
    gap: .65rem;
    justify-content: center;
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .06em;
    padding: .45rem 1rem;
    border-radius: 4px;
    border: 1px solid;
    transition: all var(--transition);
    text-decoration: none
}

.soc-btn:hover {
    transform: translateY(-2px)
}

.soc-fb {
    border-color: rgba(24, 119, 242, .3);
    color: #1877f2;
    background: rgba(24, 119, 242, .07)
}

.soc-fb:hover {
    background: rgba(24, 119, 242, .15)
}

.soc-x {
    border-color: rgba(255, 255, 255, .15);
    color: #e7e9ea;
    background: rgba(255, 255, 255, .04)
}

.soc-x:hover {
    background: rgba(255, 255, 255, .1)
}

.soc-tt {
    border-color: rgba(255, 0, 80, .25);
    color: #ff0050;
    background: rgba(255, 0, 80, .06)
}

.soc-tt:hover {
    background: rgba(255, 0, 80, .15)
}

.soc-ig {
    border-color: rgba(225, 48, 108, .25);
    color: #e1306c;
    background: rgba(225, 48, 108, .06)
}

.soc-ig:hover {
    background: rgba(225, 48, 108, .15)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: .5rem
}

.footer-bottom a {
    color: var(--text-dim)
}

.footer-bottom a:hover {
    color: var(--cyan)
}

.footer-dev {
    text-align: center;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-dim);
    margin-top: .5rem
}

.footer-dev a {
    color: var(--cyan)
}

.footer-dev a:hover {
    color: #fff
}

/* ─── BREADCRUMB ─ */
.breadcrumbs {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    padding: .65rem 0;
    position: relative;
    z-index: 1
}

.breadcrumbs a {
    color: var(--text-dim)
}

.breadcrumbs a:hover {
    color: var(--cyan)
}

.breadcrumbs span {
    margin: 0 .35rem;
    opacity: .4
}

/* ─── RESPONSIVE ─ */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero h1 {
        font-size: 4rem
    }

    .hero-stats {
        gap: 1.5rem
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .bar-row {
        grid-template-columns: 110px 1fr 36px
    }
}

@media(max-width:480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ─── ANIMATIONS ─ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .6s ease both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}