:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --text: #16181d;
    --muted: #727782;
    --line: #e5e7eb;
    --line-strong: #d8dbe1;
    --accent: #19704a;
    --accent-soft: #eef8f2;
    --danger: #c83e3e;
    --warning: #a76b00;
    --header-height: 68px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.45;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(1380px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-size: 1.22rem;
    font-weight: 750;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.brand-mark {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 26px;
}

.main-nav a {
    display: flex;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
    border-bottom: 2px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    border-bottom-color: var(--accent);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.page-shell {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
    padding: calc(var(--header-height) + 38px) 0 48px;
}

.toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.eyebrow {
    margin: 0 0 4px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box input {
    width: min(340px, 40vw);
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    background: var(--surface);
    color: var(--text);
    outline: none;
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(25, 112, 74, 0.08);
}

.text-button {
    height: 42px;
    padding: 0 4px;
    color: var(--accent);
    border: 0;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.table-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.match-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.match-table th {
    padding: 12px 14px;
    color: var(--muted);
    background: #fafafa;
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
}

.match-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.match-table tbody tr:last-child td {
    border-bottom: 0;
}

.match-table tbody tr:hover {
    background: #fcfcfc;
}

.col-status { width: 78px; }
.col-match { width: 31%; }
.col-score { width: 90px; text-align: center !important; }
.col-stat { width: 112px; text-align: center !important; }
.col-missing { width: 132px; text-align: center !important; }
.col-fav { width: 54px; text-align: center !important; }

.status-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.status-live {
    color: var(--danger);
    font-size: 0.76rem;
    font-weight: 800;
}

.status-time {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.match-meta {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.73rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.teams {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.teams span {
    min-width: 0;
}

.team-home,
.team-away {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-separator {
    color: var(--muted);
    font-weight: 500;
}

.score {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.stat-pair {
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.stat-pair strong {
    font-weight: 750;
}

.missing-value {
    display: inline-flex;
    min-width: 56px;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.missing-value.low {
    background: #f6f1e7;
    color: var(--warning);
}

.favourite-button {
    border: 0;
    background: transparent;
    color: #b6bac2;
    font-size: 1.28rem;
    cursor: pointer;
}

.favourite-button.active {
    color: #d09a17;
}

.loading-state,
.empty-state {
    padding: 54px 20px;
    color: var(--muted);
    text-align: center;
}

.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;
}

@media (max-width: 920px) {
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        height: auto;
        padding: 8px 16px 14px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        min-height: 46px;
        border-bottom: 0;
        border-left: 2px solid transparent;
        padding-left: 14px;
    }

    .main-nav a.active {
        border-left-color: var(--accent);
    }

    .menu-toggle {
        display: block;
    }

    .toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .toolbar-actions {
        width: 100%;
    }

    .search-box {
        flex: 1;
    }

    .search-box input {
        width: 100%;
    }

    .col-shots,
    .col-sot {
        display: none;
    }

    .col-match { width: auto; }
}

@media (max-width: 640px) {
    :root {
        --header-height: 60px;
    }

    .header-inner,
    .page-shell {
        width: min(100% - 22px, 1380px);
    }

    .page-shell {
        padding-top: calc(var(--header-height) + 26px);
    }

    .table-panel {
        border-radius: 8px;
    }

    .match-table thead {
        display: none;
    }

    .match-table,
    .match-table tbody,
    .match-table tr,
    .match-table td {
        display: block;
        width: 100%;
    }

    .match-table tr {
        position: relative;
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr) 62px;
        gap: 7px 10px;
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
    }

    .match-table td {
        padding: 0;
        border: 0;
    }

    .match-table tbody tr:last-child {
        border-bottom: 0;
    }

    .cell-status {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .cell-match {
        grid-column: 2;
        grid-row: 1;
    }

    .cell-score {
        grid-column: 3;
        grid-row: 1;
        text-align: right;
    }

    .cell-xg {
        grid-column: 2;
        grid-row: 2;
        text-align: left !important;
        color: var(--muted);
        font-size: 0.82rem;
    }

    .cell-missing {
        grid-column: 3;
        grid-row: 2;
        text-align: right !important;
    }

    .cell-fav {
        position: absolute;
        right: 6px;
        top: 38px;
        transform: translateY(-50%);
        display: none;
    }

    .match-meta {
        font-size: 0.69rem;
    }

    .teams {
        display: block;
        line-height: 1.35;
    }

    .team-separator {
        display: none;
    }

    .team-home,
    .team-away {
        display: block;
    }

    .score {
        font-size: 1rem;
    }

    .missing-value {
        min-width: 46px;
        padding: 4px 7px;
        font-size: 0.82rem;
    }
}

/* Live-update feedback ---------------------------------------------------- */
.match-row-changed {
    animation: changed-row-pulse 8s ease-out forwards;
}

.stat-value-changed {
    position: relative;
    animation: changed-value-pulse 8s ease-out forwards;
}

@keyframes changed-row-pulse {
    0%, 35% {
        background: #f5fbf7;
    }
    100% {
        background: transparent;
    }
}

@keyframes changed-value-pulse {
    0%, 35% {
        background: #dff5e7;
        box-shadow: inset 0 0 0 1px #b7e3c6;
    }
    100% {
        background: transparent;
        box-shadow: inset 0 0 0 1px transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .match-row-changed,
    .stat-value-changed {
        animation: none;
    }

    .match-row-changed {
        background: #f5fbf7;
    }

    .stat-value-changed {
        background: #dff5e7;
    }
}

.logout-link {
    color: var(--muted) !important;
}

.login-page {
    min-height: 100vh;
    background: var(--bg);
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 18px;
}

.login-panel {
    width: min(100%, 410px);
    padding: 38px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.login-brand {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 780;
    letter-spacing: -0.045em;
}

.login-heading {
    margin-bottom: 25px;
}

.login-heading h1 {
    font-size: 2rem;
}

.login-heading > p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.login-form {
    display: grid;
    gap: 18px;
}

.login-form label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
}

.login-form input {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    outline: none;
}

.login-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(25, 112, 74, 0.08);
}

.login-form button {
    height: 46px;
    margin-top: 4px;
    color: #fff;
    background: var(--accent);
    border: 0;
    border-radius: 7px;
    font-weight: 750;
    cursor: pointer;
}

.login-form button:hover {
    filter: brightness(0.96);
}

.login-error {
    margin: 0 0 18px;
    padding: 11px 12px;
    color: #8f2929;
    background: #fff3f3;
    border: 1px solid #f1cccc;
    border-radius: 7px;
    font-size: 0.86rem;
}

@media (max-width: 520px) {
    .login-panel {
        padding: 30px 24px;
    }
    .refresh-status {
    width: 100%;
    order: 3;
}

.refresh-status-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
}

.refresh-status {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: #737b87;
    font-size: 12px;
}

.refresh-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
}

.refresh-status-dot.online {
    background: #22a06b;
}

.refresh-status-dot.loading {
    background: #d99a21;
    animation: refresh-pulse 1s infinite alternate;
}

.refresh-status-dot.offline {
    background: #d64545;
}

.refresh-divider {
    margin: 0 3px;
    color: #b1b6bd;
}

@keyframes refresh-pulse {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}.match-row-link { cursor: pointer; }
.match-row-link:hover { background: #f7fbf8 !important; }
.detail-shell { max-width: 1180px; }
.detail-loading { padding: 80px 0; text-align:center; color:var(--muted); }
.detail-hero,.detail-section { background:var(--surface); border:1px solid var(--line); border-radius:10px; }
.detail-hero { padding:28px; margin-bottom:18px; }
.detail-competition { text-align:center; color:var(--muted); font-size:.82rem; margin-bottom:22px; }
.detail-matchup { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:28px; }
.detail-team h1 { font-size:clamp(1.35rem,3vw,2.15rem); }
.detail-team-away { text-align:right; }
.detail-side { display:block; color:var(--muted); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:5px; }
.detail-score-wrap { text-align:center; min-width:150px; }
.detail-status { color:var(--danger); font-size:.78rem; font-weight:800; min-height:20px; }
.detail-score { font-size:clamp(2rem,5vw,3.4rem); font-weight:800; letter-spacing:-.06em; }
.detail-kickoff { color:var(--muted); font-size:.78rem; }
.detail-summary { margin-top:26px; border-top:1px solid var(--line); padding-top:10px; }
.detail-section { padding:24px; margin-bottom:18px; }
.section-heading { margin-bottom:18px; }
.section-heading h2 { margin:0; font-size:1.25rem; }
.stats-block { border-top:1px solid var(--line); }
.stats-block + .stats-block { margin-top:22px; }
.stats-block-title { padding:12px 0 6px; font-weight:800; font-size:.82rem; color:var(--accent); }
.comparison-row { display:grid; grid-template-columns:minmax(130px,1fr) 90px 20px 90px; align-items:center; gap:8px; padding:9px 0; border-bottom:1px solid var(--line); }
.comparison-row > strong { text-align:center; font-variant-numeric:tabular-nums; }
.comparison-row > span { text-align:center; color:var(--muted); }
.detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.detail-card { border:1px solid var(--line); border-radius:8px; overflow:hidden; }
.detail-card h3 { margin:0; padding:13px 15px; background:#fafafa; border-bottom:1px solid var(--line); font-size:.9rem; }
.metric-row { display:flex; justify-content:space-between; gap:15px; padding:9px 14px; border-bottom:1px solid var(--line); font-size:.8rem; }
.metric-row:last-child { border-bottom:0; }.metric-row span { color:var(--muted); }.metric-row strong { text-align:right; }
.timeline-row { display:grid; grid-template-columns:52px 28px 1fr; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); font-size:.82rem; }
.timeline-row time { font-weight:800; }.timeline-row div div { color:var(--muted); margin-top:2px; }.event-icon{text-align:center;}
@media(max-width:760px){.detail-matchup{grid-template-columns:1fr auto 1fr;gap:10px}.detail-hero{padding:20px 14px}.detail-section{padding:18px 14px}.detail-score-wrap{min-width:86px}.detail-team h1{font-size:1.05rem}.detail-grid{grid-template-columns:1fr}.comparison-row{grid-template-columns:minmax(100px,1fr) 58px 14px 58px;font-size:.8rem}.detail-nav{display:flex!important;gap:14px}.detail-nav a{font-size:.78rem}}

/* Match explanations */
.match-explanation-compact {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin-top: 5px;
    padding: 3px 7px;
    border: 1px solid #dce5df;
    border-radius: 999px;
    background: #f5faf7;
    color: #316246;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
}

.explanation-panel {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border, #e5e7eb);
}

.match-explanations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin-top: 9px;
}

.match-explanation {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #334155;
    font-size: 14px;
    line-height: 1.45;
}

.explanation-mark {
    flex: 0 0 auto;
    color: #17844f;
    font-weight: 800;
}

@media (max-width: 760px) {
    .match-explanations {
        grid-template-columns: 1fr;
    }

    .match-explanation-compact {
        font-size: 10px;
    }
}

/* Mobile usability improvements ----------------------------------------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(15, 23, 42, 0.36);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 920px) {
    body.nav-open {
        overflow: hidden;
    }

    .main-nav,
    .detail-nav {
        position: fixed;
        z-index: 1100;
        top: 0;
        right: 0;
        left: auto;
        width: min(82vw, 320px);
        height: 100dvh;
        display: flex;
        padding: calc(var(--header-height) + 18px) 22px 24px;
        background: var(--surface);
        border: 0;
        border-left: 1px solid var(--line);
        box-shadow: -18px 0 40px rgba(15, 23, 42, .12);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        transform: translateX(105%);
        transition: transform .22s ease;
    }

    .main-nav.open,
    .detail-nav.open {
        transform: translateX(0);
    }

    .main-nav a,
    .detail-nav a {
        min-height: 48px;
        padding: 0 12px;
        border: 0;
        border-radius: 7px;
    }

    .main-nav a:hover,
    .main-nav a.active,
    .detail-nav a:hover {
        background: var(--accent-soft);
        color: var(--accent);
    }

    .menu-toggle {
        position: relative;
        z-index: 1110;
    }

    .toolbar-actions {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px 14px;
    }

    .search-box {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
    }

    .search-box input {
        width: 100%;
        min-width: 0;
    }

    .text-button {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }

    .refresh-status {
        grid-column: 2;
        grid-row: 2;
        width: auto;
        min-width: 0;
        order: initial;
        white-space: normal;
    }

    .refresh-status-text {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .toolbar {
        gap: 20px;
    }

    .toolbar-actions {
        align-items: center;
    }

    .table-panel {
        background: transparent;
        border: 0;
        overflow: visible;
    }

    .match-table tbody {
        display: grid;
        gap: 12px;
    }

    .match-table tr {
        grid-template-columns: 68px minmax(0, 1fr) auto;
        gap: 8px 12px;
        padding: 15px 14px 14px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 10px;
    }

    .match-table tbody tr:last-child {
        border-bottom: 1px solid var(--line);
    }

    .cell-status {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .cell-match {
        grid-column: 2;
        grid-row: 1;
    }

    .cell-score {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }

    .cell-xg,
    .col-shots,
    .col-sot,
    .cell-missing {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        grid-column: 2 / 4;
        width: 100%;
        padding-top: 8px !important;
        border-top: 1px solid var(--line) !important;
        color: var(--text);
        text-align: right !important;
        font-size: .86rem;
    }

    .cell-xg { grid-row: 2; }
    .col-shots { grid-row: 3; }
    .col-sot { grid-row: 4; }
    .cell-missing { grid-row: 5; }

    .cell-xg::before,
    .col-shots::before,
    .col-sot::before,
    .cell-missing::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: .76rem;
        font-weight: 700;
        letter-spacing: .02em;
    }

    .cell-fav {
        display: block;
        top: 56px;
        right: auto;
        left: -2px;
        transform: none;
    }

    .favourite-button {
        padding: 4px;
    }

    .status-block {
        gap: 2px;
    }

    .status-time {
        font-size: .85rem;
    }

    .teams {
        line-height: 1.3;
    }

    .team-home,
    .team-away {
        font-size: .98rem;
    }

    .match-explanation-compact {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-top: 8px;
        border-radius: 7px;
    }

    .missing-value {
        min-width: 54px;
    }

    .detail-shell {
        padding-top: calc(var(--header-height) + 18px);
    }

    .detail-hero {
        padding-top: 18px;
    }

    .detail-matchup {
        align-items: start;
    }

    .detail-team h1 {
        overflow-wrap: anywhere;
    }
}
@media (max-width: 920px) {
    .site-header {
        z-index: 1200;
    }

    .nav-overlay {
        z-index: 1100;
        pointer-events: none;
    }

    .nav-overlay.open {
        pointer-events: auto;
    }

    .main-nav,
    .detail-nav {
        z-index: 1210;
        pointer-events: auto;
    }

    .main-nav a,
    .detail-nav a {
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        z-index: 1220;
    }
}


.access-request-card {
    width: min(100%, 680px);
    margin: 32px auto 0;
    padding: 36px;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 18px;
}

.access-request-intro {
    margin-bottom: 30px;
}

.access-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #18764f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.access-request-card h2 {
    margin: 0 0 14px;
    color: #17191f;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

.access-description {
    margin: 0;
    color: #69717e;
    line-height: 1.7;
}

.access-features {
    display: grid;
    gap: 11px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.access-features li {
    position: relative;
    padding-left: 27px;
    color: #343a44;
    line-height: 1.5;
}

.access-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #1c8a5c;
    font-weight: 800;
}

.access-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid #e3e6ea;
}

.access-price-value {
    color: #18764f;
    font-size: 34px;
    font-weight: 800;
}

.access-price-period {
    color: #737b87;
    font-size: 15px;
}

.access-request-form {
    display: grid;
    gap: 20px;
}

.access-request-form .form-field {
    display: grid;
    gap: 8px;
}

.access-request-form label {
    color: #303640;
    font-size: 14px;
    font-weight: 700;
}

.access-request-form input,
.access-request-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: #17191f;
    font: inherit;
    background: #fff;
    border: 1px solid #ccd2d9;
    border-radius: 10px;
    outline: none;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.access-request-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.5;
}

.access-request-form input:focus,
.access-request-form textarea:focus {
    border-color: #18764f;
    box-shadow: 0 0 0 3px rgba(24, 118, 79, 0.12);
}

.access-request-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    color: #fff;
    font: inherit;
    font-weight: 800;
    background: #18764f;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition:
        background 150ms ease,
        opacity 150ms ease;
}

.access-request-button:hover {
    background: #12613f;
}

.access-request-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.access-request-message {
    min-height: 22px;
    font-size: 14px;
    line-height: 1.5;
}

.access-request-message.success {
    color: #18764f;
}

.access-request-message.error {
    color: #c43e3e;
}

.website-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 680px) {
    .access-request-card {
        margin-top: 24px;
        padding: 24px 20px;
        border-radius: 14px;
    }

    .access-request-card h2 {
        font-size: 27px;
    }

    .access-price-value {
        font-size: 30px;
    }
}
/* Graphic home-vs-away comparisons -------------------------------------- */
.live-comparison-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto) minmax(0, 1fr);
    gap: 14px;
    padding: 0 2px 12px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.live-comparison-header span:nth-child(2) {
    text-align: center;
}

.live-comparison-header span:last-child {
    text-align: right;
}

.live-halves-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.live-half-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
    background: var(--surface);
}

.live-half-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #fafafa;
    border-bottom: 1px solid var(--line);
    font-size: .86rem;
    font-weight: 800;
}

.live-half-title small {
    color: var(--accent);
    font-size: .7rem;
    letter-spacing: .08em;
}

.visual-comparison-list {
    padding: 2px 14px 8px;
}

.visual-comparison-row {
    padding: 11px 0 10px;
    border-bottom: 1px solid var(--line);
}

.visual-comparison-row:last-child {
    border-bottom: 0;
}

.visual-comparison-values {
    display: grid;
    grid-template-columns: minmax(48px, 1fr) minmax(110px, auto) minmax(48px, 1fr);
    align-items: baseline;
    gap: 10px;
    margin-bottom: 7px;
}

.visual-comparison-values strong {
    font-size: .92rem;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
}

.comparison-home-value {
    text-align: left;
}

.comparison-away-value {
    text-align: right;
}

.visual-comparison-values .is-leading {
    color: var(--accent);
}

.comparison-label {
    color: var(--text);
    text-align: center;
    font-size: .76rem;
    font-weight: 650;
    line-height: 1.25;
}

.dual-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    height: 7px;
}

.dual-bar-home,
.dual-bar-away {
    position: relative;
    overflow: hidden;
    background: #eef0f2;
}

.dual-bar-home {
    border-radius: 999px 2px 2px 999px;
}

.dual-bar-away {
    border-radius: 2px 999px 999px 2px;
}

.dual-bar-home span,
.dual-bar-away span {
    position: absolute;
    inset-block: 0;
    display: block;
    border-radius: inherit;
}

.dual-bar-home span {
    right: 0;
    background: var(--accent);
}

.dual-bar-away span {
    left: 0;
    background: #aab1ba;
}

.comparison-card .visual-comparison-list {
    padding-top: 3px;
}

.standalone-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--line);
    background: #fcfcfc;
}

.standalone-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
    font-size: .76rem;
}

.standalone-metric span {
    color: var(--muted);
}

.standalone-metric strong {
    font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
    .live-halves-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .live-comparison-header {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 8px;
        font-size: .64rem;
    }

    .live-half-card {
        border-radius: 8px;
    }

    .visual-comparison-list {
        padding-inline: 11px;
    }

    .visual-comparison-values {
        grid-template-columns: minmax(42px, .8fr) minmax(95px, 1.7fr) minmax(42px, .8fr);
        gap: 7px;
    }

    .visual-comparison-values strong {
        font-size: .84rem;
    }

    .comparison-label {
        font-size: .7rem;
    }

    .standalone-metrics {
        grid-template-columns: 1fr;
    }
}

/* Single sample-size row used for H2H games ----------------------------- */
.visual-single-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.visual-single-row:last-child {
    border-bottom: 0;
}

.visual-single-label {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
}

.visual-single-value {
    min-width: 42px;
    padding: 4px 9px;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 999px;
    text-align: center;
    font-size: .82rem;
    font-variant-numeric: tabular-nums;
}


/* Calculated-stat storytelling headers and H2H summary ------------------ */
.section-description {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.comparison-card-header {
    padding: 15px 15px 13px;
    background: #fafafa;
    border-bottom: 1px solid var(--line);
}

.comparison-card-header h3 {
    margin: 2px 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: .94rem;
    letter-spacing: -.01em;
}

.comparison-card-eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.comparison-card-subtitle {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.4;
}

.comparison-card .visual-single-row {
    padding-inline: 0;
}

.comparison-card .visual-single-label {
    color: var(--text);
    font-weight: 650;
}

@media (max-width: 640px) {
    .comparison-card-header {
        padding: 13px 12px 11px;
    }

    .comparison-card-subtitle {
        font-size: .71rem;
    }
}


/* Match odds ------------------------------------------------------------ */
.odds-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.odds-card {
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.odds-card-header {
    padding: 13px 14px;
    background: #fafafa;
    border-bottom: 1px solid var(--line);
}

.odds-card-header h3 {
    margin: 0;
    color: var(--text);
    font-size: .9rem;
}

.odds-card-header span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .72rem;
}

.odds-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.odds-card-goals .odds-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odds-card-btts .odds-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odds-option {
    min-width: 0;
    padding: 14px 10px;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .16s ease;
}

.odds-card-winner .odds-option:nth-child(3),
.odds-card-btts .odds-option:nth-child(2),
.odds-card-goals .odds-option:nth-child(2n) {
    border-right: 0;
}

.odds-card-winner .odds-option,
.odds-card-btts .odds-option {
    border-bottom: 0;
}

.odds-card-goals .odds-option:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.odds-option:hover {
    background: var(--accent-soft);
}

.odds-option-label {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.odds-option-value {
    display: block;
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.odds-option:hover .odds-option-value {
    color: var(--accent);
}

@media (max-width: 900px) {
    .odds-grid {
        grid-template-columns: 1fr 1fr;
    }

    .odds-card-winner {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .odds-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .odds-card-winner {
        grid-column: auto;
    }

    .odds-card-header {
        padding: 11px 12px;
    }

    .odds-option {
        padding: 12px 7px;
    }

    .odds-option-label {
        font-size: .68rem;
    }

    .odds-option-value {
        font-size: 1rem;
    }
}


/* League standings ------------------------------------------------------ */
.standings-wrap {
    border: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
    background: var(--surface);
}

.standings-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.standings-table {
    width: 100%;
    min-width: 790px;
    border-collapse: collapse;
    font-size: .8rem;
    font-variant-numeric: tabular-nums;
}

.standings-table th,
.standings-table td {
    padding: 10px 9px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    white-space: nowrap;
}

.standings-table th {
    color: var(--muted);
    background: #fafafa;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.standings-table tbody tr:last-child td {
    border-bottom: 0;
}

.standings-table tbody tr:not(.is-match-team):hover {
    background: #fcfcfc;
}

.standings-table .standings-rank {
    width: 46px;
}

.standings-table .standings-team {
    width: 250px;
    text-align: left;
}

.standings-team-name {
    font-weight: 700;
}

.standings-points {
    color: var(--text);
}

.standings-table tr.is-match-team {
    background: var(--accent-soft);
}

.standings-table tr.is-match-team td:first-child {
    box-shadow: inset 4px 0 0 var(--accent);
}

.standings-table tr.is-away-team {
    background: #f3f5f7;
}

.standings-table tr.is-away-team td:first-child {
    box-shadow: inset 4px 0 0 #8d96a2;
}

.standings-side-tag {
    display: inline-flex;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 999px;
    color: var(--accent);
    background: #fff;
    border: 1px solid #d9e9df;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.is-away-team .standings-side-tag {
    color: #606975;
    border-color: #dce0e5;
}

.standings-form {
    display: inline-flex;
    gap: 3px;
}

.form-result {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
}

.form-w { background: var(--accent); }
.form-d { background: #9aa1aa; }
.form-l { background: var(--danger); }
.standings-no-form { color: var(--muted); }

@media (max-width: 640px) {
    .standings-wrap {
        margin-inline: -3px;
    }

    .standings-table {
        min-width: 690px;
        font-size: .75rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 9px 7px;
    }

    .standings-table .standings-team {
        position: sticky;
        left: 0;
        z-index: 1;
        width: 190px;
        background: var(--surface);
        box-shadow: 1px 0 0 var(--line);
    }

    .standings-table th.standings-team {
        z-index: 2;
        background: #fafafa;
    }

    .standings-table tr.is-home-team .standings-team {
        background: var(--accent-soft);
    }

    .standings-table tr.is-away-team .standings-team {
        background: #f3f5f7;
    }

    .standings-form-column {
        display: none;
    }
}


/* Collapsible match-detail sections ------------------------------------ */
.collapsible-section {
    padding: 0;
    overflow: hidden;
}

.collapsible-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background .16s ease;
}

.collapsible-heading::-webkit-details-marker {
    display: none;
}

.collapsible-heading::marker {
    content: "";
}

.collapsible-heading:hover {
    background: #fafcfa;
}

.collapsible-heading:focus-visible {
    outline: 3px solid rgba(25, 112, 74, .15);
    outline-offset: -3px;
}

.collapsible-heading h2 {
    margin: 0;
    font-size: 1.25rem;
}

.collapsible-heading .eyebrow {
    margin-bottom: 4px;
}

.section-count {
    color: var(--muted);
    font-size: .82em;
    font-weight: 650;
}

.collapse-indicator {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
}

.collapse-indicator::before,
.collapse-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .18s ease;
}

.collapse-indicator::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.collapsible-section[open] .collapse-indicator::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.collapsible-section[open] .collapsible-heading {
    border-bottom: 1px solid var(--line);
}

.collapsible-content {
    padding: 22px 24px 24px;
    transform-origin: top;
}

@media (max-width: 640px) {
    .collapsible-heading {
        min-height: 68px;
        padding: 15px 14px;
    }

    .collapsible-heading h2 {
        font-size: 1.08rem;
    }

    .collapsible-content {
        padding: 16px 14px 18px;
    }

    .collapse-indicator {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .collapsible-heading,
    .collapse-indicator::after {
        transition: none;
    }
}


/* Match-detail favourite button ----------------------------------------- */
.detail-hero-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-bottom: 16px;
}

.detail-hero-top .detail-competition {
    margin: 0;
    padding-inline: 170px;
}

.detail-favourite-button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 11px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 750;
    cursor: pointer;
    transition:
        color .16s ease,
        background .16s ease,
        border-color .16s ease,
        transform .16s ease;
}

.detail-favourite-button:hover {
    color: var(--text);
    background: #fafafa;
    border-color: var(--line-strong);
}

.detail-favourite-button:active {
    transform: scale(.98);
}

.detail-favourite-button:focus-visible {
    outline: 3px solid rgba(25, 112, 74, .15);
    outline-offset: 2px;
}

.detail-favourite-star {
    color: #b6bac2;
    font-size: 1.1rem;
    line-height: 1;
    transition: color .16s ease, transform .16s ease;
}

.detail-favourite-button.active {
    color: #7b5b0a;
    background: #fff9e8;
    border-color: #ead79c;
}

.detail-favourite-button.active .detail-favourite-star {
    color: #d09a17;
    transform: scale(1.06);
}

@media (max-width: 760px) {
    .detail-hero-top {
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 18px;
    }

    .detail-hero-top .detail-competition {
        flex: 1;
        min-width: 0;
        padding: 0;
        text-align: left;
        overflow-wrap: anywhere;
    }

    .detail-favourite-button {
        position: static;
        flex: 0 0 auto;
        min-height: 34px;
        padding: 6px 9px;
    }

    .detail-favourite-label {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .detail-favourite-button,
    .detail-favourite-star {
        transition: none;
    }
}


/* Previous matches ------------------------------------------------------- */
.previous-matches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.previous-matches-column {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
}

.previous-matches-heading {
    padding: 13px 14px;
    background: #fafafa;
    border-bottom: 1px solid var(--line);
}

.previous-matches-heading h3 {
    margin: 0;
    overflow: hidden;
    color: var(--text);
    font-size: .92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.previous-matches-heading span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .7rem;
}

.previous-matches-list {
    display: grid;
}

.previous-match-card {
    position: relative;
    display: block;
    padding: 12px 13px 12px 16px;
    color: inherit;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background .16s ease;
}

.previous-match-card:last-child {
    border-bottom: 0;
}

.previous-match-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: transparent;
}

.previous-match-card.result-win::before {
    background: var(--accent);
}

.previous-match-card.result-draw::before {
    background: #9aa1aa;
}

.previous-match-card.result-loss::before {
    background: var(--danger);
}

.previous-match-card:hover {
    background: #fafcfa;
}

.previous-match-card:focus-visible {
    outline: 3px solid rgba(25, 112, 74, .15);
    outline-offset: -3px;
}

.previous-match-date {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.previous-match-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: center;
    font-size: .8rem;
}

.previous-match-teams span {
    min-width: 0;
    overflow: hidden;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.previous-match-teams strong {
    min-width: 20px;
    text-align: right;
    font-size: .88rem;
    font-variant-numeric: tabular-nums;
}

.previous-match-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    color: var(--muted);
    font-size: .66rem;
}

.previous-match-meta span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.previous-match-meta span:last-child {
    flex: 0 0 auto;
    font-weight: 700;
}

.previous-matches-empty {
    padding: 24px 14px;
    color: var(--muted);
    text-align: center;
    font-size: .78rem;
}

.previous-matches-h2h .previous-matches-list {
    max-height: 560px;
    overflow-y: auto;
    scrollbar-width: thin;
}

@media (max-width: 960px) {
    .previous-matches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .previous-matches-h2h {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .previous-matches-h2h .previous-matches-list {
        max-height: 440px;
    }
}

@media (max-width: 640px) {
    .previous-matches-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .previous-matches-h2h {
        grid-column: auto;
        grid-row: auto;
    }

    .previous-matches-column {
        border-radius: 8px;
    }

    .previous-matches-heading {
        padding: 12px;
    }

    .previous-match-card {
        padding: 12px 12px 12px 15px;
    }

    .previous-matches-h2h .previous-matches-list {
        max-height: 420px;
    }
}


/* Telegram subscribe page */
.subscribe-shell{max-width:1180px}
.subscribe-hero{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:42px;align-items:center;padding:clamp(28px,5vw,58px);background:var(--surface);border:1px solid var(--line);border-radius:14px}
.subscribe-copy h1{max-width:720px;font-size:clamp(2rem,5vw,3.55rem);line-height:1.02}
.subscribe-lead{max-width:670px;margin:20px 0 0;color:var(--muted);font-size:clamp(1rem,2vw,1.14rem);line-height:1.7}
.subscribe-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:30px 0 0;padding:0;list-style:none}
.subscribe-benefits li{position:relative;padding:17px 17px 17px 46px;background:#fafafa;border:1px solid var(--line);border-radius:9px}
.subscribe-benefits li::before{content:"✓";position:absolute;top:17px;left:17px;display:grid;place-items:center;width:20px;height:20px;color:#fff;background:var(--accent);border-radius:50%;font-size:.7rem;font-weight:900}
.subscribe-benefits strong{display:block;margin-bottom:5px;font-size:.9rem}
.subscribe-benefits span{display:block;color:var(--muted);font-size:.78rem;line-height:1.5}
.subscribe-actions{margin-top:28px}
.telegram-join-button{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:50px;padding:12px 20px;color:#fff;background:var(--accent);border-radius:8px;text-decoration:none;font-size:.94rem;font-weight:800;transition:transform .16s ease,filter .16s ease}
.telegram-join-button:hover{filter:brightness(.95);transform:translateY(-1px)}
.telegram-button-icon{font-size:1.05rem;transform:rotate(-24deg)}
.subscribe-note{margin:10px 0 0;color:var(--muted);font-size:.75rem}
.telegram-preview{padding:20px;background:#edf4f7;border:1px solid #d9e3e8;border-radius:14px;box-shadow:0 18px 45px rgba(15,23,42,.08)}
.telegram-preview-top{display:flex;align-items:center;gap:11px;margin-bottom:16px}
.telegram-preview-logo{display:grid;place-items:center;width:42px;height:42px;color:#fff;background:var(--accent);border-radius:50%;font-weight:850}
.telegram-preview-top strong,.telegram-preview-top span{display:block}
.telegram-preview-top span{margin-top:2px;color:var(--muted);font-size:.72rem}
.telegram-message{padding:18px;background:#fff;border-radius:5px 12px 12px 12px;box-shadow:0 4px 16px rgba(15,23,42,.06)}
.telegram-message-label{display:inline-flex;margin-bottom:12px;padding:4px 8px;color:var(--accent);background:var(--accent-soft);border-radius:999px;font-size:.68rem;font-weight:850;letter-spacing:.04em;text-transform:uppercase}
.telegram-message strong,.telegram-message>span:not(.telegram-message-label){display:block}
.telegram-message strong{margin-bottom:3px;font-size:.92rem}
.telegram-message>span:not(.telegram-message-label){color:var(--muted);font-size:.72rem}
.telegram-message p{margin:16px 0 12px;color:#343a44;font-size:.82rem;line-height:1.55}
.telegram-message small{color:var(--muted);font-size:.7rem}
@media(max-width:900px){.subscribe-hero{grid-template-columns:1fr}.telegram-preview{width:min(100%,520px)}}
@media(max-width:640px){.subscribe-hero{gap:28px;padding:24px 18px;border-radius:10px}.subscribe-benefits{grid-template-columns:1fr}.telegram-join-button{width:100%}.telegram-preview{padding:15px;border-radius:10px}}
