        :root {
            --primary: #5c6bc0;
            --primary-dark: #3949ab;
            --accent: #e53935;
            --surface: #ffffff;
            --bg: #f0f2f5;
            --text: #1a1a2e;
            --muted: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 4px 24px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
            --radius: 16px;
            --radius-sm: 10px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html, body {
            max-width: 100%;
            overflow-x: clip;
        }
        body { font-family: 'Cairo', sans-serif; background: var(--bg); color: var(--text); }

        /* Navbar */
        .site-navbar {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 0;
            box-shadow: 0 2px 16px rgba(0,0,0,0.2);
            position: sticky; top: 0; z-index: 100;
        }
        .site-navbar .container { display: flex; align-items: center; height: 64px; gap: 16px; }
        .site-navbar .brand { font-size: 1.4rem; font-weight: 700; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
        .site-navbar .brand img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            background: rgba(255,255,255,0.16);
            border-radius: 9px;
            padding: 3px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
        }
        .site-navbar .brand .dot { color: #f9a825; }
        .site-nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(255,255,255,0.12);
            color: #fff;
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .site-nav-toggle:hover,
        .site-nav-toggle:focus {
            background: rgba(255,255,255,0.18);
            color: #fff;
        }
        .nav-mobile-toggle,
        .site-nav-panel-head,
        .site-nav-panel-close,
        .site-nav-panel-backdrop {
            display: none !important;
        }
        .site-nav-stack {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1 1 auto;
            min-width: 0;
        }
        @media (min-width: 992px) {
            .site-nav-stack {
                display: flex;
                align-items: center;
                gap: 16px;
            }
        }
        .site-navbar .nav-links { display: flex; gap: 4px; list-style: none; margin: 0; }
        .site-navbar .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; transition: all 0.2s; }
        .site-navbar .nav-links a:hover, .site-navbar .nav-links a.active { background: rgba(255,255,255,0.15); color: #fff; }
        .site-navbar .nav-right { margin-right: auto; display: flex; align-items: center; gap: 10px; min-width: 0; }
        .site-navbar .nav-utility {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .site-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            padding: 6px;
        }
        .site-search input {
            width: 180px;
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 0.85rem;
            padding: 0 8px;
        }
        .site-search input::placeholder { color: rgba(255,255,255,0.68); }
        .site-search button {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: #fff;
            color: var(--primary-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .live-pill { background: var(--accent); color: #fff; font-size: 0.72rem; padding: 3px 10px; border-radius: 20px; font-weight: 700; display: flex; align-items: center; gap: 4px; animation: blink 1.5s infinite; }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.6} }

        /* Hero */
        .hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #7c4dff 100%); color: #fff; padding: 60px 0 50px; }
        .hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 12px; }
        .hero p { font-size: 1.05rem; opacity: 0.88; margin-bottom: 0; }
        .hero-icon { font-size: 7rem; opacity: 0.18; }

        /* Section */
        .section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
        .section-head h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 0; }
        .section-head .line { flex: 1; height: 2px; background: var(--border); border-radius: 2px; }

        /* Match Card */
        .match-card { background: var(--surface); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: all 0.25s; border: 1.5px solid transparent; position: relative; overflow: hidden; }
        .match-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(92,107,192,0.3); }
        .match-card.live { border-color: var(--accent); }
        .match-card .live-tag { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px; animation: blink 1.5s infinite; }
        .match-league { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
        .match-league img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
        .match-league span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
        .match-teams { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0; }
        .team-block { text-align: center; flex: 1; }
        .team-block img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); margin-bottom: 6px; }
        .team-block .name { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3; }
        .score-block { text-align: center; min-width: 70px; }
        .score-block .score { font-size: 1.8rem; font-weight: 700; color: var(--text); letter-spacing: 2px; }
        .score-block .vs { font-size: 1rem; font-weight: 700; color: var(--muted); }
        .score-block .time { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
        .match-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
        .channel-badge { background: #f3f4f6; color: var(--muted); font-size: 0.75rem; padding: 4px 10px; border-radius: 8px; }
        .watch-btn { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; border: none; border-radius: 10px; padding: 8px 18px; font-size: 0.82rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
        .watch-btn:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(92,107,192,0.4); }

        /* Blog */
        .blog-card {
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            height: 100%;
            transition: all .25s;
            border: 1px solid transparent;
        }
        .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(92,107,192,0.25); }
        .blog-cover {
            position: relative;
            aspect-ratio: 16 / 10;
            min-height: 220px;
            background: linear-gradient(135deg, rgba(92,107,192,0.15), rgba(229,57,53,0.12));
            overflow: hidden;
        }
        .blog-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15,23,42,0) 32%, rgba(15,23,42,0.16) 100%);
            pointer-events: none;
        }
        .blog-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 24%;
            display: block;
            transition: transform .45s ease;
        }
        .blog-card:hover .blog-cover img {
            transform: scale(1.04);
        }
        .blog-cover .blog-cover-fallback {
            width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
            color: rgba(26,26,46,0.28); font-size: 4rem;
        }
        .blog-body { padding: 18px; }
        .blog-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .78rem; margin-bottom: 10px; }
        .blog-title { font-size: 1.08rem; font-weight: 800; line-height: 1.6; color: var(--text); margin-bottom: 10px; }
        .blog-excerpt { color: var(--muted); line-height: 1.8; font-size: .9rem; margin-bottom: 0; }
        .blog-footer { padding: 14px 18px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
        .blog-read-more {
            color: var(--primary-dark); font-weight: 800; text-decoration: none; font-size: .86rem;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .blog-read-more:hover { color: var(--accent); }
        .blog-hero-panel {
            padding: 22px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 18px 40px rgba(0,0,0,0.14);
            backdrop-filter: blur(10px);
        }
        .blog-hero-panel__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 800;
        }
        .blog-hero-panel__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .blog-hero-panel__item {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 108px;
            padding: 16px;
            border-radius: 20px;
            text-decoration: none;
            color: #fff;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
        }
        .blog-hero-panel__item:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.18);
            color: #fff;
        }
        .blog-hero-panel__item i {
            font-size: 1.15rem;
            color: #ffe082;
        }
        .blog-filter-card {
            padding: 22px;
            border-radius: 22px;
            border: 1px solid rgba(226,232,240,0.95);
            background: linear-gradient(180deg, #ffffff, #f8fafc);
        }
        .blog-filter-card__head {
            margin-bottom: 1rem;
        }
        .blog-filter-card__head h2 {
            margin: 0 0 .35rem;
            font-size: 1.1rem;
            font-weight: 900;
            color: #0f172a;
        }
        .blog-filter-card__head p {
            margin: 0;
            color: #64748b;
            line-height: 1.8;
            font-size: .92rem;
        }
        .blog-featured-card {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
            gap: 0;
            overflow: hidden;
            border-radius: 24px;
            background: linear-gradient(180deg, #ffffff, #f8fafc);
            border: 1px solid rgba(226,232,240,0.95);
            box-shadow: 0 18px 42px rgba(15,23,42,0.08);
        }
        .blog-featured-card__media {
            min-height: 100%;
            background: linear-gradient(135deg, rgba(92,107,192,0.18), rgba(229,57,53,0.12));
            position: relative;
            overflow: hidden;
        }
        .blog-featured-card__media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15,23,42,0.06) 0%, rgba(15,23,42,0.02) 45%, rgba(15,23,42,0.18) 100%);
            pointer-events: none;
        }
        .blog-featured-card__media img {
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }
        .blog-featured-card__body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .blog-featured-card__title {
            font-size: clamp(1.35rem, 2.4vw, 2rem);
            line-height: 1.5;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 0.9rem;
            letter-spacing: -0.02em;
        }
        .blog-featured-card__excerpt {
            color: #475569;
            line-height: 1.95;
            font-size: 0.97rem;
            margin-bottom: 1.1rem;
        }
        .blog-featured-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            color: #64748b;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 1.15rem;
        }
        .blog-featured-card__meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .blog-featured-card__cta {
            align-self: flex-start;
            border-radius: 999px;
            padding: 0.82rem 1.15rem;
            font-weight: 800;
        }
        .blog-grid-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 1rem;
        }
        .blog-grid-head h2 {
            margin: 0 0 .3rem;
            font-size: 1.2rem;
            font-weight: 900;
            color: #0f172a;
        }
        .blog-grid-head p {
            margin: 0;
            color: #64748b;
            font-size: .92rem;
            line-height: 1.8;
        }
        .blog-side-card {
            border: 1px solid rgba(226,232,240,0.95);
            box-shadow: 0 16px 34px rgba(15,23,42,0.06);
        }
        .article-shell {
            background: var(--surface);
            border-radius: 22px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .article-page-wrap {
            background:
                radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 24%),
                radial-gradient(circle at top left, rgba(16,185,129,0.05), transparent 20%),
                transparent;
        }
        .article-page-head {
            align-items: flex-end !important;
        }
        .article-page-head__copy {
            min-width: 0;
        }
        .article-page-title {
            font-size: clamp(1.6rem, 2.6vw, 2.35rem);
            line-height: 1.35;
            font-weight: 900;
            color: #0f172a;
            letter-spacing: -0.02em;
        }
        .article-page-meta .badge {
            padding: 0.55rem 0.8rem;
            border-radius: 999px;
            font-size: 0.76rem;
            font-weight: 700;
            border: 1px solid rgba(148,163,184,0.14);
        }
        .article-hero {
            position: relative;
            min-height: 320px;
            background: linear-gradient(135deg, rgba(26,35,126,.92), rgba(92,107,192,.92));
            color: #fff;
            overflow: hidden;
        }
        .article-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(15,23,42,0.12) 0%, rgba(15,23,42,0.34) 100%),
                radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%);
            pointer-events: none;
            z-index: 0;
        }
        .article-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            opacity: .9;
            object-position: center 28%;
        }
        .article-intro-card {
            position: relative;
            z-index: 2;
            margin: -64px 28px 0;
            padding: 22px 24px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
            border: 1px solid rgba(226,232,240,0.95);
            box-shadow: 0 24px 54px rgba(15,23,42,0.12);
        }
        .article-hero-badges {
            align-items: center;
        }
        .article-hero-badge {
            font-size: 0.76rem;
            font-weight: 800;
            border-radius: 999px;
            padding: 0.48rem 0.82rem;
            box-shadow: 0 6px 18px rgba(15,23,42,0.08);
        }
        .article-hero-badge--soft {
            background: rgba(241,245,249,0.96) !important;
            color: #0f172a !important;
            border: 1px solid rgba(148,163,184,0.16);
        }
        .article-hero-title {
            font-size: clamp(1.55rem, 2.4vw, 2.4rem);
            line-height: 1.45;
            font-weight: 900;
            color: #0f172a;
            letter-spacing: -0.02em;
        }
        .article-hero-excerpt {
            margin-top: 0.9rem;
            max-width: 68ch;
            color: #475569;
            font-size: 0.98rem;
            line-height: 1.95;
        }
        .article-intro-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(226,232,240,0.85);
            color: #64748b;
            font-size: 0.83rem;
            font-weight: 700;
        }
        .article-intro-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .article-body { padding: 28px; }
        .article-reading-card {
            background: linear-gradient(180deg, #ffffff, #fcfdff);
            border: 1px solid rgba(226,232,240,0.9);
            border-radius: 24px;
            padding: 22px;
            box-shadow: 0 16px 34px rgba(15,23,42,0.06);
        }
        .article-content {
            font-size: 1.05rem;
            line-height: 2.1;
            color: var(--text);
            text-align: right;
        }
        .article-content p { margin-bottom: 1rem; }
        .article-content > :first-child {
            margin-top: 0 !important;
        }
        .article-content h2,
        .article-content h3 {
            color: #0f172a;
            font-weight: 900;
            line-height: 1.45;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        .article-content h2 {
            font-size: 1.28rem;
        }
        .article-content h3 {
            font-size: 1.08rem;
        }
        .article-content ul,
        .article-content ol {
            padding-right: 1.35rem;
            margin-bottom: 1.15rem;
        }
        .article-content li {
            margin-bottom: 0.45rem;
            line-height: 1.9;
        }
        .article-content blockquote {
            margin: 1.4rem 0;
            padding: 1rem 1.1rem;
            border-right: 4px solid #2563eb;
            background: linear-gradient(180deg, #f8fbff, #f1f5f9);
            border-radius: 18px;
            color: #334155;
        }
        .article-side-stack {
            position: sticky;
            top: 84px;
        }
        .article-content img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1.4rem auto;
            border-radius: 18px;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
            object-fit: cover;
        }
        .article-content figure {
            margin: 1.5rem 0;
        }
        .article-content figure img {
            margin: 0 auto;
        }
        .article-content figcaption {
            color: var(--muted);
            font-size: 0.8rem;
            text-align: center;
            margin-top: 0.75rem;
            line-height: 1.7;
        }
        .article-content iframe,
        .article-content video {
            width: 100%;
            max-width: 100%;
            border: 0;
            border-radius: 18px;
            overflow: hidden;
            margin: 1.5rem 0;
            aspect-ratio: 16 / 9;
        }
        .article-content .table-responsive {
            margin: 1.35rem 0 1.8rem;
            border: 1px solid rgba(226,232,240,0.95);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 16px 34px rgba(15,23,42,0.06);
            background: #fff;
        }
        .article-content table {
            width: 100%;
            margin: 0;
            border-collapse: separate;
            border-spacing: 0;
            direction: rtl;
            background: #fff;
        }
        .article-content table thead th {
            background: linear-gradient(180deg, #f8fafc, #eef2ff);
            color: #0f172a;
            font-weight: 800;
            font-size: 0.9rem;
            white-space: nowrap;
            border-bottom: 1px solid rgba(226,232,240,0.9);
        }
        .article-content table th,
        .article-content table td {
            padding: 0.9rem 1rem;
            text-align: right;
            vertical-align: middle;
            border-left: 1px solid rgba(241,245,249,0.95);
        }
        .article-content table th:last-child,
        .article-content table td:last-child {
            border-left: 0;
        }
        .article-content table tbody tr:nth-child(even) {
            background: rgba(248,250,252,0.72);
        }
        .article-content table tbody tr:hover {
            background: rgba(239,246,255,0.78);
        }
        .article-content table ul {
            margin: 0;
            padding-right: 1rem;
        }
        .article-content table span {
            color: #64748b;
            font-weight: 600;
        }
        .article-content .article-keyfacts {
            margin-bottom: 1.4rem;
            padding: 1.15rem 1.2rem;
            border-radius: 20px;
            background: linear-gradient(180deg, #f8fafc, #ffffff);
            border: 1px solid rgba(226,232,240,0.95);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
        }
        .article-content .article-keyfacts h2 {
            margin-top: 0;
        }
        .article-content .article-keyfacts ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 18px;
            padding-right: 0;
            list-style: none;
            margin-bottom: 0;
        }
        .article-content .article-keyfacts li {
            margin-bottom: 0;
            padding: 0.75rem 0.9rem;
            border-radius: 14px;
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(226,232,240,0.95);
            font-size: 0.95rem;
        }
        .article-content .match-faq-list {
            display: grid;
            gap: 14px;
            margin-top: 1rem;
        }
        .article-content .match-faq-item {
            padding: 1rem 1.1rem;
            border-radius: 18px;
            border: 1px solid rgba(226,232,240,0.95);
            background: linear-gradient(180deg, #fff, #f8fafc);
        }
        .article-content .match-faq-item h3 {
            margin-top: 0;
            margin-bottom: 0.55rem;
            font-size: 1rem;
        }
        html[lang="en"] body {
            font-family: "Instrument Sans", "Segoe UI", Arial, sans-serif;
        }
        html[lang="en"] .breadcrumb,
        html[lang="en"] .article-page-head,
        html[lang="en"] .article-page-head__copy,
        html[lang="en"] .blog-grid-head,
        html[lang="en"] .blog-filter-card__head,
        html[lang="en"] .blog-hero-panel__head,
        html[lang="en"] .article-intro-card,
        html[lang="en"] .article-reading-card,
        html[lang="en"] .article-sidebar-card,
        html[lang="en"] .blog-card,
        html[lang="en"] .blog-featured-card,
        html[lang="en"] .blog-filter-card,
        html[lang="en"] .blog-hero-panel,
        html[lang="en"] .countdown-article-card,
        html[lang="en"] .countdown-article-hero {
            direction: ltr;
            text-align: left;
        }
        html[lang="en"] .article-page-meta,
        html[lang="en"] .article-intro-meta,
        html[lang="en"] .blog-meta,
        html[lang="en"] .blog-featured-card__meta,
        html[lang="en"] .countdown-article-meta {
            justify-content: flex-start;
        }
        html[lang="en"] .article-content {
            text-align: left;
        }
        html[lang="en"] .article-content ul,
        html[lang="en"] .article-content ol {
            padding-right: 0;
            padding-left: 1.35rem;
        }
        html[lang="en"] .article-content blockquote {
            border-right: 0;
            border-left: 4px solid #2563eb;
        }
        html[lang="en"] .article-content table {
            direction: ltr;
        }
        html[lang="en"] .article-content table th,
        html[lang="en"] .article-content table td {
            text-align: left;
            border-left: 0;
            border-right: 1px solid rgba(241,245,249,0.95);
        }
        html[lang="en"] .article-content table th:last-child,
        html[lang="en"] .article-content table td:last-child {
            border-right: 0;
        }
        html[lang="en"] .article-content table ul {
            padding-right: 0;
            padding-left: 1rem;
        }
        .article-sidebar-card {
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px;
        }

        /* League card */
        .league-card { background: var(--surface); border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: var(--shadow); transition: all 0.25s; cursor: pointer; border: 1.5px solid transparent; }
        .league-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(92,107,192,0.3); }
        .league-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); margin-bottom: 12px; }
        .league-card .lg-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
        .league-card .lg-count { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

        /* Empty state */
        .empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
        .empty-state i { font-size: 4rem; margin-bottom: 16px; opacity: 0.35; }
        .empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; }

        /* Footer */
        .site-footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 50px 0 24px; margin-top: 80px; }
        .site-footer-brand-logo {
            width: 28px;
            height: 28px;
            object-fit: contain;
            background: rgba(255,255,255,0.14);
            border-radius: 9px;
            padding: 3px;
            flex: 0 0 auto;
            display: block;
        }
        .site-footer h5 {
            color: #fff;
            margin-bottom: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.3;
        }
        .site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; line-height: 2; transition: color 0.2s; }
        .site-footer a:hover { color: #fff; }
        .site-footer .footer-copy { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; }
        .site-ad-wrap {
            padding: 18px 0;
            max-width: 100%;
            overflow: clip;
        }
        .site-ad-wrap--content {
            padding: 10px 0 24px;
        }
        .site-ad-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 16px;
            text-align: center;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            position: relative;
        }
        .site-ad-card--content {
            border-radius: 20px;
            padding: 18px;
        }
        .site-ad-slot {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            isolation: isolate;
            text-align: center;
        }
        .site-ad-card > *,
        .site-ad-slot > * {
            max-width: 100% !important;
        }
        .site-ad-slot div,
        .site-ad-slot table,
        .site-ad-slot section,
        .site-ad-slot aside,
        .site-ad-card .adsbygoogle,
        .site-ad-card iframe,
        .site-ad-card img,
        .site-ad-card ins {
            max-width: 100% !important;
            width: 100% !important;
        }
        .site-ad-slot iframe,
        .site-ad-card iframe {
            display: block;
            margin-inline: auto;
            border: 0;
        }
        .site-ad-card .adsbygoogle,
        .site-ad-card ins {
            display: block !important;
            min-height: 100px;
        }
        .site-ad-slot img,
        .site-ad-card img {
            width: auto !important;
            max-width: 100% !important;
            height: auto !important;
            margin-inline: auto;
            object-fit: contain !important;
            display: block;
        }
        .site-ad-slot script {
            max-width: 100% !important;
        }
        /* Visibility overrides */
        body {
            background:
                radial-gradient(circle at top right, rgba(92,107,192,0.08), transparent 28%),
                radial-gradient(circle at top left, rgba(229,57,53,0.05), transparent 24%),
                var(--bg);
        }
        .site-navbar .container {
            min-height: 64px;
            height: auto;
            padding-top: 10px;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }
        .site-navbar .nav-links {
            flex: 0 1 auto;
            gap: 8px;
            flex-wrap: nowrap;
            padding: 0;
            min-width: 0;
        }
        .site-navbar .nav-links a {
            color: rgba(255,255,255,0.95);
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            font-weight: 700;
        }
        .site-navbar .nav-links a:hover,
        .site-navbar .nav-links a.active {
            background: #fff;
            color: var(--primary-dark);
            border-color: #fff;
        }
        .hero,
        .hero-section {
            position: relative;
            overflow: hidden;
            padding: 64px 0 54px;
            background:
                linear-gradient(135deg, rgba(26,35,126,0.96) 0%, rgba(92,107,192,0.96) 58%, rgba(124,77,255,0.96) 100%);
        }
        .hero::before,
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 30%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1,
        .hero-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
        }
        .hero p,
        .hero-subtitle {
            color: rgba(255,255,255,0.9);
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }
        .hero-buttons .btn {
            border-radius: 999px;
            padding: 0.85rem 1.35rem;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .hero-buttons .btn-outline-light {
            border-width: 2px;
        }
        .hero-buttons .btn-outline-light:hover {
            color: var(--primary-dark);
            background: #fff;
        }
        .section-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text);
            margin: 0;
        }
        .section-subtitle {
            color: var(--muted);
            margin-bottom: 0;
        }
        .match-card,
        .card {
            color: var(--text);
        }
        .team-logo {
            width: 64px;
            height: 64px;
            margin: 0 auto 6px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at top, #ffffff 0%, #f8fafc 56%, #eef2ff 100%);
            border: 1px solid rgba(92,107,192,0.16);
            color: var(--primary-dark);
            font-size: 1.1rem;
            flex: 0 0 auto;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82), 0 6px 18px rgba(15,23,42,0.08);
            position: relative;
        }
        .team-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            padding: 7px;
            filter: drop-shadow(0 2px 6px rgba(15,23,42,0.12));
        }
        .team-logo img.rounded-circle,
        .team-logo-large img.rounded-circle,
        .summary-team-logo img.rounded-circle,
        .team-logo-small img.rounded-circle,
        .team-block img.rounded-circle {
            border-radius: 16px !important;
            object-fit: contain !important;
        }
        .team-logo::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255,255,255,0.36), transparent 40%);
            pointer-events: none;
        }
        .match-league {
            color: var(--muted);
            font-weight: 700;
        }
        .team-name {
            color: var(--text);
            font-weight: 700;
            line-height: 1.5;
        }
        .vs-separator {
            color: var(--muted);
            font-weight: 800;
            letter-spacing: 1px;
        }
        .live-indicator {
            background: var(--accent);
            color: #fff;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .channel-badge {
            background: rgba(92,107,192,0.12);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 8px;
        }
        .watch-btn {
            font-weight: 700;
        }

        @media(max-width:768px) {
            .hero h1,
            .hero-title { font-size: 1.7rem; }
            .match-teams { gap: 6px; }
            .team-block img,
            .team-logo { width: 46px; height: 46px; }
            .team-logo img { padding: 4px; }
            .match-info { flex-direction: column; align-items: stretch; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .blog-card {
                border-radius: 18px;
                box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
            }
            .blog-hero-panel {
                padding: 18px;
                border-radius: 18px;
            }
            .blog-hero-panel__grid {
                grid-template-columns: 1fr 1fr;
            }
            .blog-hero-panel__item {
                min-height: 92px;
                padding: 14px;
                border-radius: 16px;
            }
            .blog-filter-card {
                padding: 16px;
                border-radius: 18px;
            }
            .blog-featured-card {
                grid-template-columns: 1fr;
                border-radius: 18px;
            }
            .blog-featured-card__media {
                min-height: 220px;
            }
            .blog-featured-card__body {
                padding: 18px 16px;
            }
            .blog-featured-card__title {
                font-size: 1.28rem;
                line-height: 1.55;
            }
            .blog-featured-card__excerpt {
                font-size: 0.88rem;
                line-height: 1.85;
            }
            .blog-featured-card__meta {
                font-size: 0.74rem;
                gap: 8px 12px;
            }
            .blog-grid-head {
                align-items: start;
                flex-direction: column;
            }
            .blog-cover {
                min-height: 180px;
            }
            .blog-body {
                padding: 16px 16px 12px;
            }
            .blog-meta {
                gap: 8px;
                font-size: 0.72rem;
                line-height: 1.5;
                margin-bottom: 8px;
            }
            .blog-title {
                font-size: 0.98rem;
                line-height: 1.55;
                margin-bottom: 8px;
            }
            .blog-excerpt {
                font-size: 0.84rem;
                line-height: 1.75;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .blog-footer {
                padding: 12px 16px 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .blog-read-more {
                width: 100%;
                justify-content: center;
                padding: 0.72rem 0.9rem;
                border-radius: 14px;
                background: rgba(92,107,192,0.08);
            }
            .blog-footer .badge {
                align-self: flex-start;
            }
            .article-sidebar-card {
                padding: 16px;
                border-radius: 18px;
            }
            .article-reading-card {
                padding: 16px;
                border-radius: 18px;
            }
            .article-side-stack {
                position: static;
            }
            .article-hero {
                min-height: 260px;
            }
            .article-intro-card {
                margin: -36px 16px 0;
                padding: 16px;
                border-radius: 18px;
            }
            .article-hero-title {
                font-size: 1.32rem;
                line-height: 1.55;
            }
            .article-hero-excerpt {
                font-size: 0.88rem;
                line-height: 1.8;
            }
            .article-intro-meta {
                gap: 8px 12px;
                font-size: 0.75rem;
            }
            .article-content {
                font-size: 0.96rem;
                line-height: 1.95;
            }
            .article-content .article-keyfacts ul {
                grid-template-columns: 1fr;
            }
            .article-content table th,
            .article-content table td {
                padding: 0.75rem 0.78rem;
                font-size: 0.84rem;
            }
            .article-content img {
                margin: 1.1rem auto;
                border-radius: 16px;
            }
        }

        @media (max-width: 991px) {
            .site-navbar {
                position: sticky;
                top: 0;
            }
            .site-navbar .container {
                min-height: 68px;
                gap: 10px;
                padding-top: 10px;
                padding-bottom: 10px;
                align-items: center;
                flex-wrap: nowrap;
                position: relative;
            }
            .site-navbar .brand {
                font-size: 1.05rem;
                min-width: 0;
                flex: 1 1 auto;
                width: auto;
                justify-content: flex-start;
                padding: 0;
            }
            .site-navbar .brand span {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 160px;
            }
            .site-nav-toggle {
                display: inline-flex;
            }
            .site-nav-stack {
                position: absolute;
                top: calc(100% + 8px);
                right: 12px;
                left: 12px;
                z-index: 120;
                margin: 0;
                padding: 12px;
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                width: auto;
                background: linear-gradient(180deg, rgba(39,58,126,0.98), rgba(43,68,152,0.98));
                border: 1px solid rgba(255,255,255,0.12);
                border-radius: 18px;
                box-shadow: 0 16px 40px rgba(15,23,42,0.32);
                backdrop-filter: blur(14px);
            }
            .site-nav-stack:not(.show) {
                display: none !important;
            }
            .site-navbar .nav-links {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 8px;
                margin-top: 0;
            }
            .site-navbar .nav-links li {
                width: 100%;
            }
            .site-navbar .nav-links a {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                text-align: right;
                min-height: 46px;
                width: 100%;
                border-radius: 12px;
                font-size: 0.88rem;
                line-height: 1.35;
                padding: 10px 14px;
                background: rgba(255,255,255,0.09);
            }
            .site-navbar .nav-right {
                width: 100%;
                margin: 0;
            }
            .site-navbar .nav-utility {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .site-search {
                width: 100%;
                min-height: 50px;
                padding: 7px;
                border-radius: 16px;
            }
            .site-search input {
                font-size: 0.92rem;
            }
            .timezone-toggle,
            .live-pill {
                width: 100%;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
            }
            .timezone-panel {
                top: auto;
                bottom: 16px;
                left: 50%;
                transform: translateX(-50%);
                width: calc(100vw - 24px);
                max-width: 360px;
                z-index: 150;
            }
            .timezone-panel-card {
                width: 100%;
                border-radius: 20px;
                padding: 16px;
            }
            .hero,
            .hero-section {
                padding: 42px 0 34px;
            }
            .section-head {
                margin-bottom: 18px;
            }
            .section-head h2,
            .section-title {
                font-size: 1.15rem;
            }
            .site-ad-wrap {
                padding: 12px 0;
            }
            .site-ad-card {
                padding: 12px;
                border-radius: 14px;
            }
            .site-footer {
                padding: 34px 0 20px;
                margin-top: 48px;
            }
            .site-footer .row {
                row-gap: 20px;
            }
        }

        @media (max-width: 640px) {
            .site-navbar .container {
                padding-right: 12px;
                padding-left: 12px;
            }
            .site-navbar .brand img {
                width: 24px;
                height: 24px;
            }
            .site-footer-brand-logo {
                width: 22px;
                height: 22px;
                border-radius: 7px;
                padding: 2px;
            }
            .site-navbar .brand span {
                max-width: 124px;
            }
            .site-navbar .nav-links a {
                min-height: 44px;
                font-size: 0.9rem;
            }
            .site-search,
            .timezone-toggle,
            .live-pill {
                min-height: 48px;
            }
            .hero,
            .hero-section {
                padding: 34px 0 28px;
            }
            .hero h1,
            .hero-title {
                font-size: 1.45rem;
                line-height: 1.35;
            }
            .hero p,
            .hero-subtitle {
                font-size: 0.9rem;
                line-height: 1.8;
            }
            .hero-buttons {
                gap: 10px;
            }
            .section-head {
                gap: 8px;
            }
            .match-card,
            .card,
            .overview-panel,
            .league-card {
                border-radius: 16px;
            }
            .team-block img,
            .team-logo {
                width: 42px;
                height: 42px;
            }
            .blog-cover {
                height: 172px;
            }
            .blog-body {
                padding: 14px 14px 10px;
            }
            .blog-title {
                font-size: 0.92rem;
                line-height: 1.5;
            }
            .blog-meta {
                gap: 6px 10px;
                font-size: 0.7rem;
            }
            .blog-excerpt {
                font-size: 0.8rem;
                line-height: 1.7;
                -webkit-line-clamp: 2;
            }
            .blog-footer {
                padding: 10px 14px 14px;
            }
            .article-hero {
                min-height: 228px;
            }
            .article-hero .overlay {
                padding: 22px 14px;
            }
            .article-hero-copy {
                padding: 12px 13px;
                border-radius: 16px;
            }
            .article-hero-badge {
                font-size: 0.68rem;
                padding: 0.4rem 0.68rem;
            }
            .article-hero-title {
                font-size: 1.18rem;
                line-height: 1.48;
            }
            .article-page-title {
                font-size: 1.32rem;
                line-height: 1.45;
            }
            .article-page-meta .badge {
                font-size: 0.7rem;
                padding: 0.46rem 0.68rem;
            }
            .article-content {
                font-size: 0.96rem;
                line-height: 1.95;
            }
            .article-content img {
                border-radius: 14px;
                box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
            }
        }

        @media (max-width: 420px) {
            .blog-card {
                border-radius: 16px;
            }
            .blog-cover {
                height: 158px;
            }
            .blog-title {
                font-size: 0.88rem;
            }
            .blog-read-more {
                font-size: 0.8rem;
                padding: 0.68rem 0.8rem;
            }
            .article-hero {
                min-height: 210px;
            }
            .article-hero .overlay {
                padding: 20px 12px;
            }
            .article-hero-copy {
                padding: 11px 12px;
            }
            .article-hero-title {
                font-size: 1.06rem;
            }
            .article-hero-excerpt {
                font-size: 0.82rem;
            }
        }
