    :root {
      --bg: #0a0f1a;
      --surface: #111827;
      --surface2: #1a2236;
      --border: #1f2d45;
      --text: #b8c5d8;
      --muted: #5c7090;
      --heading: #e8f0fe;
      --red: #dc2626;
      --red2: #ef4444;
      --gold: #f59e0b;
      --gold2: #fbbf24;
      --blue: #2563eb;
      --blue2: #3b82f6;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--bg); color: var(--text); font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif; font-size: 15px; line-height: 1.75; }
    a { color: var(--blue2); text-decoration: none; }
    a:hover { color: var(--gold2); }

    /* ── Header ── */
    header { background: var(--surface); border-bottom: 2px solid var(--red); }
    .header-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; justify-content: space-between; }
    .logo-wrap { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
    .logo-badge { background: var(--red); color: #fff; font-size: 12px; font-weight: 900; padding: 4px 10px; border-radius: 4px; letter-spacing: .5px; }
    .logo-text { font-size: 20px; font-weight: 900; color: var(--heading); letter-spacing: -.5px; }
    .logo-text span { color: var(--red2); }
    nav { display: flex; gap: 2px; align-items: stretch; }
    nav a { font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 0 16px; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: all .15s; }
    nav a:hover { color: var(--heading); border-bottom-color: var(--red); }
    .nav-live { color: var(--red2) !important; }
    .nav-live::before { content: '●'; font-size: 8px; margin-right: 5px; animation: blink 1.2s infinite; }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

    /* ── Ticker ── */
    .ticker { background: var(--red); padding: 7px 0; overflow: hidden; }
    .ticker-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; gap: 40px; font-size: 12.5px; font-weight: 700; color: #fff; white-space: nowrap; animation: scroll-left 30s linear infinite; }
    @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ── Hero ── */
    .hero { background: linear-gradient(135deg, rgba(14,21,32,0.88) 0%, rgba(10,15,26,0.92) 70%), url('img/hero-stadium.webp') center/cover no-repeat; border-bottom: 1px solid var(--border); padding: 52px 24px 44px; position: relative; overflow: hidden; }
    .hero::before { content: '⚽'; position: absolute; right: 60px; top: 50%; transform: translateY(-50%); font-size: 200px; opacity: .04; pointer-events: none; }
    .hero-inner { max-width: 1100px; margin: 0 auto; }
    .hero-kicker { display: inline-flex; align-items: center; gap: 7px; background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.25); color: var(--red2); font-size: 12px; font-weight: 900; padding: 4px 12px; border-radius: 4px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
    .hero h1 { font-size: 42px; font-weight: 900; color: var(--heading); line-height: 1.2; letter-spacing: -1px; margin-bottom: 14px; }
    .hero h1 em { font-style: normal; color: var(--gold2); }
    .hero-sub { font-size: 15.5px; color: var(--muted); max-width: 560px; margin-bottom: 28px; }
    .hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
    .hero-stat { text-align: center; }
    .stat-num { font-size: 30px; font-weight: 900; color: var(--red2); display: block; letter-spacing: -1px; }
    .stat-label { font-size: 12px; color: var(--muted); }

    /* ── Layout ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 44px 24px; display: grid; grid-template-columns: 1fr 280px; gap: 44px; }
    @media (max-width: 880px) { .container { grid-template-columns: 1fr; } }

    /* ── Section Head ── */
    .sec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .sec-title { font-size: 16px; font-weight: 900; color: var(--heading); }
    .sec-line { flex: 1; height: 1px; background: var(--border); }
    .sec-more { font-size: 12.5px; color: var(--muted); }
    .sec-more:hover { color: var(--blue2); }

    /* ── Posts ── */
    .post-hero { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
    .post-hero-banner { height: 200px; background: linear-gradient(135deg, #1a0a0a, #2a1010); display: flex; align-items: center; justify-content: center; font-size: 80px; }
    .post-hero-body { padding: 22px 26px; }
    .post-label { display: inline-block; font-size: 10.5px; font-weight: 900; padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
    .lbl-red { background: rgba(220,38,38,.15); color: var(--red2); border: 1px solid rgba(220,38,38,.25); }
    .lbl-gold { background: rgba(245,158,11,.12); color: var(--gold2); border: 1px solid rgba(245,158,11,.25); }
    .lbl-blue { background: rgba(37,99,235,.12); color: var(--blue2); border: 1px solid rgba(37,99,235,.25); }
    .lbl-green { background: rgba(16,185,129,.12); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
    .post-hero-body h2 { font-size: 22px; font-weight: 900; color: var(--heading); line-height: 1.35; margin-bottom: 10px; }
    .post-hero-body h2 a { color: inherit; }
    .post-hero-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }
    .post-meta { font-size: 12px; color: var(--muted); }
    .post-meta b { color: var(--text); }
    .post-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
    @media (max-width: 620px) { .post-cols { grid-template-columns: 1fr; } }
    .post-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color .2s; }
    .post-card:hover { border-color: var(--red); }
    .card-emo { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
    .ce-red { background: linear-gradient(135deg, #1a0808, #120505); }
    .ce-gold { background: linear-gradient(135deg, #1a1405, #0f0c04); }
    .ce-blue { background: linear-gradient(135deg, #050e1f, #030a16); }
    .ce-teal { background: linear-gradient(135deg, #041412, #020c0b); }
    .card-body { padding: 13px 15px 16px; }
    .card-body h3 { font-size: 14px; font-weight: 700; color: var(--heading); line-height: 1.4; margin: 7px 0 8px; }
    .card-body h3 a { color: inherit; }
    .card-body h3 a:hover { color: var(--red2); }
    .card-body p { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
    .card-link { font-size: 12px; font-weight: 700; color: var(--red2); }
    .list-news { display: flex; flex-direction: column; }
    .news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
    .news-item:last-child { border-bottom: none; }
    .news-flag { font-size: 22px; flex-shrink: 0; }
    .news-title { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
    .news-title a { color: inherit; }
    .news-title a:hover { color: var(--red2); }
    .news-meta { font-size: 12px; color: var(--muted); }

    /* ── Sidebar ── */
    .sidebar { display: flex; flex-direction: column; gap: 20px; }
    .widget { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
    .widget-title { font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
    .author-ava { width: 54px; height: 54px; border-radius: 10px; background: linear-gradient(135deg, var(--red), #7c0000); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 12px; }
    .author-name { font-size: 16px; font-weight: 900; color: var(--heading); }
    .author-role { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
    .author-bio { font-size: 13px; color: var(--text); line-height: 1.6; }
    .odds-list { display: flex; flex-direction: column; gap: 10px; }
    .odds-item { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; }
    .odds-team { font-size: 13.5px; font-weight: 700; color: var(--heading); }
    .odds-val { font-size: 13px; font-weight: 700; color: var(--gold2); background: rgba(245,158,11,.1); padding: 2px 8px; border-radius: 4px; }
    .cat-list { display: flex; flex-direction: column; gap: 8px; }
    .cat-row { display: flex; justify-content: space-between; }
    .cat-row a { font-size: 13.5px; color: var(--text); }
    .cat-row a:hover { color: var(--red2); }
    .cat-n { font-size: 11.5px; background: var(--surface2); color: var(--muted); padding: 1px 7px; border-radius: 12px; }

    /* ── Footer ── */
    footer { background: #070b13; border-top: 1px solid var(--border); padding: 44px 24px 24px; margin-top: 24px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 28px; }
    @media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-logo { font-size: 18px; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .footer-logo span { color: var(--red2); }
    .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13.5px; color: var(--text); }
    .footer-links a:hover { color: var(--red2); }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--muted); }
