
        :root {
            --bg: #0b0d11;
            --bg-alt: #151923;
            --accent: #f5b100;
            --accent-dark: #d19a00;
            --text: #f5f5f5;
            --muted: #9ea5b3;
            --border: #2a3140;
        }

        * {
            box-sizing: border-box;
        }

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

        a {
            color: var(--accent);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .page {
            max-width: 1180px;
            margin: 0 auto;
            padding: 16px;
        }

        header {
            padding: 16px 0 8px;
        }

        .logo-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-badge {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: radial-gradient(circle at 30% 20%, #2ce57b 0, #0b8a3a 40%, #0b0d11 80%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: #fff;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span:first-child {
            font-weight: 700;
            font-size: 18px;
        }

        .logo-text span:last-child {
            font-size: 13px;
            color: var(--muted);
        }

        h1, h2, h3 {
            margin: 16px 0 8px;
            line-height: 1.25;
        }

        h1 {
            font-size: 26px;
        }

        h2 {
            font-size: 21px;
        }

        h3 {
            font-size: 18px;
        }

        p {
            margin: 8px 0;
            font-size: 15px;
        }

        .chunk-muted {
            color: var(--muted);
            font-size: 14px;
        }

        .hero {
            margin-top: 16px;
            padding: 16px;
            border-radius: 20px;
            background: radial-gradient(circle at 5% 0, #26e066 0, #182032 55%, #080b10 100%);
            display: grid;
            grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
            gap: 16px;
        }

        .hero-text p {
            max-width: 520px;
        }

        .hero-tag {
            font-size: 13px;
            color: #f5f5f5;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 24px;
            font-weight: 700;
            margin: 8px 0;
        }

        .hero-sub {
            font-size: 14px;
            color: #e3e9f4;
        }

        .hero-actions {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: #181818;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(245, 245, 245, 0.25);
            color: #f5f5f5;
        }

        .hero-media {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-card {
            width: 100%;
            max-width: 280px;
            padding: 10px;
            border-radius: 22px;
            background: linear-gradient(150deg, #050709, #111827 50%, #050709 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        }

        .hero-card-screen {
            border-radius: 16px;
            overflow: hidden;
            background: radial-gradient(circle at 20% 0, #32ff7b 0, #0b8c43 35%, #050709 100%);
            position: relative;
            padding: 18px 12px 14px;
        }

        .hero-card-screen::after {
            content: "LIVE • RUS PREMIER LEAGUE";
            position: absolute;
            left: 12px;
            bottom: 10px;
            font-size: 10px;
            color: rgba(245, 245, 245, 0.85);
            background: rgba(0, 0, 0, 0.45);
            padding: 4px 8px;
            border-radius: 999px;
        }

        .hero-card-strip {
            margin-top: 8px;
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--muted);
        }

        .hero-card-flag {
            font-size: 11px;
            color: #f5f5f5;
        }

        .section {
            margin-top: 22px;
            padding: 16px;
            border-radius: 18px;
            background-color: var(--bg-alt);
            border: 1px solid var(--border);
        }

        .section + .section {
            margin-top: 16px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 6px;
        }

        .section-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--muted);
        }

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

        .section-img {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .section-img img {
            display: block;
            width: 100%;
            height: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 10px 0;
            font-size: 14px;
        }

        th, td {
            border: 1px solid var(--border);
            padding: 7px 8px;
            text-align: left;
        }

        th {
            background-color: #1b2231;
            font-weight: 600;
        }

        tbody tr:nth-child(even) {
            background-color: #141924;
        }

        ul {
            margin: 6px 0 6px 18px;
            padding: 0;
            font-size: 14px;
        }

        li {
            margin: 4px 0;
        }

        .faq-item {
            margin: 10px 0;
            padding: 10px 12px;
            border-radius: 12px;
            background-color: #101521;
        }

        .faq-q {
            font-weight: 600;
            font-size: 14px;
        }

        .faq-a {
            font-size: 14px;
            color: var(--muted);
        }

        footer {
            margin: 22px 0 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--muted);
        }

        .breadcrumbs {
            margin: 8px 0 4px;
            font-size: 12px;
            color: var(--muted);
        }

        .breadcrumbs a {
            color: var(--muted);
        }

        .breadcrumbs span {
            margin: 0 4px;
        }

        .cta {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: #181818;
            padding: 16px;
            border-radius: 14px;
            text-align: center;
            margin: 20px 0;
            font-weight: 600;
        }

        @media (max-width: 840px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
            }
            .grid-2 {
                grid-template-columns: minmax(0, 1fr);
            }
            h1 {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn {
                width: 100%;
            }
            .page {
                padding: 12px;
            }
}