/* roulang page: index */
:root {
      --primary: #2f6fed;
      --primary-dark: #1d4fb0;
      --primary-light: #eaf1fd;
      --accent: #f5a623;
      --bg: #f7f9fc;
      --surface: #ffffff;
      --text: #1a2634;
      --text-muted: #5b6b7f;
      --border: #dfe7f0;
      --footer-bg: #0f1c2a;
      --radius-card: 14px;
      --radius-btn: 10px;
      --radius-tag: 6px;
      --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
      --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
      --transition: all .25s ease;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    input { font-family: inherit; outline: none; }
    .container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
    @media (max-width: 640px) {
      .container { padding-left: 16px; padding-right: 16px; }
    }

    /* Nav */
    .site-header {
      position: sticky; top: 0; z-index: 50;
      height: 64px; background: var(--surface);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
    }
    .site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
    .logo-text { font-weight: 700; font-size: 20px; color: var(--primary); letter-spacing: 1px; white-space: nowrap; }
    .logo-text:hover { color: var(--primary-dark); }
    .nav-links { display: flex; align-items: center; gap: 28px; margin-left: 40px; }
    .nav-links a {
      font-size: 15px; font-weight: 500; color: var(--text-muted);
      padding: 6px 2px; position: relative; white-space: nowrap;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a.active { color: var(--primary); }
    .nav-links a.active::after {
      content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--primary); border-radius: 2px;
    }
    .nav-cta {
      background: var(--accent); color: #fff;
      font-weight: 600; font-size: 14px;
      padding: 8px 18px; border-radius: var(--radius-btn);
      white-space: nowrap; transition: var(--transition);
    }
    .nav-cta:hover { background: #d98f0d; box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3); }
    .nav-cta:focus-visible { outline: 3px solid rgba(245, 166, 35, 0.4); outline-offset: 2px; }

    .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; }
    .mobile-menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
    .mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--surface); z-index: 49; padding: 32px 24px;
      flex-direction: column; align-items: center; gap: 20px;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 20px; font-weight: 600; color: var(--text); padding: 8px 0; }
    .mobile-menu a.active { color: var(--primary); }
    .mobile-menu .nav-cta { font-size: 16px; padding: 10px 28px; margin-top: 12px; }

    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .mobile-menu-btn { display: flex; }
      .nav-cta.desktop-cta { display: none; }
    }
    @media (min-width: 1025px) {
      .mobile-menu-btn { display: none; }
      .mobile-menu { display: none; }
    }

    /* Buttons */
    .btn-primary {
      display: inline-block; background: var(--primary); color: #fff;
      font-weight: 600; font-size: 15px; padding: 12px 28px;
      border-radius: var(--radius-btn); transition: var(--transition);
      border: none; text-align: center;
    }
    .btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3); }
    .btn-primary:focus-visible { outline: 3px solid rgba(47, 111, 237, 0.35); outline-offset: 2px; }
    .btn-secondary {
      display: inline-block; background: transparent; color: var(--primary);
      font-weight: 600; font-size: 15px; padding: 10px 26px;
      border-radius: var(--radius-btn); border: 1.5px solid var(--primary);
      transition: var(--transition); text-align: center;
    }
    .btn-secondary:hover { background: var(--primary-light); border-color: var(--primary); }
    .btn-secondary:focus-visible { outline: 3px solid rgba(47, 111, 237, 0.3); outline-offset: 2px; }
    .btn-accent {
      display: inline-block; background: var(--accent); color: #fff;
      font-weight: 600; font-size: 15px; padding: 12px 30px;
      border-radius: var(--radius-btn); transition: var(--transition);
      border: none; text-align: center;
    }
    .btn-accent:hover { background: #d98f0d; box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4); }
    .btn-accent:focus-visible { outline: 3px solid rgba(245, 166, 35, 0.35); outline-offset: 2px; }

    /* Cards */
    .card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-card); box-shadow: var(--shadow-card);
      transition: var(--transition);
    }
    .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
    .tag {
      display: inline-block; font-size: 12px; font-weight: 500;
      padding: 3px 10px; border-radius: var(--radius-tag);
      background: var(--primary-light); color: var(--primary);
    }
    .tag-accent { background: rgba(245, 166, 35, 0.12); color: #c07a00; }
    .badge-status {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 600; padding: 2px 10px;
      border-radius: 999px;
    }
    .badge-live { background: #e53e3e; color: #fff; }
    .badge-upcoming { background: var(--primary-light); color: var(--primary); }

    /* Section */
    .section-pad { padding-top: 64px; padding-bottom: 64px; }
    .section-bg-light { background: var(--primary-light); }
    .section-bg-dark { background: var(--footer-bg); }
    .section-title { font-size: 28px; font-weight: 700; line-height: 1.25; color: var(--text); }
    .section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 10px; }
    @media (max-width: 768px) {
      .section-pad { padding-top: 44px; padding-bottom: 44px; }
      .section-title { font-size: 23px; }
    }

    /* Hero */
    .hero-section {
      position: relative; min-height: 85vh; display: flex; align-items: center;
      overflow: hidden; color: #fff;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('/assets/images/940f3ee866ff7a29.jpg') center/cover no-repeat;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: rgba(15, 28, 42, 0.52);
      z-index: 1;
    }
    .hero-content { position: relative; z-index: 2; max-width: 700px; }
    .hero-title { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 18px; letter-spacing: 1px; }
    .hero-desc { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .hero-play-btn {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(255,255,255,0.16); border: 2px solid rgba(255,255,255,0.7);
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition); margin-bottom: 20px; cursor: pointer;
    }
    .hero-play-btn:hover { background: rgba(255,255,255,0.28); border-color: #fff; transform: scale(1.06); }
    .hero-play-btn svg { width: 22px; height: 22px; fill: #fff; }
    .hero-stats { display: flex; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
    .hero-stat { text-align: left; }
    .hero-stat .num { font-size: 24px; font-weight: 700; color: var(--accent); }
    .hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.75); }
    @media (max-width: 768px) {
      .hero-section { min-height: 70vh; }
      .hero-title { font-size: 30px; }
      .hero-stats { gap: 20px; }
    }

    /* News */
    .news-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
    .news-item:last-child { border-bottom: none; }
    .news-date { font-size: 13px; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
    .news-title { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.45; margin-bottom: 4px; }
    .news-summary { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
    .news-link { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; }
    .news-link:hover { color: var(--primary-dark); text-decoration: underline; }

    /* FAQ */
    .faq-item { background: var(--surface); border-radius: var(--radius-card); border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
    .faq-question {
      width: 100%; text-align: left; font-size: 16px; font-weight: 600; color: var(--text);
      padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
    }
    .faq-icon { font-size: 20px; color: var(--primary); transition: var(--transition); flex-shrink: 0; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer p { padding: 0 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

    /* Calendar */
    .calendar-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
    .calendar-scroll::-webkit-scrollbar { height: 6px; }
    .calendar-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
    .calendar-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
    .cal-card { min-width: 220px; scroll-snap-align: start; }

    /* Data bar */
    .data-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 768px) { .data-bar { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .data-bar { grid-template-columns: 1fr; } }

    /* Player cards */
    .player-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 1024px) { .player-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .player-grid { grid-template-columns: 1fr; } }

    /* Footer */
    .site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.8); padding: 56px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
    .footer-logo { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 1px; }
    .footer-desc { font-size: 14px; line-height: 1.65; margin-top: 12px; color: rgba(255,255,255,0.65); }
    .footer-col h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 14px; }
    .footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 4px 0; }
    .footer-col a:hover { color: var(--accent); }
    .footer-subscribe { display: flex; gap: 8px; margin-top: 12px; }
    .footer-subscribe input {
      flex: 1; height: 44px; border-radius: var(--radius-btn) 0 0 var(--radius-btn);
      border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
      color: #fff; padding: 0 14px; font-size: 14px;
    }
    .footer-subscribe input::placeholder { color: rgba(255,255,255,0.45); }
    .footer-subscribe input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,0.2); }
    .footer-subscribe button {
      height: 44px; background: var(--accent); color: #fff; font-weight: 600;
      padding: 0 18px; border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
      transition: var(--transition); white-space: nowrap;
    }
    .footer-subscribe button:hover { background: #d98f0d; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px;
      padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
      font-size: 14px; color: rgba(255,255,255,0.5);
    }
    .footer-bottom a { color: rgba(255,255,255,0.6); }
    .footer-bottom a:hover { color: var(--accent); }
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* Misc */
    .icon-circle { 
      width: 44px; height: 44px; border-radius: 10px; 
      background: var(--primary-light); display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 700; color: var(--primary); flex-shrink: 0;
    }
    .step-line { display: flex; align-items: flex-start; gap: 20px; }
    .step-num {
      width: 36px; height: 36px; border-radius: 50%; background: var(--primary);
      color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .divider { height: 1px; background: var(--border); border: none; margin: 0; }
    .focus-ring:focus-visible { outline: 3px solid rgba(47, 111, 237, 0.35); outline-offset: 2px; }

/* roulang page: category2 */
:root {
            --primary: #2f6fed;
            --primary-dark: #1d4fb0;
            --primary-light: #eaf1fd;
            --accent: #f5a623;
            --bg: #f7f9fc;
            --surface: #ffffff;
            --text: #1a2634;
            --text-muted: #5b6b7f;
            --border: #dfe7f0;
            --footer-bg: #0f1c2a;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 6px;
            --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
            --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
            --transition: all .25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 640px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .logo-text:hover {
            color: var(--primary-dark);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: 40px;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a.active {
            color: var(--primary);
        }
        .nav-links a.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-cta {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            white-space: nowrap;
            transition: var(--transition);
        }
        .nav-cta:hover {
            background: #d98f0d;
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }
        .nav-cta:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.4);
            outline-offset: 2px;
        }
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }
        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--surface);
            z-index: 49;
            padding: 32px 24px;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            padding: 8px 0;
        }
        .mobile-menu a.active {
            color: var(--primary);
        }
        .mobile-menu .nav-cta {
            font-size: 16px;
            padding: 10px 28px;
            margin-top: 12px;
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .nav-cta.desktop-cta {
                display: none;
            }
        }
        @media (min-width: 1025px) {
            .mobile-menu-btn {
                display: none;
            }
            .mobile-menu {
                display: none;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3);
            transform: translateY(-1px);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.35);
            outline-offset: 2px;
        }
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            border-radius: var(--radius-btn);
            border: 1.5px solid var(--primary);
            transition: var(--transition);
            text-align: center;
        }
        .btn-secondary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }
        .btn-secondary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.3);
            outline-offset: 2px;
        }
        .btn-accent {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }
        .btn-accent:hover {
            background: #d98f0d;
            box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
            transform: translateY(-1px);
        }
        .btn-accent:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.35);
            outline-offset: 2px;
        }

        /* Cards */
        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            color: var(--primary);
        }
        .tag-accent {
            background: rgba(245, 166, 35, 0.12);
            color: #c07a00;
        }
        .badge-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 999px;
        }
        .badge-live {
            background: #e53e3e;
            color: #fff;
        }
        .badge-upcoming {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* Section */
        .section-pad {
            padding-top: 64px;
            padding-bottom: 64px;
        }
        .section-bg-light {
            background: var(--primary-light);
        }
        .section-bg-dark {
            background: var(--footer-bg);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 10px;
        }
        @media (max-width: 640px) {
            .section-pad {
                padding-top: 44px;
                padding-bottom: 44px;
            }
            .section-title {
                font-size: 22px;
            }
        }

        /* Page hero */
        .page-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #4a8af5 100%);
            color: #fff;
            padding-top: 56px;
            padding-bottom: 56px;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }
        .page-hero h1 {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 12px;
            position: relative;
            z-index: 1;
        }
        .page-hero p {
            font-size: 16px;
            line-height: 1.75;
            max-width: 760px;
            margin: 0;
            color: rgba(255, 255, 255, 0.88);
            position: relative;
            z-index: 1;
        }
        @media (max-width: 640px) {
            .page-hero {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero p {
                font-size: 14px;
            }
        }

        /* Player card */
        .player-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            overflow: hidden;
        }
        .player-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .player-avatar {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--primary-light);
        }
        .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }
        .player-card:hover .player-avatar img {
            transform: scale(1.05);
        }
        .player-info {
            padding: 14px 16px 16px;
        }
        .player-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 2px;
        }
        .player-team {
            font-size: 13px;
            color: var(--primary);
            font-weight: 500;
            margin: 0 0 6px;
        }
        .player-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .player-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        /* Team honor bar */
        .team-honor-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
        }
        .team-honor-item:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
            border-color: var(--primary);
        }
        .team-honor-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .team-honor-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin: 0;
        }
        .team-honor-award {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
            margin: 0;
        }

        /* Hot player */
        .hot-player-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: var(--transition);
        }
        .hot-player-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .hot-player-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--primary-light);
        }
        .hot-player-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hot-player-body {
            padding: 18px 20px 20px;
        }
        .hot-player-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 6px;
        }
        .hot-player-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0 0 10px;
        }

        /* Data bar */
        .data-bar-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            transition: var(--transition);
        }
        .data-bar-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .data-bar-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin: 0 0 4px;
        }
        .data-bar-value {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }
        .data-bar-progress {
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }
        .data-bar-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 2px;
            transition: width .6s ease;
        }

        /* News snippet */
        .news-snippet {
            background: var(--surface);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 0 var(--radius-card) var(--radius-card) 0;
            padding: 18px 20px;
            transition: var(--transition);
        }
        .news-snippet:hover {
            box-shadow: var(--shadow-card);
            transform: translateX(2px);
        }
        .news-snippet-date {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0 0 4px;
            font-weight: 500;
        }
        .news-snippet-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 6px;
        }
        .news-snippet-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Footer */
        .site-footer {
            background: var(--footer-bg);
            color: #fff;
            padding-top: 56px;
            padding-bottom: 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            max-width: 340px;
            margin: 0;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }
        .footer-subscribe input {
            flex: 1;
            height: 42px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding: 0 14px;
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-subscribe input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
            background: rgba(255, 255, 255, 0.12);
        }
        .footer-subscribe button {
            height: 42px;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 0 18px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            white-space: nowrap;
        }
        .footer-subscribe button:hover {
            background: #d98f0d;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* CTA section */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: "";
            position: absolute;
            left: -60px;
            bottom: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }
        .cta-banner h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 0 0 8px;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 20px;
            position: relative;
            z-index: 1;
        }
        .cta-banner .btn-accent {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 640px) {
            .cta-banner {
                padding: 28px 20px;
            }
            .cta-banner h2 {
                font-size: 20px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #2f6fed;
            --primary-dark: #1d4fb0;
            --primary-light: #eaf1fd;
            --accent: #f5a623;
            --bg: #f7f9fc;
            --surface: #ffffff;
            --text: #1a2634;
            --text-muted: #5b6b7f;
            --border: #dfe7f0;
            --footer-bg: #0f1c2a;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 6px;
            --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
            --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
            --transition: all .25s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .logo-text:hover {
            color: var(--primary-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: 40px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-cta {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            white-space: nowrap;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: #d98f0d;
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.4);
            outline-offset: 2px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--surface);
            z-index: 49;
            padding: 32px 24px;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            overflow-y: auto;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            padding: 8px 0;
        }

        .mobile-menu a.active {
            color: var(--primary);
        }

        .mobile-menu .nav-cta {
            font-size: 16px;
            padding: 10px 28px;
            margin-top: 12px;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3);
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.35);
            outline-offset: 2px;
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            border-radius: var(--radius-btn);
            border: 1.5px solid var(--primary);
            transition: var(--transition);
            text-align: center;
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        .btn-secondary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.3);
            outline-offset: 2px;
        }

        .btn-accent {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-accent:hover {
            background: #d98f0d;
            box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
        }

        .btn-accent:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.35);
            outline-offset: 2px;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            color: var(--primary);
        }

        .tag-accent {
            background: rgba(245, 166, 35, 0.12);
            color: #c07a00;
        }

        .badge-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 999px;
        }

        .badge-live {
            background: #e53e3e;
            color: #fff;
        }

        .badge-upcoming {
            background: var(--primary-light);
            color: var(--primary);
        }

        .section-pad {
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .section-bg-light {
            background: var(--primary-light);
        }

        .section-bg-dark {
            background: var(--footer-bg);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 10px;
        }

        .article-list-item {
            display: flex;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .article-list-item:hover {
            background: var(--primary-light);
            border-radius: 8px;
            padding-left: 12px;
            padding-right: 12px;
        }

        .article-thumb {
            width: 180px;
            height: 110px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--primary-light);
        }

        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .difficulty-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .difficulty-filter .filter-chip {
            padding: 8px 20px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 14px;
            border: 1px solid var(--border);
            background: var(--surface);
            color: var(--text-muted);
            transition: var(--transition);
            cursor: pointer;
        }

        .difficulty-filter .filter-chip:hover,
        .difficulty-filter .filter-chip.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .hot-card {
            overflow: hidden;
            border-radius: var(--radius-card);
            background: var(--surface);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .hot-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .hot-card .hot-thumb {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .hot-card .hot-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .hot-card:hover .hot-thumb img {
            transform: scale(1.03);
        }

        .term-item {
            padding: 16px 18px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: var(--transition);
        }

        .term-item:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .site-footer {
            background: var(--footer-bg);
            color: rgba(255, 255, 255, 0.9);
            padding-top: 48px;
            padding-bottom: 12px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
            gap: 32px;
            padding-bottom: 28px;
        }

        .footer-logo {
            font-weight: 700;
            font-size: 22px;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            padding: 5px 0;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .footer-subscribe input {
            flex: 1;
            height: 44px;
            border-radius: 10px 0 0 10px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding: 0 14px;
            font-size: 14px;
        }

        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-subscribe input:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.5);
            outline-offset: 0;
        }

        .footer-subscribe button {
            height: 44px;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            padding: 0 20px;
            border-radius: 0 10px 10px 0;
            white-space: nowrap;
            transition: var(--transition);
        }

        .footer-subscribe button:hover {
            background: #d98f0d;
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-cta.desktop-cta {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .section-pad {
                padding-top: 44px;
                padding-bottom: 44px;
            }
            .article-list-item {
                flex-direction: column;
                gap: 12px;
                padding: 14px 0;
            }
            .article-thumb {
                width: 100%;
                height: 180px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
            .difficulty-filter {
                gap: 6px;
            }
            .difficulty-filter .filter-chip {
                padding: 6px 14px;
                font-size: 13px;
            }
        }

/* roulang page: category1 */
:root {
      --primary: #2f6fed;
      --primary-dark: #1d4fb0;
      --primary-light: #eaf1fd;
      --accent: #f5a623;
      --bg: #f7f9fc;
      --surface: #ffffff;
      --text: #1a2634;
      --text-muted: #5b6b7f;
      --border: #dfe7f0;
      --footer-bg: #0f1c2a;
      --radius-card: 14px;
      --radius-btn: 10px;
      --radius-tag: 6px;
      --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
      --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
      --transition: all .25s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    button, input {
      font-family: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
    }

    input {
      outline: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* Header Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: 64px;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .logo-text {
      font-weight: 700;
      font-size: 20px;
      color: var(--primary);
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .logo-text:hover {
      color: var(--primary-dark);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: 40px;
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 2px;
      position: relative;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a.active {
      color: var(--primary);
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .nav-cta {
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      padding: 8px 18px;
      border-radius: var(--radius-btn);
      white-space: nowrap;
      transition: var(--transition);
      display: inline-block;
      text-align: center;
    }

    .nav-cta:hover {
      background: #d98f0d;
      box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
    }

    .nav-cta:focus-visible,
    .btn-primary:focus-visible,
    .btn-secondary:focus-visible,
    .btn-accent:focus-visible,
    .btn-mini:focus-visible {
      outline: 3px solid rgba(47, 111, 237, 0.35);
      outline-offset: 2px;
    }

    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
    }

    .mobile-menu-btn span {
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }

    .mobile-menu-btn.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface);
      z-index: 49;
      padding: 32px 24px;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
      padding: 8px 0;
    }

    .mobile-menu a.active {
      color: var(--primary);
    }

    .mobile-menu .nav-cta {
      font-size: 16px;
      padding: 10px 28px;
      margin-top: 12px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-accent {
      display: inline-block;
      font-weight: 600;
      font-size: 15px;
      border-radius: var(--radius-btn);
      transition: var(--transition);
      text-align: center;
      border: none;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 12px 28px;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary);
      padding: 10px 26px;
      border: 1.5px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary-light);
      border-color: var(--primary);
    }

    .btn-accent {
      background: var(--accent);
      color: #fff;
      padding: 12px 30px;
    }

    .btn-accent:hover {
      background: #d98f0d;
      box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
    }

    .btn-mini {
      background: var(--primary-light);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: var(--radius-btn);
      transition: var(--transition);
      white-space: nowrap;
      text-align: center;
    }

    .btn-mini:hover {
      background: var(--primary);
      color: #fff;
    }

    .btn-ghost-light {
      display: inline-block;
      font-weight: 600;
      font-size: 15px;
      padding: 11px 26px;
      border-radius: var(--radius-btn);
      border: 1.5px solid rgba(255,255,255,0.75);
      color: #fff;
      transition: var(--transition);
      text-align: center;
    }

    .btn-ghost-light:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
    }

    /* Sections */
    .section-pad {
      padding-top: 64px;
      padding-bottom: 64px;
    }

    .section-bg-light {
      background: var(--primary-light);
    }

    .section-bg-dark {
      background: var(--footer-bg);
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--text);
    }

    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 10px;
    }

    .section-head {
      margin-bottom: 32px;
    }

    .section-head .tag {
      margin-bottom: 12px;
    }

    .section-head h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--text);
      margin: 0 0 8px;
    }

    .section-head p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    .section-bg-dark .section-head h2 {
      color: #fff;
    }

    .section-bg-dark .section-head p {
      color: rgba(255,255,255,0.65);
    }

    /* Tags */
    .tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: var(--radius-tag);
      background: var(--primary-light);
      color: var(--primary);
    }

    .tag-accent {
      background: rgba(245, 166, 35, 0.12);
      color: #c07a00;
    }

    .badge-status,
    .badge-live,
    .badge-upcoming {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      font-weight: 600;
      padding: 2px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .badge-live {
      background: #e53e3e;
      color: #fff;
    }

    .badge-upcoming {
      background: var(--primary-light);
      color: var(--primary);
    }

    /* Cards */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      transition: var(--transition);
    }

    .card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }

    /* Category Hero */
    .cat-hero {
      position: relative;
      padding: 70px 0;
      background-image: url('/assets/images/940f3ee866ff7a29.jpg');
      background-size: cover;
      background-position: center;
      isolation: isolate;
    }

    .cat-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(15, 28, 42, 0.92) 0%, rgba(29, 79, 176, 0.82) 55%, rgba(47, 111, 237, 0.72) 100%);
      z-index: -1;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(245, 166, 35, 0.18);
      color: #ffcd7a;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 18px;
      letter-spacing: 1px;
    }

    .cat-hero h1 {
      max-width: 800px;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin: 0 0 16px;
    }

    .hero-desc {
      max-width: 760px;
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255,255,255,0.85);
      margin: 0 0 28px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* Today Focus Card */
    .today-card {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      overflow: hidden;
    }

    .today-media {
      position: relative;
      min-height: 320px;
    }

    .today-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .today-media .badge-live {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      padding: 5px 14px;
    }

    .today-body {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .match-meta {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .today-body h3 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--text);
      margin: 0 0 12px;
    }

    .today-body p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0 0 18px;
    }

    .match-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px;
    }

    /* Schedule List */
    .schedule-group {
      margin-bottom: 28px;
    }

    .schedule-group h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(47, 111, 237, 0.14);
    }

    .schedule-item {
      display: grid;
      grid-template-columns: 84px 1fr auto auto;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }

    .schedule-item:last-child {
      border-bottom: none;
    }

    .schedule-item:hover {
      background: rgba(255,255,255,0.7);
      padding-left: 8px;
      padding-right: 8px;
      border-radius: 8px;
    }

    .time-block {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .time-block strong {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
    }

    .time-block small {
      font-size: 12px;
      color: var(--text-muted);
    }

    .matchup {
      min-width: 0;
    }

    .matchup strong {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
    }

    .matchup span {
      color: var(--text-muted);
      font-size: 13px;
      margin: 0 8px;
    }

    .matchup p {
      margin: 4px 0 0;
      font-size: 13px;
      color: var(--text-muted);
    }

    .stream-info {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    /* Upcoming Scroll */
    .upcoming-scroll {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 14px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .upcoming-scroll::-webkit-scrollbar {
      height: 6px;
    }

    .upcoming-scroll::-webkit-scrollbar-track {
      background: var(--primary-light);
      border-radius: 999px;
    }

    .upcoming-scroll::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 999px;
    }

    .mini-match-card {
      min-width: 210px;
      flex: 0 0 auto;
      padding: 20px 18px;
      scroll-snap-align: start;
    }

    .mini-date {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
    }

    .mini-time {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin: 4px 0 10px;
    }

    .mini-team {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
    }

    .mini-game {
      font-size: 12px;
      color: var(--text-muted);
      margin: 4px 0 12px;
    }

    /* Platform Section */
    .platform-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .platform-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius-card);
      padding: 24px;
      transition: var(--transition);
    }

    .platform-item:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(245, 166, 35, 0.4);
    }

    .platform-name {
      display: block;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .platform-item span:not(.platform-name) {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* Tips */
    .tips-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .tip-card {
      padding: 24px;
    }

    .tip-num {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      color: var(--accent);
      background: rgba(245, 166, 35, 0.12);
      padding: 4px 10px;
      border-radius: var(--radius-tag);
      margin-bottom: 14px;
    }

    .tip-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 8px;
    }

    .tip-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, #1d4fb0 0%, #2f6fed 55%, #3f7ff7 100%);
      padding-top: 68px;
      padding-bottom: 68px;
    }

    .cta-inner {
      text-align: center;
    }

    .cta-inner h2 {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      margin: 0 0 12px;
      line-height: 1.3;
    }

    .cta-inner p {
      font-size: 16px;
      color: rgba(255,255,255,0.82);
      margin: 0 auto 28px;
      max-width: 560px;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* Footer */
    .site-footer {
      background: var(--footer-bg);
      color: #fff;
      padding-top: 56px;
      padding-bottom: 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 36px;
      margin-bottom: 36px;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .footer-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.62);
      line-height: 1.8;
      margin: 0;
      max-width: 320px;
    }

    .footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 16px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(255,255,255,0.62);
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .footer-subscribe {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .footer-subscribe input {
      flex: 1;
      min-width: 0;
      height: 44px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: var(--radius-btn) 0 0 var(--radius-btn);
      padding: 0 14px;
      color: #fff;
      font-size: 14px;
    }

    .footer-subscribe input::placeholder {
      color: rgba(255,255,255,0.45);
    }

    .footer-subscribe input:focus {
      border-color: var(--accent);
      outline: 3px solid rgba(245, 166, 35, 0.25);
    }

    .footer-subscribe button {
      height: 44px;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      padding: 0 20px;
      border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
      transition: var(--transition);
      white-space: nowrap;
    }

    .footer-subscribe button:hover {
      background: #d98f0d;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.65);
      transition: var(--transition);
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    /* Responsive */
    @media (max-width: 1023px) {
      .nav-links {
        display: none;
      }

      .desktop-cta {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 767px) {
      .section-pad {
        padding-top: 44px;
        padding-bottom: 44px;
      }

      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .cat-hero {
        padding: 48px 0;
      }

      .cat-hero h1 {
        font-size: 28px;
      }

      .hero-desc {
        font-size: 15px;
      }

      .today-card {
        grid-template-columns: 1fr;
      }

      .today-media {
        min-height: 220px;
      }

      .today-body {
        padding: 24px;
      }

      .schedule-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
        text-align: left;
      }

      .schedule-item:hover {
        padding-left: 0;
        padding-right: 0;
      }

      .time-block {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
      }

      .stream-info {
        justify-content: flex-start;
      }

      .platform-grid,
      .tips-grid {
        grid-template-columns: 1fr;
      }

      .cta-inner h2 {
        font-size: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category4 */
:root {
            --primary: #2f6fed;
            --primary-dark: #1d4fb0;
            --primary-light: #eaf1fd;
            --accent: #f5a623;
            --bg: #f7f9fc;
            --surface: #ffffff;
            --text: #1a2634;
            --text-muted: #5b6b7f;
            --border: #dfe7f0;
            --footer-bg: #0f1c2a;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 6px;
            --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
            --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
            --transition: all .25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .logo-text:hover {
            color: var(--primary-dark);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: 40px;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a.active {
            color: var(--primary);
        }
        .nav-links a.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-cta {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            white-space: nowrap;
            transition: var(--transition);
        }
        .nav-cta:hover {
            background: #d98f0d;
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }
        .nav-cta:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.4);
            outline-offset: 2px;
        }
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }
        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--surface);
            z-index: 49;
            padding: 32px 24px;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            padding: 8px 0;
        }
        .mobile-menu a.active {
            color: var(--primary);
        }
        .mobile-menu .nav-cta {
            font-size: 16px;
            padding: 10px 28px;
            margin-top: 12px;
        }
        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.35);
            outline-offset: 2px;
        }
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            border-radius: var(--radius-btn);
            border: 1.5px solid var(--primary);
            transition: var(--transition);
            text-align: center;
        }
        .btn-secondary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }
        .btn-secondary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.3);
            outline-offset: 2px;
        }
        .btn-accent {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }
        .btn-accent:hover {
            background: #d98f0d;
            box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
        }
        .btn-accent:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.35);
            outline-offset: 2px;
        }
        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            color: var(--primary);
        }
        .tag-accent {
            background: rgba(245, 166, 35, 0.12);
            color: #c07a00;
        }
        .section-pad {
            padding-top: 64px;
            padding-bottom: 64px;
        }
        .section-bg-light {
            background: var(--primary-light);
        }
        .section-bg-dark {
            background: var(--footer-bg);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 10px;
        }
        .site-footer {
            background: var(--footer-bg);
            color: #e6edf5;
            padding: 56px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }
        .footer-subscribe input {
            flex: 1;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px 0 0 10px;
            padding: 0 16px;
            color: #fff;
            font-size: 14px;
            min-width: 0;
        }
        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-subscribe input:focus {
            border-color: rgba(255, 255, 255, 0.3);
            outline: 3px solid rgba(245, 166, 35, 0.2);
        }
        .footer-subscribe button {
            height: 44px;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 0 20px;
            border-radius: 0 10px 10px 0;
            white-space: nowrap;
            transition: var(--transition);
        }
        .footer-subscribe button:hover {
            background: #d98f0d;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }
        @media (min-width: 1025px) {
            .nav-links {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
            .desktop-cta {
                display: inline-block;
            }
        }
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .desktop-cta {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 640px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-pad {
                padding-top: 44px;
                padding-bottom: 44px;
            }
            .section-title {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .btn-primary,
            .btn-accent {
                padding: 10px 22px;
                font-size: 14px;
            }
        }
        .news-date-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            border-radius: 8px;
            padding: 8px 14px;
            min-width: 64px;
            text-align: center;
        }
        .news-date-block .day {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }
        .news-date-block .month {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        .news-item:hover {
            background: rgba(234, 241, 253, 0.4);
            padding-left: 12px;
            border-radius: 4px;
        }
        .news-item-thumb {
            width: 180px;
            flex-shrink: 0;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }
        .news-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 6px;
        }
        .news-item-content h3:hover {
            color: var(--primary);
        }
        .news-item-content .news-summary {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .news-item-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .read-more-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }
        .read-more-link:hover {
            color: var(--primary-dark);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag-cloud-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
        }
        .tag-cloud .tag-cloud-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            box-shadow: 0 2px 8px rgba(47, 111, 237, 0.15);
        }
        .editor-card {
            display: flex;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: var(--transition);
        }
        .editor-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .editor-card-thumb {
            width: 140px;
            flex-shrink: 0;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/10;
        }
        .editor-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .headline-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: var(--transition);
        }
        .headline-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .headline-card .headline-img {
            aspect-ratio: 16/7;
            overflow: hidden;
            position: relative;
        }
        .headline-card .headline-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .headline-card .headline-img:hover img {
            transform: scale(1.02);
        }
        .headline-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #e53e3e;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            letter-spacing: 1px;
        }
        .headline-body {
            padding: 24px 28px;
        }
        .headline-date {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .headline-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.35;
            margin-bottom: 12px;
        }
        .headline-summary {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .rss-box {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .rss-box h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
        .rss-box p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .cta-bar {
            background: linear-gradient(135deg, #2f6fed 0%, #1d4fb0 100%);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            text-align: center;
            box-shadow: 0 8px 28px rgba(47, 111, 237, 0.3);
        }
        .cta-bar h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-bar p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
            line-height: 1.7;
        }

/* roulang page: category5 */
:root {
            --primary: #2f6fed;
            --primary-dark: #1d4fb0;
            --primary-light: #eaf1fd;
            --accent: #f5a623;
            --bg: #f7f9fc;
            --surface: #ffffff;
            --text: #1a2634;
            --text-muted: #5b6b7f;
            --border: #dfe7f0;
            --footer-bg: #0f1c2a;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 6px;
            --shadow-card: 0 4px 16px rgba(31, 48, 86, 0.08);
            --shadow-hover: 0 8px 24px rgba(31, 48, 86, 0.16);
            --transition: all .25s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 640px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Site Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 64px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(31, 48, 86, 0.04);
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .logo-text:hover {
            color: var(--primary-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: 40px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-cta {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            white-space: nowrap;
            transition: var(--transition);
            display: inline-block;
        }

        .nav-cta:hover {
            background: #d98f0d;
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }

        .nav-cta:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.4);
            outline-offset: 2px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--surface);
            z-index: 49;
            padding: 32px 24px;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            overflow-y: auto;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            padding: 8px 0;
        }

        .mobile-menu a.active {
            color: var(--primary);
        }

        .mobile-menu .nav-cta {
            font-size: 16px;
            padding: 10px 28px;
            margin-top: 12px;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .nav-cta.desktop-cta {
                display: none;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(47, 111, 237, 0.3);
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.35);
            outline-offset: 2px;
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            border-radius: var(--radius-btn);
            border: 1.5px solid var(--primary);
            transition: var(--transition);
            text-align: center;
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        .btn-secondary:focus-visible {
            outline: 3px solid rgba(47, 111, 237, 0.3);
            outline-offset: 2px;
        }

        .btn-accent {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-accent:hover {
            background: #d98f0d;
            box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
        }

        .btn-accent:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.35);
            outline-offset: 2px;
        }

        /* Cards */
        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: var(--primary-light);
            color: var(--primary);
        }

        .tag-accent {
            background: rgba(245, 166, 35, 0.12);
            color: #c07a00;
        }

        .badge-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 999px;
        }

        .badge-live {
            background: #e53e3e;
            color: #fff;
        }

        .badge-upcoming {
            background: var(--primary-light);
            color: var(--primary);
        }

        .badge-scheduled {
            background: rgba(245, 166, 35, 0.15);
            color: #c07a00;
        }

        /* Sections */
        .section-pad {
            padding-top: 64px;
            padding-bottom: 64px;
        }

        .section-bg-light {
            background: var(--primary-light);
        }

        .section-bg-dark {
            background: var(--footer-bg);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 10px;
        }

        @media (max-width: 640px) {
            .section-pad {
                padding-top: 44px;
                padding-bottom: 44px;
            }

            .section-title {
                font-size: 22px;
            }
        }

        /* Live room card */
        .live-room-cover {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }

        .live-room-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .card:hover .live-room-cover img {
            transform: scale(1.04);
        }

        .live-indicator {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
        }

        .live-indicator .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e53e3e;
            animation: pulse-dot 1.5s ease infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(0.8);
            }
        }

        .viewer-count {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
        }

        /* Schedule scroll */
        .scroll-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .scroll-row::-webkit-scrollbar {
            height: 6px;
        }

        .scroll-row::-webkit-scrollbar-track {
            background: var(--border);
            border-radius: 3px;
        }

        .scroll-row::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        .scroll-item {
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        /* Avatar card */
        .avatar-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--surface);
            box-shadow: 0 4px 12px rgba(31, 48, 86, 0.12);
            margin: 0 auto;
        }

        .avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer */
        .site-footer {
            background: var(--footer-bg);
            color: rgba(255, 255, 255, 0.85);
            padding-top: 56px;
            padding-bottom: 28px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.75;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: #fff;
        }

        .footer-subscribe {
            display: flex;
            margin-top: 10px;
            border-radius: var(--radius-btn);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-subscribe input {
            flex: 1;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: none;
            padding: 10px 14px;
            font-size: 14px;
            min-width: 0;
        }

        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-subscribe input:focus {
            outline: 2px solid var(--accent);
            outline-offset: -1px;
            background: rgba(255, 255, 255, 0.12);
        }

        .footer-subscribe button {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--transition);
        }

        .footer-subscribe button:hover {
            background: #d98f0d;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            color: rgba(255, 255, 255, 0.45);
            font-size: 14px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 560px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }
