:root {
    color-scheme: light;
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --fg: #16201B;
    --muted: #6B7566;
    --border: #E1E4DC;

    --accent: #1F7A4D;
    --accent-hover: #175C3A;

    --gold: #C88A1E;
    --gold-hover: #A66F15;
    --gold-tint: #FBF1DE;
    --gold-on-dark: #E4B54A;
    --gold-on-dark-hover: #F2CD82;

    --error: #C23B22;
    --error-tint: #FBE9E5;
    --success: var(--accent);
    --success-tint: #ECFDF3;

    --hero-1: #123D28;
    --hero-2: #15462E;
    --hero-muted: #BFE3CE;

    --radius-card: 12px;
    --radius-control: 8px;

    --shadow-card: 0 1px 2px rgba(22, 32, 27, 0.04), 0 4px 12px rgba(22, 32, 27, 0.05);
    --shadow-card-lift: 0 8px 24px rgba(22, 32, 27, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.5;
}

.mono {
    font-family: "Space Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Nav */

.nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.nav .brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--fg);
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(155deg, var(--accent), var(--hero-1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav nav a,
.nav nav .link-button {
    background: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}

.nav nav a:hover,
.nav nav .link-button:hover {
    color: var(--accent-hover);
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.inline-form {
    display: inline;
}

/* Forms */

.form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 360px;
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fg);
}

.checkbox-label {
    flex-direction: row !important;
    align-items: center;
    gap: 0.55rem !important;
    font-weight: 400 !important;
    min-height: 44px;
    margin: -0.5rem 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form input {
    height: 44px;
    padding: 0 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-control);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--fg);
}

.form input:focus,
.score-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.12);
}

.score-input {
    width: 3rem;
    height: 44px;
    padding: 0 0.4rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-control);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
}

button[type="submit"] {
    background: var(--accent);
    color: #fff;
    border: none;
    min-height: 44px;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-control);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(31, 122, 77, 0.28);
    width: fit-content;
}

button[type="submit"]:hover {
    background: var(--accent-hover);
}

.flash {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-control);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-error {
    background: var(--error-tint);
    color: var(--error);
}

.flash-success {
    background: var(--success-tint);
    color: var(--success);
}

.badge {
    display: inline-block;
    background: var(--border);
    color: var(--muted);
    border-radius: 999px;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.fixtures-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.fixtures-table th,
.fixtures-table td {
    text-align: left;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.fixtures-table th {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.6rem 1.3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--fg);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.empty-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--muted);
}

.empty-card p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.leagues-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem 2rem;
}

.league-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.9rem;
}

.league-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: var(--fg);
}

.league-card:hover {
    border-color: var(--accent);
}

.league-card-name {
    font-weight: 700;
    font-size: 1rem;
}

.league-card-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* Hero band — full-bleed dark pitch-green header with a turf-stripe texture,
   used at the top of primary content pages (fixtures, leaderboard). */

.hero-band {
    background-image:
        radial-gradient(130% 200% at 12% -30%, rgba(255, 255, 255, 0.10), transparent 55%),
        repeating-linear-gradient(115deg, var(--hero-1) 0px, var(--hero-1) 26px, var(--hero-2) 26px, var(--hero-2) 52px);
}

.hero-band-inner {
    padding: 2rem 0 2.4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-eyebrow {
    font-size: 0.78rem;
    color: var(--hero-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-title {
    margin: 0.3rem 0 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-on-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.hero-link:hover {
    color: var(--gold-on-dark-hover);
}

.hero-flash {
    margin: 1rem 0 0;
}

/* Fixtures & Predictions page */

.fx-empty {
    color: var(--muted);
    padding: 1.5rem 0;
}

.tabs-card {
    margin-top: -1.3rem;
    position: relative;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card-lift);
    padding: 0.4rem 0.6rem;
    display: flex;
    gap: 0.15rem;
    overflow-x: auto;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.5rem 0.85rem;
    background: none;
    border: none;
    border-radius: var(--radius-control);
    color: var(--muted);
    font-family: inherit;
    font-size: 0.87rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.tab:hover {
    color: var(--fg);
}

.tab.active {
    background: var(--hero-1);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(18, 61, 40, 0.3);
}

.tab.empty {
    opacity: 0.6;
}

.crest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--border);
    color: var(--muted);
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.tab.active .crest {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.round-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.6rem 0 1.5rem;
    position: relative;
}

.round-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.round-nav-btn:hover {
    background: var(--bg);
}

.round-nav-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.jump-details {
    position: relative;
}

.jump-details summary {
    list-style: none;
    cursor: pointer;
}

.jump-details summary::-webkit-details-marker {
    display: none;
}

.round-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.4rem 1.4rem;
    border-radius: var(--radius-control);
    border: 1px solid transparent;
    background: var(--surface);
}

.jump-details[open] .round-label {
    border-color: var(--border);
    box-shadow: 0 1px 2px rgba(22, 32, 27, 0.05);
}

.round-label-main {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.round-label-dates {
    font-size: 0.78rem;
    color: var(--muted);
}

.jump-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: 90vw;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
    overflow: hidden;
    z-index: 10;
}

.jump-panel-title {
    padding: 0.7rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.jump-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    color: var(--fg);
    text-decoration: none;
}

.jump-row:hover {
    background: var(--bg);
}

.jump-row.selected {
    background: var(--gold-tint);
}

.jump-row.selected .jump-row-label {
    color: var(--gold-hover);
    font-weight: 700;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-scored {
    background: var(--success-tint);
    color: var(--success);
}

.badge-predicted {
    background: var(--gold-tint);
    color: var(--gold-hover);
}

.badge-open {
    background: var(--error-tint);
    color: var(--error);
}

.badge-closed {
    background: var(--border);
    color: var(--muted);
    font-weight: 400;
}

.badge-locked {
    background: var(--border);
    color: var(--muted);
    font-weight: 400;
}

.match-list {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.match-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.match-card.banker {
    border-color: var(--gold);
    box-shadow: 0 2px 6px rgba(200, 138, 30, 0.1), 0 10px 22px rgba(200, 138, 30, 0.14);
}

.banker-ribbon {
    position: absolute;
    top: -1px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 0 0 6px 6px;
}

.match-card.locked {
    background: var(--border);
    box-shadow: none;
}

.match-card-body {
    flex: 1;
    min-width: 0;
}

.match-card.banker .match-card-body {
    padding-top: 0.5rem;
}

.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.match-row + .match-row {
    margin-top: 0.45rem;
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.locked .team-name,
.locked .score-static {
    color: var(--muted);
}

.score-static {
    font-weight: 700;
    font-size: 1.1rem;
    width: 3rem;
    text-align: center;
}

.match-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.55rem;
}

.kickoff-time {
    font-size: 0.78rem;
    color: var(--muted);
}

.banker-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.banker-toggle svg {
    fill: none;
    stroke: var(--muted);
}

.banker-toggle.selected {
    border-color: var(--gold);
    background: var(--gold-tint);
}

.banker-toggle.selected svg {
    fill: var(--gold);
    stroke: var(--gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.save-bar {
    position: sticky;
    bottom: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    margin-top: 1.6rem;
    display: flex;
    justify-content: center;
}

.save-bar button[type="submit"] {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* Leaderboard page */

.leaderboard-wrap {
    max-width: 720px;
    margin: -1.3rem auto 2rem;
    position: relative;
    z-index: 2;
}

.leaderboard-spotlight {
    background: linear-gradient(180deg, var(--gold-tint), var(--surface) 60%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-card);
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 6px rgba(200, 138, 30, 0.12), 0 14px 30px rgba(200, 138, 30, 0.18);
    margin-bottom: 0.7rem;
}

.leaderboard-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.leaderboard-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.leaderboard-row:hover {
    background: var(--bg);
}

.leaderboard-rank {
    width: 26px;
    text-align: center;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.92rem;
}

.leaderboard-spotlight .leaderboard-rank {
    color: var(--gold-hover);
}

.leaderboard-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--muted);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.leaderboard-spotlight .leaderboard-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    background: linear-gradient(155deg, var(--gold-on-dark), var(--gold-hover));
    box-shadow: 0 2px 5px rgba(166, 111, 21, 0.35);
}

.leaderboard-name {
    font-weight: 600;
    font-size: 0.96rem;
}

.leaderboard-spotlight .leaderboard-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.leaderboard-sublabel {
    font-size: 0.8rem;
    color: var(--gold-hover);
    font-weight: 600;
}

.leaderboard-points {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--fg);
}

.leaderboard-spotlight .leaderboard-points {
    font-size: 1.85rem;
    letter-spacing: -0.02em;
}

/* Auth split-screen (login / register) */

.auth-shell {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.auth-hero {
    flex: 1 1 420px;
    background-image:
        radial-gradient(120% 160% at 20% 0%, rgba(255, 255, 255, 0.10), transparent 55%),
        repeating-linear-gradient(115deg, var(--hero-1) 0px, var(--hero-1) 26px, var(--hero-2) 26px, var(--hero-2) 52px);
    padding: 2.2rem 2.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.2rem;
}

.auth-hero .brand {
    color: #fff;
}

.auth-hero .brand-mark {
    background: rgba(255, 255, 255, 0.14);
}

.auth-hero-title {
    margin: 0 0 0.8rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.15;
}

.auth-hero-copy {
    margin: 0;
    font-size: 0.98rem;
    color: var(--hero-muted);
    line-height: 1.6;
    max-width: 380px;
}

.auth-hero-foot {
    font-size: 0.78rem;
    color: var(--hero-muted);
}

.auth-ticket {
    margin-top: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    padding: 1rem 1.2rem;
    transform: rotate(-2deg);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    width: fit-content;
}

.auth-ticket-label {
    font-size: 0.68rem;
    color: var(--hero-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.auth-ticket-score {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.auth-ticket-score .result {
    color: var(--gold-on-dark);
}

.auth-ticket-tag {
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--gold);
    color: var(--hero-1);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.12rem 0.5rem;
    border-radius: 5px;
}

.auth-form-panel {
    flex: 1 1 380px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.auth-form-inner {
    width: 100%;
    max-width: 360px;
}

.auth-form-title {
    margin: 0 0 0.3rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.auth-form-subtitle {
    margin: 0 0 1.7rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.auth-form-foot {
    margin: 1.4rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.auth-form-foot a {
    font-weight: 600;
}

/* Simple form pages (create/join league) — small hero + a floating card,
   reusing the same "card overlaps the hero band" language as tabs-card /
   leaderboard-spotlight. */

.form-card {
    max-width: 420px;
    margin: -1.3rem auto 2rem;
    position: relative;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card-lift);
    padding: 2rem;
}

.form-card .form {
    max-width: none;
}

/* League detail page */

.invite-box {
    background: var(--gold-tint);
    border: 1px solid var(--gold);
    border-radius: var(--radius-card);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.invite-box-label {
    font-size: 0.72rem;
    color: var(--gold-hover);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.invite-box-code {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold-hover);
    letter-spacing: 0.06em;
}

.section-heading {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.quick-nav-tile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    color: var(--fg);
}

.quick-nav-tile:hover {
    border-color: var(--accent);
}

.quick-nav-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--success-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-nav-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.quick-nav-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

.member-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.member-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.9rem 0.3rem 0.3rem;
}

.member-chip .leaderboard-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
}

.member-chip-name {
    font-size: 0.88rem;
    font-weight: 600;
}

/* Table-based pages (prediction history) */

.table-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow-x: auto;
}

.table-card .fixtures-table {
    margin-bottom: 0;
}

.table-card .fixtures-table th,
.table-card .fixtures-table td {
    padding: 0.8rem 1.1rem;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .auth-hero {
        padding: 1.8rem;
    }

    .auth-hero-title {
        font-size: 1.6rem;
    }

    .auth-ticket {
        transform: none;
    }
}
