/* ============================================================
   CliqueCasino.com — Next-Gen Stadium Cyber Aesthetic
   ============================================================ */

:root {
    --bg-obsidian: #06090F;
    --bg-stadium: #0B101B;
    --glass-slate: rgba(18, 25, 38, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-green: #00FF66;
    --neon-green-dim: rgba(0, 255, 102, 0.15);
    --neon-green-glow: rgba(0, 255, 102, 0.45);
    --cyber-cyan: #00E5FF;
    --cyber-cyan-dim: rgba(0, 229, 255, 0.12);
    --cyber-cyan-glow: rgba(0, 229, 255, 0.4);
    --text-primary: #F0F4FA;
    --text-secondary: rgba(240, 244, 250, 0.65);
    --text-muted: rgba(240, 244, 250, 0.42);
    --font-display: 'Syne', 'Space Grotesk', system-ui, sans-serif;
    --font-heading: 'Space Grotesk', 'Syne', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --header-height: 72px;
    --container: min(1240px, calc(100% - 2.5rem));
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: radial-gradient(ellipse 120% 80% at 50% -20%, var(--bg-stadium) 0%, var(--bg-obsidian) 55%, #030508 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cyber-cyan);
    text-decoration: none;
    transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a:hover {
    color: var(--neon-green);
}

ul, ol {
    list-style: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.ambient-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(0, 255, 102, 0.05) 0%, transparent 35%);
}

.site-main {
    position: relative;
    z-index: 1;
}

/* ——— Typography ——— */
.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
}

.eyebrow--cyan {
    color: var(--cyber-cyan);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-lead {
    color: var(--text-secondary);
    max-width: 56ch;
    font-size: 1.05rem;
}

/* ——— Glass panels ——— */
.glass-panel {
    background: var(--glass-slate);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.95rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--green {
    color: var(--bg-obsidian);
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 24px var(--neon-green-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn--green:hover {
    color: var(--bg-obsidian);
    box-shadow: 0 0 36px var(--neon-green-glow), 0 8px 24px rgba(0,0,0,0.35);
}

.btn--cyan {
    color: var(--bg-obsidian);
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, #00B8D4 100%);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 24px var(--cyber-cyan-glow);
}

.btn--cyan:hover {
    color: var(--bg-obsidian);
    box-shadow: 0 0 36px var(--cyber-cyan-glow), 0 8px 24px rgba(0,0,0,0.35);
}

.btn--ghost {
    color: var(--text-primary);
    background: transparent;
    border-color: var(--glass-border);
}

.btn--ghost:hover {
    border-color: var(--cyber-cyan);
    color: var(--cyber-cyan);
    box-shadow: 0 0 16px var(--cyber-cyan-dim);
}

.btn--sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.75rem;
}

/* ——— Header ——— */
.site-header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: var(--container);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(12, 17, 28, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.brand-logo:hover {
    color: var(--text-primary);
}

.brand-logo__accent {
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 12px var(--neon-green-glow);
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav__list a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.main-nav__list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-cyan));
    transition: width 0.3s var(--ease-out);
}

.main-nav__list a:hover,
.main-nav__list a.is-active {
    color: var(--text-primary);
}

.main-nav__list a:hover::after,
.main-nav__list a.is-active::after {
    width: 100%;
}

.header-cta {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--bg-obsidian);
    background: var(--neon-green);
    box-shadow: 0 0 18px var(--neon-green-glow);
}

.header-cta:hover {
    color: var(--bg-obsidian);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ——— Block 1: Hero ——— */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-cinematic__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cinematic__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(6, 9, 15, 0.92) 0%, rgba(6, 9, 15, 0.55) 45%, rgba(6, 9, 15, 0.75) 100%),
        linear-gradient(to top, var(--bg-obsidian) 0%, transparent 35%);
}

.hero-cinematic__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.015) 2px,
        rgba(0, 229, 255, 0.015) 4px
    );
    pointer-events: none;
}

.hero-cinematic__content {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin-inline: auto;
    padding: calc(var(--header-height) + 4rem) 0 5rem;
}

.hero-cinematic__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-green);
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 102, 0.35);
    border-radius: 999px;
    background: rgba(0, 255, 102, 0.08);
}

.hero-cinematic__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    animation: blink-live 1.2s step-end infinite;
}

@keyframes blink-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-cinematic__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.25rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: 14ch;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.15);
}

.hero-cinematic__title span {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--cyber-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cinematic__lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 42ch;
    margin-bottom: 2.25rem;
}

.hero-cinematic__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cinematic__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat__value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cyber-cyan);
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
}

/* ——— Block 2: Bento Grid ——— */
.section-block {
    padding: 5rem 0;
    position: relative;
}

.section-block__head {
    margin-bottom: 2.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-box {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.bento-box:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-3px);
}

.bento-box--wide {
    grid-column: span 2;
}

.bento-box--hot {
    min-height: 280px;
}

.bento-box--hot .bento-box__match-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
}

.bento-box--hot .bento-box__match-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-box--hot > :not(.bento-box__match-bg):not(.bento-box__corner) {
    position: relative;
    z-index: 1;
}

.bento-box__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-left: 1px solid rgba(0, 255, 102, 0.2);
    border-bottom: 1px solid rgba(0, 255, 102, 0.2);
    border-bottom-left-radius: var(--radius-md);
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-green);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    background: var(--neon-green-dim);
    border: 1px solid rgba(0, 255, 102, 0.35);
    margin-bottom: 1rem;
}

.live-tag__pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    animation: blink-live 1s step-end infinite;
}

.hot-match__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hot-match__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.team-flag {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
}

.team-icon {
    --team-color: #00e5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f5f9ff;
    background: linear-gradient(135deg, var(--team-color), #0b101b);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    text-transform: uppercase;
}

.team-icon--lg {
    width: 44px;
    height: 44px;
    font-size: 0.58rem;
}

.team-icon--md {
    width: 26px;
    height: 26px;
    font-size: 0.47rem;
}

.team-icon--sm {
    width: 22px;
    height: 22px;
    font-size: 0.4rem;
}

.hot-match__team-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
}

.hot-match__score-wrap {
    text-align: center;
}

.score-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.15), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(0, 255, 102, 0.4);
    box-shadow: 0 0 30px var(--neon-green-dim);
    line-height: 1;
}

.match-minute {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--neon-green);
    letter-spacing: 0.12em;
    margin-top: 0.5rem;
}

.hot-match__comp {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-widget__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.stats-widget__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyber-cyan);
    box-shadow: 0 0 16px var(--cyber-cyan-dim);
}

.stats-widget__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.stats-widget__role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.possession-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.possession-chart svg {
    width: 120px;
    height: 120px;
}

.possession-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.possession-labels strong {
    color: var(--cyber-cyan);
}

.mini-table {
    width: 100%;
    font-size: 0.82rem;
}

.mini-table th,
.mini-table td {
    padding: 0.55rem 0.35rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mini-table th {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mini-table .pos {
    color: var(--cyber-cyan);
    font-weight: 700;
    width: 28px;
}

.mini-table .pts {
    text-align: right;
    font-weight: 700;
    color: var(--neon-green);
}

/* ——— Block 3: Featured Player ——— */
.player-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.player-split__visual {
    position: relative;
    overflow: hidden;
}

.player-split__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.1) saturate(0.9);
}

.player-split__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(6, 9, 15, 0.95) 100%);
}

.player-split__visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--neon-green), var(--cyber-cyan));
    z-index: 2;
    box-shadow: 0 0 20px var(--cyber-cyan-glow);
}

.player-split__content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--glass-slate);
    backdrop-filter: blur(12px);
}

.player-split__name {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.35rem;
}

.player-split__club {
    font-size: 0.9rem;
    color: var(--cyber-cyan);
    margin-bottom: 1.75rem;
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.stat-bar__head {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.stat-bar__head span:first-child {
    color: var(--text-secondary);
}

.stat-bar__head span:last-child {
    font-weight: 700;
    color: var(--neon-green);
}

.stat-bar__track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.stat-bar__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyber-cyan), var(--neon-green));
    box-shadow: 0 0 12px var(--neon-green-glow);
    transition: width 1.2s var(--ease-out);
}

/* ——— Block 4: Timeline Accordion ——— */
.timeline-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-panel {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out);
}

.timeline-panel.is-open {
    border-color: rgba(0, 229, 255, 0.3);
}

.timeline-panel__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-heading);
    text-align: left;
    transition: background 0.3s var(--ease-out);
}

.timeline-panel__trigger:hover {
    background: rgba(255,255,255,0.03);
}

.timeline-panel__label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-panel__day {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.timeline-panel--live .timeline-panel__day {
    background: var(--neon-green-dim);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.timeline-panel__title {
    font-size: 1.05rem;
    font-weight: 600;
}

.timeline-panel__count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.timeline-panel__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--cyber-cyan);
    transition: transform 0.35s var(--ease-out);
    flex-shrink: 0;
}

.timeline-panel.is-open .timeline-panel__icon {
    transform: rotate(45deg);
}

.timeline-panel__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.timeline-panel.is-open .timeline-panel__body {
    max-height: 600px;
}

.fixture-list {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.fixture-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: border-color 0.25s, background 0.25s;
}

.fixture-row:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.04);
}

.fixture-row__flags {
    display: flex;
    gap: 0.25rem;
}

.fixture-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
}

.fixture-row__match {
    font-size: 0.88rem;
    font-weight: 500;
}

.fixture-row__time {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.fixture-row__score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--neon-green);
    min-width: 48px;
    text-align: right;
}

.fixture-row__score--upcoming {
    color: var(--cyber-cyan);
}

/* ——— Block 5: Community Callout ——— */
.community-callout {
    position: relative;
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.community-callout__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.community-callout__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
}

.community-callout__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 102, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, rgba(11, 16, 27, 0.95) 0%, rgba(18, 25, 38, 0.85) 100%);
    z-index: 0;
}

.community-callout__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.community-callout__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-callout__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.community-callout__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.community-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.community-form input,
.community-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(6, 9, 15, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.community-form input:focus,
.community-form textarea:focus {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 0 3px var(--cyber-cyan-dim);
}

.community-form textarea {
    min-height: 90px;
    resize: vertical;
}

.community-form__note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.community-form__note a {
    color: var(--cyber-cyan);
    text-decoration: underline;
}

/* ——— Inner pages ——— */
.page-hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.page-hero--photo {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 3rem;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    border-bottom: none;
}

.page-hero--photo.page-hero--compact {
    min-height: 220px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, var(--bg-obsidian) 0%, rgba(6, 9, 15, 0.55) 45%, rgba(6, 9, 15, 0.35) 100%),
        linear-gradient(105deg, rgba(6, 9, 15, 0.88) 0%, rgba(6, 9, 15, 0.4) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-height) + 3rem) 0 3rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 60ch;
    font-size: 1.05rem;
}

.page-content {
    padding-bottom: 5rem;
}

.prose {
    max-width: 72ch;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
}

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose ul li {
    margin-bottom: 0.35rem;
}

.prose a {
    color: var(--cyber-cyan);
    text-decoration: underline;
}

/* ——— All Matches page ——— */
.matches-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.filter-chip {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
}

.filter-chip:hover,
.filter-chip.is-active {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: var(--neon-green-dim);
}

.matches-grid {
    display: grid;
    gap: 1rem;
}

.match-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.match-card:hover {
    transform: translateX(4px);
    border-color: rgba(0, 229, 255, 0.25);
}

.match-card__league {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.match-card__teams {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.match-card__team-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
}

.match-card__meta {
    text-align: right;
}

.match-card__status {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.match-card__status--live {
    color: var(--neon-green);
}

.match-card__status--ft {
    color: var(--text-muted);
}

.match-card__status--upcoming {
    color: var(--cyber-cyan);
}

.match-card__scoreline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

/* ——— Contact page ——— */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-panel {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(6, 9, 15, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 0 3px var(--cyber-cyan-dim);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-panel {
    padding: 0;
    overflow: hidden;
}

.contact-info-panel__photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.contact-info-panel__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-panel h2,
.contact-info-panel p {
    padding-inline: 2rem;
}

.contact-info-panel h2 {
    padding-top: 1.5rem;
}

.contact-info-panel p:last-child {
    padding-bottom: 2rem;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info-panel strong {
    color: var(--text-primary);
}

/* ——— Thank you ——— */
.thank-you-block {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 560px;
    margin: -4rem auto 0;
    position: relative;
    z-index: 2;
}

.thank-you-block__photo {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 102, 0.45);
    box-shadow: 0 0 30px var(--neon-green-dim);
}

.thank-you-block__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank-you-block__icon {
    display: none;
}

.thank-you-block h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.thank-you-block p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.thank-you-block__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ——— About features ——— */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-feature {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out);
}

.about-feature__photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.about-feature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.about-feature:hover .about-feature__photo img {
    transform: scale(1.05);
}

.about-feature h3,
.about-feature p {
    padding-inline: 1.75rem;
}

.about-feature h3 {
    padding-top: 1.25rem;
}

.about-feature p {
    padding-bottom: 1.75rem;
}

.about-feature:hover {
    transform: translateY(-4px);
}

.about-feature__icon {
    display: none;
}

.about-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ——— Brands strip ——— */
.brands-strip {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.brands-strip__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brands-strip__head .section-lead {
    margin-inline: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.25);
}

.brand-card__logo img {
    max-height: 48px;
    width: auto;
    margin-inline: auto;
    filter: brightness(1.05);
}

/* ——— Footer ——— */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
    background: rgba(4, 6, 10, 0.85);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 36ch;
}

.footer-nav__title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--cyber-cyan);
}

.regulator-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.regulator-link {
    opacity: 0.75;
    transition: opacity 0.25s;
}

.regulator-link:hover {
    opacity: 1;
}

.regulator-link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 70ch;
    margin-inline: auto;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--text-secondary);
}

.footer-copy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-box--wide {
        grid-column: span 2;
    }

    .player-split {
        grid-template-columns: 1fr;
    }

    .player-split__visual {
        min-height: 320px;
    }

    .player-split__visual::after {
        background: linear-gradient(to top, rgba(6, 9, 15, 0.95) 0%, transparent 50%);
    }

    .player-split__visual::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .community-callout__inner {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 28px);
        left: 1.25rem;
        right: 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem;
        background: rgba(10, 14, 24, 0.96);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav__list a {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .header-cta {
        text-align: center;
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-box--wide {
        grid-column: span 1;
    }

    .hero-cinematic__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-cinematic__actions {
        flex-direction: column;
    }

    .hero-cinematic__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .community-callout {
        padding: 2rem 1.5rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .fixture-row {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .fixture-row__time,
    .fixture-row__score {
        grid-column: 2;
    }

    .match-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .match-card__league {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .match-card__meta {
        text-align: center;
    }

    .marquee-editorial,
    .marquee-editorial--reverse {
        grid-template-columns: 1fr;
    }

    .magazine-grid {
        grid-template-columns: 1fr;
    }

    .responsible-banner {
        grid-template-columns: 1fr;
    }

    .help-resources-grid {
        grid-template-columns: 1fr;
    }

    .championships-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— Informations page ——— */
.marquee-editorial {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.marquee-editorial--reverse {
    grid-template-columns: 1fr 1.1fr;
}

.marquee-editorial__media {
    min-height: 280px;
    overflow: hidden;
}

.marquee-editorial__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.marquee-editorial__body {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marquee-editorial__body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.75rem 0;
    line-height: 1.15;
}

.marquee-editorial__body p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.info-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    background: var(--cyber-cyan-dim);
    color: var(--cyber-cyan);
    border: 1px solid rgba(0, 229, 255, 0.25);
}

.info-tag--green {
    background: var(--neon-green-dim);
    color: var(--neon-green);
    border-color: rgba(0, 255, 102, 0.3);
}

.link-arrow {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cyber-cyan);
}

.link-arrow:hover {
    color: var(--neon-green);
}

.link-arrow--light {
    color: var(--neon-green);
}

.hover-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hover-list__link {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.hover-list__link:hover {
    color: inherit;
    transform: translateX(4px);
}

.hover-list__index {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyber-cyan);
}

.hover-list__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.35rem 0;
}

.hover-list__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.hover-list__thumb {
    width: 88px;
    height: 66px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.hover-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-list__arrow {
    font-size: 1.25rem;
    color: var(--neon-green);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.magazine-cell {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.magazine-cell--accent {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.08), rgba(0, 229, 255, 0.06));
}

.magazine-cell__frame {
    padding: 1.5rem;
    flex: 1;
}

.magazine-cell__frame h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.magazine-cell__frame p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.magazine-cell__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.magazine-cell__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-block {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--neon-green);
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.responsible-inline {
    padding: 2.5rem;
    text-align: center;
}

.responsible-inline .section-lead {
    margin-inline: auto;
}

/* ——— Homepage extras ——— */
.championships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.championship-card {
    overflow: hidden;
    transition: transform 0.3s var(--ease-out);
}

.championship-card:hover {
    transform: translateY(-4px);
}

.championship-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.championship-card__body {
    padding: 1.25rem 1.5rem;
}

.championship-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.championship-card__body p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.responsible-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.responsible-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.responsible-banner__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.responsible-banner__content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.responsible-banner__content .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ——— Responsabilité page ——— */
.age-warning {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 255, 102, 0.35);
    background: var(--neon-green-dim);
}

.age-warning strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--neon-green);
}

.age-warning p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.help-resource-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    color: inherit;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.help-resource-card:hover {
    color: inherit;
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.35);
}

.help-resource-card__num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--cyber-cyan);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.help-resource-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.help-resource-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1rem;
}

.help-resource-card__cta {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neon-green);
}

.manifesto-prose {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.regulator-grid--page {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .championships-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .magazine-grid {
        grid-template-columns: 1fr;
    }

    .marquee-editorial,
    .marquee-editorial--reverse {
        grid-template-columns: 1fr;
    }

    .responsible-banner {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
