@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    color-scheme: dark;
    --bg: #050816;
    --bg-2: #091126;
    --panel: rgba(10, 16, 34, 0.86);
    --panel-strong: rgba(5, 10, 24, 0.94);
    --text: #eef3ff;
    --muted: #9db0d0;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(255, 255, 255, 0.2);
    --accent: #ffd400;
    --accent-2: #34d399;
    --accent-3: #38bdf8;
    --danger: #fb7185;
    --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 212, 0, 0.14), transparent 22%),
        radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.12), transparent 20%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    overflow-x: hidden;
}

body.site-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.03) 46% 50%, transparent 50% 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 12px);
    opacity: 0.55;
    mix-blend-mode: screen;
    z-index: 0;
}

body.site-body::after {
    content: "";
    position: fixed;
    inset: auto -6% -10% auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.18), rgba(255, 212, 0, 0) 66%);
    pointer-events: none;
    filter: blur(10px);
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

body.site-body:not(.is-ready) .reveal {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
}

body.site-body.is-ready .panel,
body.site-body.is-ready .version-card,
body.site-body.is-ready .match-card,
body.site-body.is-ready .stat {
    animation: pop-in 420ms ease both;
}

a {
    color: #b7d7ff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.shell {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(3, 7, 18, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(4, 10, 28, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.26);
}

.brand-logo {
    display: block;
    width: 82px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}

.brand-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
}

.brand-text {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 900;
    font-family: Oxanium, Inter, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    gap: 6px;
    margin-left: 4px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    color: #dbe4f5;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.lang-switch a.active {
    background: rgba(255, 212, 0, 0.16);
    color: #fff1a6;
}

.nav-links a {
    padding: 10px 14px;
    color: #e2e8f0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.06);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    transform: translateY(-1px);
    background: rgba(255, 212, 0, 0.12);
    border-color: rgba(255, 212, 0, 0.32);
    color: #fff1a6;
}

.hero {
    padding: 26px 0 12px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
}

.panel {
    background:
        linear-gradient(180deg, rgba(10, 16, 34, 0.92), rgba(6, 10, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.panel:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
}

.panel.pad {
    padding: 22px;
}

.title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-family: Oxanium, Inter, sans-serif;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.stat {
    padding: 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(12, 18, 36, 0.98), rgba(6, 10, 22, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.stat::after {
    content: "";
    position: absolute;
    right: -10%;
    top: -10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 60%);
    pointer-events: none;
}

.stat .value {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.stat .label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    margin: 18px 0 30px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-header h1,
.section-header h2,
.section-header h3 {
    margin: 0;
    letter-spacing: -0.02em;
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table.rank-table td,
table.rank-table th {
    vertical-align: middle;
}

thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

th,
td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

th {
    background: rgba(8, 13, 26, 0.96);
    color: #f8fafc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

tbody tr {
    transition: background 140ms ease, transform 140ms ease;
}

tbody tr:hover {
    background: rgba(56, 189, 248, 0.05);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.86rem;
}

.rank-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #7dd3fc;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.inline-person,
.inline-club {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.avatar,
.club-badge {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: grid;
    place-items: center;
}

.avatar img,
.club-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar span,
.club-badge span {
    font-weight: 900;
    color: #f8fafc;
    text-transform: uppercase;
}

.avatar-sm {
    width: 42px;
    height: 42px;
}

.club-badge {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 212, 0, 0.22), rgba(9, 15, 31, 0.96));
}

.player-name-link,
.club-name-link {
    display: inline-block;
    max-width: 100%;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-name-link {
    font-size: 1rem;
}

.club-name-link {
    font-size: 0.98rem;
}

.clip-form-list {
    display: grid;
    gap: 10px;
}

.clip-form-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}

.clip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.clip-card {
    padding: 12px;
    border-radius: 18px;
    background: rgba(4, 10, 24, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.clip-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    display: block;
}

.clip-caption {
    margin-top: 10px;
    font-weight: 700;
    color: #dbeafe;
}

.clip-link-fallback {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.88);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.announcement-backdrop {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    z-index: 220;
}

.announcement-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.announcement-modal {
    width: min(520px, 100%);
    padding: 24px 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 16, 34, 0.98), rgba(4, 8, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.announcement-kicker {
    color: #ffd400;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.announcement-modal h3 {
    margin: 0 0 10px;
    font-family: Oxanium, Inter, sans-serif;
}

.announcement-message {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    white-space: pre-line;
}

.announcement-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.version-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 122px;
    padding: 16px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(12, 18, 36, 0.98), rgba(4, 8, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.version-card:hover,
.version-card.selected {
    transform: translateY(-2px);
    border-color: rgba(255, 212, 0, 0.65);
    box-shadow: 0 14px 30px rgba(255, 212, 0, 0.08);
}

.version-badge {
    font-size: 1.22rem;
    font-weight: 900;
    color: #fde047;
}

.version-label {
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #d6e2fa;
    font-size: 0.92rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 10, 24, 0.94);
    color: var(--text);
    padding: 12px 14px;
    outline: none;
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    text-transform: none;
    transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover,
button:hover {
    transform: translateY(-1px);
}

.btn:active,
button:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #ffd400, #ff9800);
    color: #121212;
    box-shadow: 0 14px 28px rgba(255, 180, 0, 0.18);
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(24, 34, 58, 0.98), rgba(10, 16, 34, 0.98));
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn-danger {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(190, 18, 60, 0.92));
    color: #fff;
}

.notice {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.notice.error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.22);
}

.notice.success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.24);
}

.tiny {
    color: var(--muted);
    font-size: 0.9rem;
}

.match-card {
    padding: 16px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 212, 0, 0.08), transparent 35%),
        linear-gradient(180deg, rgba(12, 18, 36, 0.98), rgba(5, 10, 22, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.score {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.sport-card {
    position: relative;
    overflow: hidden;
}

.sport-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -20% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.12), transparent 65%);
    pointer-events: none;
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
    z-index: 120;
}

.toast {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
    background: rgba(8, 13, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.toast-visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-hiding {
    transform: translateY(8px);
    opacity: 0;
}

.toast-success {
    border-color: rgba(34, 197, 94, 0.28);
}

.toast-danger {
    border-color: rgba(248, 113, 113, 0.32);
}

.toast-info {
    border-color: rgba(56, 189, 248, 0.28);
}

.toast-title {
    font-size: 0.76rem;
    color: #ffd400;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
}

.toast-message {
    color: #eff6ff;
    line-height: 1.5;
}

.toast-close {
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.confirm-backdrop {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    z-index: 200;
}

.confirm-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.confirm-modal {
    width: min(520px, 100%);
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(10, 16, 34, 0.98), rgba(4, 8, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.confirm-kicker {
    color: #ffd400;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.confirm-modal h3 {
    margin: 0 0 8px;
}

.confirm-message {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.tournament-backdrop {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 7, 18, 0.78);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
    z-index: 210;
}

.tournament-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.tournament-modal {
    width: min(430px, 100%);
    padding: 22px 20px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 251, 0.98));
    color: #111827;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
    transform: translateY(10px) scale(0.985);
    transition: transform 180ms ease;
}

.tournament-backdrop.show .tournament-modal {
    transform: translateY(0) scale(1);
}

.tournament-badge {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.tournament-modal h3 {
    margin: 0 0 10px;
    color: #111827;
    font-family: Oxanium, Inter, sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
}

.tournament-message {
    margin: 0;
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
    white-space: pre-line;
}

.tournament-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.tournament-actions .btn {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
}

.tournament-link {
    text-decoration: none;
}

.tournament-close {
    background: #2f2f33;
    color: #fff;
    border-color: rgba(0, 0, 0, 0.22);
}

.tournament-close:hover,
.tournament-link:hover {
    text-decoration: none;
}

.hero-grid .panel:first-child {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 212, 0, 0.12), transparent 26%),
        radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(10, 16, 34, 0.96), rgba(4, 8, 18, 0.98));
}

.hero-grid .panel:last-child {
    background:
        linear-gradient(180deg, rgba(9, 15, 31, 0.96), rgba(4, 8, 18, 0.98));
}

.panel h1,
.panel h2,
.panel h3 {
    font-family: Oxanium, Inter, sans-serif;
}

.panel a:not(.btn):hover {
    color: #fff1a6;
}

.card-link,
.nav-links a,
.version-card,
.sport-chip {
    position: relative;
    overflow: hidden;
}

.card-link::after,
.nav-links a::after,
.version-card::after,
.sport-chip::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.9), transparent);
    transform: translateX(-100%);
    transition: transform 220ms ease;
}

.card-link:hover::after,
.nav-links a:hover::after,
.version-card:hover::after,
.sport-chip:hover::after {
    transform: translateX(0);
}

.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-metric {
    min-width: 140px;
}

.hero-metric .value {
    font-size: 1.9rem;
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 340ms ease, transform 340ms ease;
}

.reveal.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-spotlight,
.sport-banner {
    position: relative;
    overflow: hidden;
}

.hero-spotlight::before,
.sport-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(255, 212, 0, 0.12), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%);
    pointer-events: none;
}

.sport-banner {
    min-height: 220px;
}

.sport-banner .banner-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.sport-banner .banner-copy {
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.75;
}

.sport-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sport-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.18);
    color: #fff7bf;
    font-weight: 700;
}

.hero-surface {
    background:
        radial-gradient(circle at top left, rgba(255, 212, 0, 0.11), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(10, 16, 34, 0.94), rgba(5, 10, 22, 0.98));
}
/* Mobile Navigation Sidebar & Toggle Styles */
.sidebar-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.sidebar-title {
    font-family: Oxanium, Inter, sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.sidebar-close {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    z-index: 50;
    transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
    background: rgba(255, 212, 0, 0.12);
    border-color: rgba(255, 212, 0, 0.32);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@media (max-width: 960px) {
    .nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 100;
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .form-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .nav-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .brand {
        width: auto;
        padding: 6px 10px;
    }

    .brand-logo {
        width: 64px;
        height: 26px;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .sidebar-header {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        background: var(--panel-strong);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 15px 0 40px rgba(0, 0, 0, 0.6);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        padding: 20px;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(148, 163, 184, 0.05);
        border: 1px solid transparent;
        text-align: left;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 212, 0, 0.1);
        border-color: rgba(255, 212, 0, 0.25);
        transform: none;
    }

    .lang-switch {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: auto;
        justify-content: space-between;
        display: flex;
        gap: 8px;
    }

    .lang-switch a {
        flex: 1;
        text-align: center;
        padding: 10px !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 18px, 1240px);
    }

    .section {
        margin: 14px 0 24px;
    }

    .panel.pad {
        padding: 18px;
    }

    th,
    td {
        padding: 12px 10px;
    }

    .confirm-actions {
        flex-direction: column-reverse;
    }

    .toast-stack {
        right: 10px;
        left: 10px;
        width: auto;
    }

    .clip-form-row {
        grid-template-columns: 1fr;
    }

    .announcement-actions,
    .lang-switch {
        width: 100%;
    }

    .lang-switch {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
}
