/* roulang page: index */
:root {
            --c-bg: #0F1318;
            --c-bg-soft: #151A20;
            --c-card: #1A2027;
            --c-card-hover: #1F262E;
            --c-border: rgba(255,255,255,0.08);
            --c-border-strong: rgba(198,161,91,0.35);
            --c-text: #F1EEE8;
            --c-text-secondary: #98A1AA;
            --c-text-muted: #6E7681;
            --c-gold: #C6A15B;
            --c-gold-hover: #D8B575;
            --c-gold-soft: rgba(198,161,91,0.14);
            --c-live: #DF4E3F;
            --c-success: #36B38B;
            --font-cn: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
            --font-display: "DIN Alternate", "Bebas Neue", "Roboto Condensed", monospace;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: var(--c-bg);
            color: var(--c-text);
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .25s ease;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }
        .grid-container {
            max-width: 1280px;
            padding: 0 24px;
        }
        .section {
            padding: clamp(72px, 9vw, 120px) 0;
        }
        .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .section-head h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: .01em;
            position: relative;
            padding-left: 18px;
        }
        .section-head h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 4px;
            height: 26px;
            background: var(--c-gold);
            border-radius: 2px;
        }
        .section-head .more-link {
            color: var(--c-text-secondary);
            font-size: 15px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color .25s;
        }
        .section-head .more-link:hover {
            color: var(--c-gold);
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--c-gold);
            color: #0F1318;
            height: 48px;
            padding: 0 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            border: none;
            transition: background .25s, transform .2s, box-shadow .25s;
            white-space: nowrap;
        }
        .btn-gold:hover {
            background: var(--c-gold-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(198,161,91,0.2);
        }
        .btn-gold:active {
            background: #B08F4A;
            transform: translateY(1px);
        }
        .btn-gold:focus-visible {
            outline: 3px solid var(--c-gold);
            outline-offset: 2px;
        }
        .btn-gold:disabled {
            opacity: .5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            color: var(--c-text);
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: border-color .25s, color .25s, transform .2s;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            border-color: var(--c-gold);
            color: var(--c-gold);
        }
        .btn-ghost:active {
            transform: translateY(1px);
        }
        .btn-ghost:focus-visible {
            outline: 3px solid var(--c-gold);
            outline-offset: 2px;
        }
        .tag-gold {
            display: inline-block;
            background: var(--c-gold-soft);
            color: var(--c-gold);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            line-height: 1.4;
        }
        .badge-gold {
            display: inline-block;
            background: var(--c-gold);
            color: #0F1318;
            font-size: 12px;
            font-weight: 800;
            padding: 4px 14px;
            border-radius: 20px;
            line-height: 1.4;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(15,19,24,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--c-border);
            transition: background .3s ease, box-shadow .3s ease;
        }
        .site-header.scrolled {
            background: rgba(15,19,24,0.95);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            height: 72px;
            gap: 32px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--c-text);
            letter-spacing: .02em;
            line-height: 1;
        }
        .logo-text .gold {
            color: var(--c-gold);
        }
        .logo-badge {
            display: inline-block;
            background: var(--c-gold);
            color: #0F1318;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 4px;
            line-height: 1.2;
            margin-left: -4px;
            margin-top: -14px;
            letter-spacing: .04em;
        }
        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        .nav-list a {
            display: block;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 600;
            color: var(--c-text-secondary);
            border-radius: 6px;
            position: relative;
            transition: color .25s;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            background: var(--c-gold);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }
        .nav-list a:hover {
            color: var(--c-text);
        }
        .nav-list a:hover::after {
            transform: scaleX(1);
        }
        .nav-list a.active {
            color: var(--c-text);
            font-weight: 700;
        }
        .nav-list a.active::after {
            transform: scaleX(1);
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .countdown-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--c-bg-soft);
            border: 1px solid var(--c-border);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 12px;
            color: var(--c-text-secondary);
            font-weight: 600;
        }
        .countdown-pill b {
            font-family: var(--font-display);
            color: var(--c-gold);
            font-size: 14px;
            letter-spacing: 1px;
        }
        .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--c-live);
            background: rgba(223,78,63,0.1);
            border-radius: 20px;
            padding: 5px 12px;
        }
        .live-tag i {
            width: 6px;
            height: 6px;
            background: var(--c-live);
            border-radius: 50%;
            animation: liveBlink 1s infinite;
        }
        @keyframes liveBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: .25; }
        }
        .hamburger {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid var(--c-border);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            background: var(--c-bg-soft);
        }
        .hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--c-text);
            border-radius: 2px;
            transition: transform .3s, opacity .3s;
        }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-nav {
            display: none;
            background: var(--c-bg);
            border-bottom: 1px solid var(--c-border);
            padding: 16px 0;
        }
        .mobile-nav.open {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav a {
            display: block;
            padding: 14px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--c-text-secondary);
            border-radius: 8px;
            transition: background .2s, color .2s;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--c-text);
            background: var(--c-gold-soft);
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15,19,24,0.95) 0%, rgba(15,19,24,0.75) 45%, rgba(15,19,24,0.3) 100%);
        }
        .hero .grid-container {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hero-cover {
            position: relative;
        }
        .live-cover-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            border: 1px solid var(--c-border);
            background: var(--c-card);
        }
        .live-cover-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .cover-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(15,19,24,0.95) 100%);
        }
        .cover-meta {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 20px 24px;
        }
        .cover-meta h3 {
            font-size: 24px;
            font-weight: 800;
            margin: 8px 0 4px;
            line-height: 1.3;
        }
        .cover-meta time {
            font-size: 14px;
            color: var(--c-text-secondary);
            font-family: var(--font-display);
            letter-spacing: 1px;
        }
        .cover-corner {
            position: absolute;
            width: 22px;
            height: 22px;
            border: 1px solid var(--c-gold);
            z-index: 3;
            pointer-events: none;
        }
        .cover-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
        .cover-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
        .cover-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
        .cover-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

        .hero-info {
            padding-left: 40px;
        }
        .hero-info h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: .01em;
            margin-bottom: 12px;
        }
        .hero-sub {
            font-size: 18px;
            color: var(--c-text-secondary);
            margin-bottom: 24px;
        }
        .countdown-panel {
            background: rgba(26,32,39,0.7);
            border: 1px solid rgba(198,161,91,0.15);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }
        .countdown-label {
            font-size: 13px;
            color: var(--c-text-muted);
            font-weight: 600;
            letter-spacing: .1em;
            display: block;
            margin-bottom: 12px;
        }
        .countdown-grid {
            display: flex;
            gap: 16px;
        }
        .count-item {
            text-align: center;
            flex: 1;
        }
        .count-item b {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            color: var(--c-gold);
            line-height: 1;
            display: block;
            letter-spacing: 1px;
            transition: opacity .2s ease, transform .2s ease;
        }
        .count-item b.flip {
            opacity: 0;
            transform: translateY(-6px);
        }
        .count-item i {
            font-style: normal;
            font-size: 13px;
            color: var(--c-text-muted);
            margin-top: 6px;
            display: block;
        }
        .watch-points {
            margin-bottom: 24px;
            position: relative;
            padding-left: 0;
        }
        .watch-points::before {
            content: '';
            position: absolute;
            left: 5px;
            top: 10px;
            bottom: 10px;
            width: 1px;
            background: rgba(198,161,91,0.25);
        }
        .point-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background .25s;
            position: relative;
        }
        .point-item:hover {
            background: var(--c-gold-soft);
        }
        .point-item::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 10px;
            width: 2px;
            height: 0;
            background: var(--c-gold);
            transition: height .3s;
        }
        .point-item:hover::before {
            height: calc(100% - 20px);
        }
        .point-dot {
            width: 10px;
            height: 10px;
            background: var(--c-gold);
            transform: rotate(45deg);
            flex-shrink: 0;
            margin-top: 7px;
            border-radius: 1px;
        }
        .point-item p {
            font-size: 14px;
            color: var(--c-text-secondary);
            line-height: 1.6;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
        }
        .subscribe-form input {
            flex: 1;
            height: 48px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.15);
            background: var(--c-bg);
            padding: 0 16px;
            color: var(--c-text);
            font-size: 14px;
            transition: border-color .25s, box-shadow .25s;
        }
        .subscribe-form input::placeholder {
            color: var(--c-text-muted);
        }
        .subscribe-form input:focus {
            border-color: var(--c-gold);
            box-shadow: 0 0 0 3px rgba(198,161,91,0.15);
        }
        .subscribe-form .btn-gold {
            min-width: 120px;
        }
        .form-note {
            font-size: 12px;
            color: var(--c-text-muted);
            margin-bottom: 16px;
        }
        .form-success {
            display: none;
            color: var(--c-success);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .form-success.visible {
            display: block;
        }
        .hero-btns {
            display: flex;
            gap: 12px;
        }
        .hero-btns .btn-gold,
        .hero-btns .btn-ghost {
            flex: 1;
        }
        .scroll-down {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 50px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 16px;
            z-index: 3;
            display: flex;
            justify-content: center;
            padding-top: 10px;
        }
        .scroll-down::after {
            content: '';
            width: 4px;
            height: 8px;
            background: var(--c-gold);
            border-radius: 2px;
            animation: scrollHint 1.8s infinite;
        }
        @keyframes scrollHint {
            0%, 100% { transform: translateY(0); opacity: .8; }
            50% { transform: translateY(8px); opacity: .3; }
        }

        .news-section {
            background: var(--c-bg);
        }
        .news-grid {
            display: flex;
            gap: 24px;
        }
        .news-card {
            display: block;
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color .3s, box-shadow .3s, transform .3s;
            height: 100%;
        }
        .news-card:hover {
            border-color: var(--c-border-strong);
            box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        }
        .news-card-img {
            overflow: hidden;
            position: relative;
            background: var(--c-bg-soft);
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.04);
        }
        .news-card-content {
            padding: 20px 24px;
        }
        .news-card-content h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin: 12px 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color .3s;
        }
        .news-card:hover .news-card-content h3 {
            color: var(--c-gold);
        }
        .news-card-content p {
            font-size: 14px;
            color: var(--c-text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .news-meta {
            font-size: 13px;
            color: var(--c-text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .news-card-large .news-card-img {
            aspect-ratio: 16/9;
        }
        .news-card-small .news-card-img {
            aspect-ratio: 16/7;
        }
        .news-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .news-side .news-card {
            flex: 1;
        }
        .news-empty {
            border: 1px dashed var(--c-border);
            border-radius: 16px;
            padding: 60px 24px;
            text-align: center;
            background: var(--c-bg-soft);
        }
        .news-empty .empty-icon {
            font-size: 48px;
            color: var(--c-text-muted);
            margin-bottom: 16px;
        }
        .news-empty p {
            color: var(--c-text-muted);
            font-size: 15px;
        }

        .channels-section {
            background: var(--c-bg-soft);
        }
        .channel-grid {
            display: flex;
            gap: 24px;
        }
        .channel-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: flex-end;
            background-size: cover;
            background-position: center;
            border: 1px solid var(--c-border);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .channel-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.35);
        }
        .channel-card .channel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,19,24,0.9) 100%);
        }
        .channel-card-content {
            position: relative;
            z-index: 2;
            padding: 28px;
            width: 100%;
        }
        .channel-card-content h2 {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .channel-card-content p {
            font-size: 15px;
            color: var(--c-text-secondary);
            margin-bottom: 16px;
            max-width: 320px;
        }
        .channel-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--c-gold);
            font-size: 14px;
            font-weight: 700;
            transition: gap .3s;
        }
        .channel-card:hover .channel-arrow {
            gap: 14px;
        }

        .calendar-section {
            background: var(--c-bg);
        }
        .calendar-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 8px 4px 20px;
            scrollbar-width: thin;
            scrollbar-color: rgba(198,161,91,0.4) rgba(255,255,255,0.05);
        }
        .calendar-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .calendar-scroll::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 3px;
        }
        .calendar-scroll::-webkit-scrollbar-thumb {
            background: rgba(198,161,91,0.4);
            border-radius: 3px;
        }
        .calendar-card {
            flex: 0 0 220px;
            min-width: 200px;
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: 12px;
            padding: 20px;
            transition: border-color .3s, background .3s, transform .3s;
        }
        .calendar-card:hover {
            border-color: var(--c-border-strong);
            background: var(--c-card-hover);
            transform: translateY(-3px);
        }
        .calendar-date {
            font-size: 13px;
            font-weight: 700;
            color: var(--c-text-secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .calendar-date .week {
            color: var(--c-gold);
        }
        .calendar-league {
            font-size: 12px;
            color: var(--c-text-muted);
            margin-bottom: 8px;
            font-weight: 600;
            letter-spacing: .04em;
        }
        .calendar-match {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 12px;
            color: var(--c-text);
        }
        .calendar-time {
            font-size: 13px;
            color: var(--c-text-secondary);
            font-family: var(--font-display);
            letter-spacing: .5px;
            margin-bottom: 10px;
        }
        .calendar-status {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .calendar-status.upcoming {
            background: rgba(198,161,91,0.15);
            color: var(--c-gold);
        }
        .calendar-status.live {
            background: rgba(223,78,63,0.15);
            color: var(--c-live);
        }
        .calendar-status.finished {
            background: rgba(54,179,139,0.15);
            color: var(--c-success);
        }
        .scroll-hint {
            position: relative;
            display: flex;
            justify-content: flex-end;
            margin-top: -8px;
            font-size: 13px;
            color: var(--c-text-muted);
            gap: 6px;
            align-items: center;
        }

        .faq-section {
            background: var(--c-bg-soft);
        }
        .faq-grid {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--c-bg);
            border: 1px solid transparent;
            border-radius: 12px;
            padding: 0;
            overflow: hidden;
            transition: border-color .3s, background .3s;
        }
        .faq-item.active {
            border-color: rgba(198,161,91,0.2);
            background: var(--c-bg-soft);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
        }
        .faq-question span {
            font-size: 16px;
            font-weight: 600;
            color: var(--c-text);
        }
        .faq-question .q-icon {
            color: var(--c-gold);
            font-weight: 800;
            margin-right: 10px;
        }
        .faq-arrow {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--c-gold);
            font-size: 14px;
            transition: transform .3s;
        }
        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 24px;
            transition: max-height .35s ease, padding .35s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 24px 20px;
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--c-text-secondary);
            line-height: 1.75;
            border-top: 1px solid var(--c-border);
            padding-top: 14px;
        }

        .cta-banner {
            position: relative;
            background-image: url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
        }
        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15,19,24,0.85) 0%, rgba(15,19,24,0.7) 100%);
        }
        .cta-banner .grid-container {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .cta-banner p {
            font-size: 16px;
            color: var(--c-text-secondary);
            margin-bottom: 24px;
        }
        .cta-countdown {
            display: inline-flex;
            gap: 12px;
            margin-bottom: 28px;
        }
        .cta-countdown .count-box {
            background: rgba(26,32,39,0.8);
            border: 1px solid rgba(198,161,91,0.2);
            border-radius: 12px;
            padding: 14px 18px;
            min-width: 70px;
            text-align: center;
        }
        .cta-countdown .count-box b {
            font-family: var(--font-display);
            font-size: 30px;
            font-weight: 700;
            color: var(--c-gold);
            line-height: 1;
            display: block;
            letter-spacing: 1px;
        }
        .cta-countdown .count-box i {
            font-style: normal;
            font-size: 12px;
            color: var(--c-text-muted);
            display: block;
            margin-top: 4px;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .site-footer {
            background: #0B0E11;
            border-top: 1px solid rgba(198,161,91,0.2);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: flex;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--c-border);
        }
        .footer-brand {
            flex: 1.4;
        }
        .footer-brand .brand-logo {
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--c-text-secondary);
            line-height: 1.7;
            max-width: 340px;
        }
        .footer-links {
            flex: 1;
        }
        .footer-links h4,
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--c-text);
        }
        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--c-text-secondary);
            transition: color .25s, padding-left .25s;
        }
        .footer-links a:hover {
            color: var(--c-gold);
            padding-left: 4px;
        }
        .footer-col {
            flex: 1.4;
        }
        .footer-sub-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .footer-sub-form input {
            flex: 1;
            height: 44px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.15);
            background: var(--c-bg);
            padding: 0 14px;
            color: var(--c-text);
            font-size: 14px;
            transition: border-color .25s, box-shadow .25s;
        }
        .footer-sub-form input::placeholder {
            color: var(--c-text-muted);
        }
        .footer-sub-form input:focus {
            border-color: var(--c-gold);
            box-shadow: 0 0 0 3px rgba(198,161,91,0.12);
        }
        .footer-sub-form .btn-gold {
            height: 44px;
            font-size: 14px;
        }
        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: var(--c-text-muted);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .nav-center {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav {
                display: none;
            }
            .mobile-nav.open {
                display: block;
            }
            .nav-cta .countdown-pill,
            .nav-cta .live-tag {
                display: none;
            }
            .hero-info {
                padding-left: 0;
                margin-top: 40px;
            }
            .hero {
                padding: 140px 0 60px;
            }
            .news-grid {
                gap: 16px;
            }
        }
        @media (max-width: 768px) {
            .grid-container {
                padding: 0 16px;
            }
            .section {
                padding: 48px 0;
            }
            .section-head h2 {
                font-size: 26px;
            }
            .news-grid {
                flex-direction: column;
            }
            .news-side {
                gap: 16px;
            }
            .channel-grid {
                flex-direction: column;
            }
            .channel-card {
                min-height: 240px;
            }
            .footer-grid {
                flex-direction: column;
                gap: 32px;
            }
            .footer-brand,
            .footer-links,
            .footer-col {
                flex: none;
            }
            .hero-btns {
                flex-direction: column;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form .btn-gold {
                width: 100%;
            }
            .countdown-grid {
                gap: 8px;
            }
            .count-item b {
                font-size: 36px;
            }
            .cta-countdown {
                gap: 8px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        @media (max-width: 520px) {
            .brand-logo .logo-text {
                font-size: 18px;
            }
            .logo-badge {
                font-size: 9px;
                padding: 2px 6px;
            }
            .nav-cta .btn-gold {
                display: none;
            }
            .live-cover-card .cover-meta h3 {
                font-size: 18px;
            }
            .calendar-card {
                flex: 0 0 190px;
                min-width: 180px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category1 */
:root {
            --c-bg: #0F1318;
            --c-bg-soft: #151A20;
            --c-card: #1A2027;
            --c-card-hover: #1F262E;
            --c-border: rgba(255, 255, 255, 0.08);
            --c-border-strong: rgba(198, 161, 91, 0.35);
            --c-text: #F1EEE8;
            --c-text-secondary: #98A1AA;
            --c-text-muted: #6E7681;
            --c-gold: #C6A15B;
            --c-gold-hover: #D8B575;
            --c-gold-soft: rgba(198, 161, 91, 0.14);
            --c-live: #DF4E3F;
            --c-success: #36B38B;
            --font-cn: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", -apple-system, sans-serif;
            --font-display: "DIN Alternate", "Bebas Neue", "Roboto Condensed", "Arial Narrow", monospace;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.8;
            color: var(--c-text);
            background: var(--c-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            display: block;
            border: 0;
        }
        a {
            color: var(--c-text);
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }
        a:hover,
        a:focus {
            color: var(--c-gold);
        }
        button,
        input {
            font-family: inherit;
            font-size: 16px;
            border: none;
            background: none;
            outline: none;
        }
        button {
            cursor: pointer;
        }
        ul,
        ol {
            list-style: none;
        }

        .grid-container {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .grid-container-fluid {
            width: 100%;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 200;
            background: rgba(15, 19, 24, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--c-border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
        }
        .logo-text {
            font-weight: 800;
            font-size: 20px;
            letter-spacing: 0.02em;
            color: var(--c-text);
            white-space: nowrap;
        }
        .logo-text .gold {
            color: var(--c-gold);
        }
        .logo-badge {
            font-size: 11px;
            font-weight: 700;
            color: var(--c-gold);
            background: var(--c-gold-soft);
            border: 1px solid var(--c-border-strong);
            border-radius: 20px;
            padding: 2px 8px;
            letter-spacing: 0.06em;
            white-space: nowrap;
        }
        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        .nav-list {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list a {
            display: block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 600;
            color: var(--c-text-secondary);
            border-radius: 8px;
            position: relative;
            white-space: nowrap;
        }
        .nav-list a::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 2px;
            background: var(--c-gold);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
        }
        .nav-list a:hover,
        .nav-list a:focus {
            color: var(--c-text);
        }
        .nav-list a:hover::after,
        .nav-list a:focus::after {
            transform: scaleX(1);
        }
        .nav-list a.active {
            color: var(--c-text);
        }
        .nav-list a.active::after {
            transform: scaleX(1);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 800;
            color: var(--c-live);
            background: rgba(223, 78, 63, 0.1);
            border: 1px solid rgba(223, 78, 63, 0.25);
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.08em;
        }
        .live-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c-live);
            animation: pulse 1.6s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.75);
            }
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--c-border);
            background: var(--c-bg-soft);
            cursor: pointer;
        }
        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--c-text);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        /* ===== Buttons ===== */
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            background: var(--c-gold);
            color: #0F1318 !important;
            font-size: 15px;
            font-weight: 800;
            border-radius: 8px;
            border: 1px solid var(--c-gold);
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            white-space: nowrap;
            line-height: 1;
        }
        .btn-gold:hover,
        .btn-gold:focus {
            background: var(--c-gold-hover);
            border-color: var(--c-gold-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(198, 161, 91, 0.25);
            color: #0F1318 !important;
        }
        .btn-gold:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-gold:focus-visible {
            outline: 3px solid rgba(198, 161, 91, 0.5);
            outline-offset: 2px;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            background: transparent;
            color: var(--c-text) !important;
            font-size: 15px;
            font-weight: 700;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
            white-space: nowrap;
            line-height: 1;
        }
        .btn-ghost:hover,
        .btn-ghost:focus {
            border-color: var(--c-gold);
            color: var(--c-gold) !important;
            background: var(--c-gold-soft);
        }
        .btn-gold.btn-sm,
        .btn-ghost.btn-sm {
            height: 38px;
            padding: 0 18px;
            font-size: 13px;
        }
        .btn-gold.btn-lg,
        .btn-ghost.btn-lg {
            height: 54px;
            padding: 0 38px;
            font-size: 17px;
        }
        .btn-disabled,
        .btn-disabled:hover {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            background: var(--c-gold);
            border-color: var(--c-gold);
            color: #0F1318 !important;
        }

        /* ===== Hero ===== */
        .page-hero {
            position: relative;
            min-height: 480px;
            display: flex;
            align-items: center;
            background: var(--c-bg);
            overflow: hidden;
            border-bottom: 1px solid var(--c-border);
        }
        .page-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        .page-hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 19, 24, 0.96) 0%, rgba(15, 19, 24, 0.82) 50%, rgba(15, 19, 24, 0.45) 100%);
        }
        .page-hero .grid-container {
            position: relative;
            z-index: 2;
            width: 100%;
            padding-top: 64px;
            padding-bottom: 64px;
        }
        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--c-text-secondary);
            margin-bottom: 20px;
        }
        .hero-breadcrumb a {
            color: var(--c-text-secondary);
        }
        .hero-breadcrumb a:hover {
            color: var(--c-gold);
        }
        .hero-breadcrumb .sep {
            color: var(--c-text-muted);
        }
        .hero-breadcrumb .current {
            color: var(--c-gold);
            font-weight: 600;
        }
        .page-hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: 0.01em;
            color: var(--c-text);
            max-width: 760px;
            margin-bottom: 16px;
        }
        .page-hero h1 .gold {
            color: var(--c-gold);
        }
        .hero-subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: var(--c-text-secondary);
            max-width: 640px;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .hero-right-panel {
            background: rgba(26, 32, 39, 0.72);
            border: 1px solid rgba(198, 161, 91, 0.2);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: relative;
            z-index: 2;
        }
        .hero-right-panel h3 {
            font-size: 13px;
            font-weight: 700;
            color: var(--c-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 12px;
        }
        .next-match-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--c-text);
            margin-bottom: 6px;
        }
        .next-match-meta {
            font-size: 14px;
            color: var(--c-text-secondary);
            margin-bottom: 16px;
        }
        .next-match-meta .gold {
            color: var(--c-gold);
            font-weight: 700;
        }
        .countdown-timer {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }
        .countdown-timer .cd-item {
            flex: 1;
            text-align: center;
            background: rgba(15, 19, 24, 0.7);
            border: 1px solid var(--c-border);
            border-radius: 10px;
            padding: 10px 4px;
        }
        .countdown-timer .cd-num {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--c-gold);
            line-height: 1.2;
            letter-spacing: 1px;
        }
        .countdown-timer .cd-label {
            font-size: 11px;
            color: var(--c-text-muted);
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        /* ===== Section spacing ===== */
        .section {
            padding: clamp(64px, 8vw, 100px) 0;
        }
        .section-alt {
            background: var(--c-bg-soft);
        }
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .section-header h2 {
            font-size: clamp(26px, 3.2vw, 36px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--c-text);
        }
        .section-header h2 .gold {
            color: var(--c-gold);
        }
        .section-header .sub {
            font-size: 15px;
            color: var(--c-text-secondary);
            max-width: 560px;
            margin-top: 8px;
            line-height: 1.7;
        }

        /* ===== Schedule list ===== */
        .schedule-wrapper {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }
        .schedule-main {
            flex: 1 1 auto;
            min-width: 0;
        }
        .schedule-side {
            flex: 0 0 360px;
            min-width: 0;
            position: sticky;
            top: 88px;
        }
        .schedule-group {
            margin-bottom: 36px;
        }
        .schedule-date {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 800;
            color: var(--c-text);
            margin-bottom: 16px;
            position: relative;
            padding-left: 16px;
        }
        .schedule-date::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            border-radius: 4px;
            background: var(--c-gold);
        }
        .schedule-date .date-extra {
            font-size: 13px;
            color: var(--c-text-muted);
            font-weight: 400;
            margin-left: 4px;
        }
        .match-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: 12px;
            margin-bottom: 12px;
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .match-item:hover {
            border-color: var(--c-border-strong);
            background: var(--c-card-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .match-league {
            flex: 0 0 116px;
            font-size: 13px;
            font-weight: 700;
            color: var(--c-text-secondary);
            letter-spacing: 0.03em;
        }
        .match-teams {
            flex: 1;
            font-size: 16px;
            font-weight: 700;
            color: var(--c-text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-teams .vs {
            color: var(--c-text-muted);
            font-weight: 400;
            margin: 0 6px;
        }
        .match-time {
            flex: 0 0 auto;
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 600;
            color: var(--c-text-secondary);
        }
        .match-status {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        .match-status.scheduled {
            color: var(--c-text-secondary);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--c-border);
        }
        .match-status.live {
            color: var(--c-live);
            background: rgba(223, 78, 63, 0.1);
            border: 1px solid rgba(223, 78, 63, 0.3);
        }
        .match-status.live .pulse-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--c-live);
            animation: pulse 1.4s infinite;
        }
        .match-status.finished {
            color: var(--c-text-muted);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--c-border);
        }
        .match-link {
            flex: 0 0 auto;
            font-size: 13px;
            font-weight: 700;
            color: var(--c-gold);
            padding: 6px 14px;
            border: 1px solid var(--c-border-strong);
            border-radius: 8px;
            transition: background 0.25s ease, border-color 0.25s ease;
        }
        .match-link:hover {
            background: var(--c-gold-soft);
            border-color: var(--c-gold);
        }
        .match-link.disabled {
            color: var(--c-text-muted);
            border-color: var(--c-border);
            cursor: not-allowed;
            background: transparent;
        }

        /* ===== Sidebar cards ===== */
        .side-card {
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }
        .side-card h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--c-text);
            margin-bottom: 16px;
            position: relative;
            padding-left: 14px;
        }
        .side-card h3::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 18px;
            border-radius: 3px;
            background: var(--c-gold);
        }
        .side-remind-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .side-remind-form input {
            height: 48px;
            border-radius: 8px;
            background: var(--c-bg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0 18px;
            color: var(--c-text);
            font-size: 15px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            width: 100%;
        }
        .side-remind-form input::placeholder {
            color: var(--c-text-muted);
        }
        .side-remind-form input:focus {
            border-color: var(--c-gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
            outline: none;
        }
        .side-remind-form .btn-gold {
            width: 100%;
        }
        .form-tip {
            font-size: 12px;
            color: var(--c-text-muted);
            text-align: center;
        }
        .form-success {
            display: none;
            align-items: center;
            gap: 8px;
            color: var(--c-success);
            font-size: 14px;
            font-weight: 600;
            background: rgba(54, 179, 139, 0.08);
            border: 1px solid rgba(54, 179, 139, 0.3);
            border-radius: 8px;
            padding: 12px 16px;
            margin-top: 8px;
        }
        .form-success.show {
            display: flex;
        }

        .side-live-info {
            font-size: 14px;
            line-height: 1.75;
            color: var(--c-text-secondary);
        }
        .side-live-info ul {
            margin-top: 12px;
        }
        .side-live-info li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: var(--c-text-secondary);
            margin-bottom: 10px;
        }
        .side-live-info li::before {
            content: "◆";
            color: var(--c-gold);
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .side-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .side-tags a {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--c-text-secondary);
            background: var(--c-bg-soft);
            border: 1px solid var(--c-border);
            border-radius: 20px;
            transition: all 0.25s ease;
        }
        .side-tags a:hover {
            color: var(--c-gold);
            border-color: var(--c-border-strong);
            background: var(--c-gold-soft);
        }

        /* ===== Process cards ===== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .process-card {
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: 16px;
            padding: 36px 28px;
            position: relative;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        .process-card:hover {
            border-color: var(--c-border-strong);
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
        }
        .process-num {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            color: var(--c-gold);
            letter-spacing: 0.15em;
            margin-bottom: 14px;
            display: inline-block;
        }
        .process-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--c-text);
            margin-bottom: 12px;
        }
        .process-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--c-text-secondary);
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--c-bg-soft);
            border: 1px solid var(--c-border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .faq-item.active {
            border-color: rgba(198, 161, 91, 0.25);
        }
        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--c-text);
            transition: color 0.25s ease;
            user-select: none;
        }
        .faq-q:hover {
            color: var(--c-gold);
        }
        .faq-q .q-icon {
            color: var(--c-gold);
            font-weight: 800;
            margin-right: 4px;
        }
        .faq-q .faq-arrow {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-right: 2px solid var(--c-gold);
            border-bottom: 2px solid var(--c-gold);
            transform: rotate(45deg);
            transition: transform 0.25s ease;
            margin-top: -6px;
        }
        .faq-item.active .faq-arrow {
            transform: rotate(225deg);
            margin-top: 6px;
        }
        .faq-a {
            display: none;
            padding: 0 24px 20px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--c-text-secondary);
        }
        .faq-item.active .faq-a {
            display: block;
        }

        /* ===== CTA banner ===== */
        .cta-banner {
            position: relative;
            padding: clamp(64px, 7vw, 96px) 0;
            text-align: center;
            overflow: hidden;
            background: var(--c-bg-soft);
        }
        .cta-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
        }
        .cta-banner .grid-container {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            line-height: 1.2;
            color: var(--c-text);
            margin-bottom: 14px;
        }
        .cta-banner p {
            font-size: 16px;
            color: var(--c-text-secondary);
            margin-bottom: 28px;
        }
        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0B0E11;
            border-top: 1px solid rgba(198, 161, 91, 0.2);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.4fr;
            gap: 40px;
            padding-bottom: 48px;
        }
        .footer-brand .brand-logo {
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: var(--c-text-secondary);
            max-width: 360px;
        }
        .footer-links h4,
        .footer-col h4 {
            font-size: 15px;
            font-weight: 800;
            color: var(--c-text);
            margin-bottom: 14px;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--c-text-secondary);
            transition: color 0.25s ease, padding-left 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--c-gold);
            padding-left: 4px;
        }
        .footer-sub-form {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .footer-sub-form input {
            flex: 1;
            min-width: 180px;
            height: 44px;
            border-radius: 8px;
            background: var(--c-bg);
            border: 1px solid var(--c-border);
            padding: 0 16px;
            color: var(--c-text);
            font-size: 14px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .footer-sub-form input:focus {
            border-color: var(--c-gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.12);
            outline: none;
        }
        .footer-sub-form .btn-gold {
            height: 44px;
            padding: 0 20px;
        }
        .footer-bottom {
            border-top: 1px solid var(--c-border);
            padding: 20px 0;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 13px;
            color: var(--c-text-muted);
        }

        /* ===== Reveal Animation ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .schedule-wrapper {
                flex-direction: column;
            }
            .schedule-side {
                flex: 1 1 auto;
                width: 100%;
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .side-card {
                margin-bottom: 0;
            }
            .side-card:last-child {
                grid-column: 1 / -1;
            }
            .process-grid {
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                height: 64px;
                gap: 12px;
            }
            .nav-center {
                order: 3;
            }
            .nav-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                padding: 0;
            }
            .nav-list {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--c-bg);
                border-bottom: 1px solid var(--c-border);
                flex-direction: column;
                gap: 0;
                padding: 8px 16px 16px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
                z-index: 300;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                padding: 14px 16px;
                width: 100%;
                border-radius: 8px;
                font-size: 16px;
            }
            .nav-list a::after {
                display: none;
            }
            .nav-list a:hover {
                background: var(--c-bg-soft);
                color: var(--c-gold);
            }
            .nav-list a.active {
                background: var(--c-gold-soft);
                color: var(--c-gold);
            }
            .header-actions .live-tag {
                display: none;
            }
            .header-actions .btn-gold {
                display: none;
            }
            .page-hero {
                min-height: 420px;
            }
            .page-hero .grid-container {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .page-hero h1 {
                font-size: 34px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn-gold,
            .hero-actions .btn-ghost {
                width: 100%;
            }
            .hero-right-panel {
                margin-top: 24px;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .schedule-side {
                grid-template-columns: 1fr;
            }
            .match-item {
                flex-wrap: wrap;
                gap: 12px;
                padding: 14px;
            }
            .match-league {
                flex: 1 1 100%;
            }
            .match-teams {
                flex: 1 1 auto;
            }
            .match-status {
                margin-left: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding-bottom: 32px;
            }
            .footer-sub-form {
                flex-direction: column;
            }
            .footer-sub-form .btn-gold {
                width: 100%;
            }
        }
        @media (max-width: 520px) {
            .grid-container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .countdown-timer .cd-num {
                font-size: 22px;
            }
            .match-teams {
                font-size: 14px;
            }
            .match-time {
                font-size: 13px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }

/* roulang page: article */
:root {
            --c-bg: #0F1318;
            --c-bg-soft: #151A20;
            --c-card: #1A2027;
            --c-card-hover: #1F262E;
            --c-border: rgba(255, 255, 255, 0.08);
            --c-border-strong: rgba(198, 161, 91, 0.35);
            --c-text: #F1EEE8;
            --c-text-secondary: #98A1AA;
            --c-text-muted: #6E7681;
            --c-gold: #C6A15B;
            --c-gold-hover: #D8B575;
            --c-gold-soft: rgba(198, 161, 91, 0.14);
            --c-live: #DF4E3F;
            --c-success: #36B38B;
            --font-cn: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
            --font-display: "DIN Alternate", "Bebas Neue", "Roboto Condensed", monospace;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
            --space-section: clamp(72px, 9vw, 120px);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            background: var(--c-bg);
            color: var(--c-text);
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        input {
            font-family: inherit;
        }
        .grid-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 19, 24, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--c-border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--c-text);
            white-space: nowrap;
        }
        .logo-text .gold {
            color: var(--c-gold);
        }
        .logo-badge {
            font-size: 10px;
            font-weight: 700;
            color: var(--c-gold);
            border: 1px solid var(--c-border-strong);
            background: var(--c-gold-soft);
            padding: 2px 6px;
            border-radius: 20px;
            letter-spacing: 0.08em;
            white-space: nowrap;
        }
        .nav-center {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }
        .nav-list a {
            position: relative;
            display: block;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 600;
            color: var(--c-text-secondary);
            border-radius: 6px;
            transition: color 0.25s;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--c-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s;
        }
        .nav-list a:hover {
            color: var(--c-text);
        }
        .nav-list a:hover::after,
        .nav-list a.active::after {
            transform: scaleX(1);
        }
        .nav-list a.active {
            color: var(--c-text);
        }
        .header-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 700;
            color: var(--c-live);
            border: 1px solid rgba(223, 78, 63, 0.4);
            padding: 4px 10px;
            border-radius: 20px;
        }
        .live-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--c-live);
            border-radius: 50%;
            animation: pulse 1.2s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            background: var(--c-gold);
            color: #0F1318;
            font-size: 15px;
            font-weight: 800;
            border: none;
            border-radius: 8px;
            transition: all 0.25s;
            line-height: 1;
        }
        .btn-gold:hover {
            background: var(--c-gold-hover);
            transform: translateY(-1px);
            color: #0F1318;
        }
        .btn-gold:active {
            transform: translateY(1px);
        }
        .btn-gold:focus-visible {
            outline: 3px solid rgba(198, 161, 91, 0.4);
            outline-offset: 2px;
        }
        .btn-sm {
            height: 40px;
            padding: 0 18px;
            font-size: 14px;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            background: transparent;
            color: var(--c-text);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            transition: all 0.25s;
            line-height: 1;
        }
        .btn-ghost:hover {
            border-color: var(--c-gold);
            color: var(--c-gold);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--c-text);
            font-size: 24px;
            padding: 8px;
            line-height: 1;
        }
        .breadcrumbs-wrap {
            padding: 28px 0 12px;
            border-bottom: 1px solid var(--c-border);
            margin-bottom: 32px;
        }
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--c-text-secondary);
        }
        .breadcrumbs a {
            color: var(--c-text-secondary);
            transition: color 0.2s;
        }
        .breadcrumbs a:hover {
            color: var(--c-gold);
        }
        .breadcrumbs .sep {
            color: var(--c-text-muted);
            font-size: 12px;
        }
        .breadcrumbs .current {
            color: var(--c-text);
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 320px;
        }
        .article-wrap {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 0 56px;
        }
        .article-cat {
            display: inline-block;
            background: var(--c-gold-soft);
            color: var(--c-gold);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }
        .article-header h1 {
            font-size: clamp(30px, 4vw, 40px);
            font-weight: 900;
            line-height: 1.2;
            color: var(--c-text);
            margin-bottom: 16px;
            letter-spacing: 0.01em;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            font-size: 14px;
            color: var(--c-text-muted);
            align-items: center;
        }
        .article-meta i {
            margin-right: 4px;
            color: var(--c-gold);
        }
        .article-share {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--c-border);
        }
        .article-share span {
            font-size: 13px;
            color: var(--c-text-muted);
        }
        .article-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--c-border);
            color: var(--c-text-secondary);
            font-size: 14px;
            transition: all 0.25s;
        }
        .article-share a:hover {
            border-color: var(--c-gold);
            color: var(--c-gold);
        }
        .article-content {
            margin-top: 32px;
            font-size: 17px;
            line-height: 1.85;
            color: var(--c-text);
        }
        .article-content p {
            margin-bottom: 1.2em;
        }
        .article-content h2 {
            font-size: 26px;
            font-weight: 800;
            margin: 1.6em 0 0.8em;
            color: var(--c-text);
            line-height: 1.3;
        }
        .article-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 1.4em 0 0.6em;
            color: var(--c-text);
        }
        .article-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 1.4em auto;
            box-shadow: var(--shadow-xs);
        }
        .article-content blockquote {
            border-left: 3px solid var(--c-gold);
            background: var(--c-bg-soft);
            padding: 16px 24px;
            border-radius: 0 12px 12px 0;
            color: var(--c-text-secondary);
            margin: 1.4em 0;
        }
        .article-content a {
            color: var(--c-gold);
        }
        .article-content a:hover {
            text-decoration: underline;
        }
        .article-content ul,
        .article-content ol {
            margin: 1em 0 1.2em 1.4em;
        }
        .article-content li {
            margin-bottom: 0.4em;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2em 0;
            font-size: 15px;
        }
        .article-content th,
        .article-content td {
            border: 1px solid var(--c-border);
            padding: 10px 14px;
            text-align: left;
        }
        .article-content th {
            background: var(--c-bg-soft);
            color: var(--c-gold);
            font-weight: 700;
        }
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid var(--c-border);
        }
        .tag {
            background: var(--c-bg-soft);
            color: var(--c-text-secondary);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid var(--c-border);
            transition: all 0.25s;
        }
        .tag:hover {
            color: var(--c-gold);
            border-color: var(--c-border-strong);
        }
        .article-pager {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 36px;
            padding-top: 28px;
            border-top: 1px solid var(--c-border);
            flex-wrap: wrap;
        }
        .pager-item {
            display: block;
            background: var(--c-bg-soft);
            border: 1px solid var(--c-border);
            border-radius: 12px;
            padding: 16px 20px;
            flex: 1;
            min-width: 220px;
            transition: all 0.25s;
        }
        .pager-item:hover {
            border-color: var(--c-border-strong);
            transform: translateY(-2px);
        }
        .pager-label {
            font-size: 12px;
            color: var(--c-text-muted);
            margin-bottom: 4px;
            display: block;
        }
        .pager-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--c-text);
            line-height: 1.4;
        }
        .pager-item:hover .pager-title {
            color: var(--c-gold);
        }
        .article-empty {
            text-align: center;
            padding: 80px 24px;
            background: var(--c-bg-soft);
            border-radius: 16px;
            border: 1px dashed var(--c-border-strong);
            margin: 32px 0;
        }
        .article-empty i {
            font-size: 48px;
            color: var(--c-text-muted);
            margin-bottom: 16px;
        }
        .article-empty p {
            font-size: 18px;
            font-weight: 600;
            color: var(--c-text-secondary);
            margin-bottom: 20px;
        }
        .related-section {
            background: var(--c-bg-soft);
            padding: var(--space-section) 0;
            border-top: 1px solid var(--c-border);
        }
        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--c-gold);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--c-text);
        }
        .related-card {
            display: block;
            background: var(--c-card);
            border: 1px solid var(--c-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
        }
        .related-card:hover {
            border-color: var(--c-border-strong);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .related-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .related-card:hover img {
            transform: scale(1.04);
        }
        .related-card-body {
            padding: 20px;
        }
        .related-card-body h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.25s;
        }
        .related-card:hover .related-card-body h3 {
            color: var(--c-gold);
        }
        .related-card-date {
            font-size: 13px;
            color: var(--c-text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .related-card-date i {
            color: var(--c-gold);
        }
        .related-empty {
            text-align: center;
            padding: 60px 24px;
            background: var(--c-card);
            border-radius: 16px;
            border: 1px dashed var(--c-border-strong);
        }
        .related-empty p {
            font-size: 16px;
            color: var(--c-text-secondary);
            margin-bottom: 20px;
        }
        .cta-banner {
            background: linear-gradient(90deg, rgba(15, 19, 24, 0.95) 0%, rgba(198, 161, 91, 0.08) 100%), url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            padding: 72px 0;
            text-align: center;
            border-top: 1px solid var(--c-border);
        }
        .cta-banner h2 {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--c-text);
        }
        .cta-banner p {
            color: var(--c-text-secondary);
            font-size: 16px;
            margin-bottom: 28px;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .cta-form input {
            flex: 1;
            min-width: 200px;
            height: 48px;
            background: var(--c-bg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 0 18px;
            color: var(--c-text);
            font-size: 15px;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .cta-form input::placeholder {
            color: var(--c-text-muted);
        }
        .cta-form input:focus {
            border-color: var(--c-gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
        }
        .form-note {
            font-size: 12px;
            color: var(--c-text-muted);
            margin-top: 12px;
        }
        .site-footer {
            background: #0B0E11;
            border-top: 1px solid rgba(198, 161, 91, 0.2);
            padding: 56px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 32px;
        }
        .footer-brand .brand-logo {
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--c-text-secondary);
            line-height: 1.7;
            max-width: 360px;
        }
        .footer-links h4,
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--c-text);
            margin-bottom: 16px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--c-text-secondary);
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--c-gold);
        }
        .footer-sub-form {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .footer-sub-form input {
            flex: 1;
            min-width: 160px;
            height: 44px;
            background: var(--c-bg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 0 14px;
            color: var(--c-text);
            font-size: 14px;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .footer-sub-form input::placeholder {
            color: var(--c-text-muted);
        }
        .footer-sub-form input:focus {
            border-color: var(--c-gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
        }
        .footer-sub-form .btn-gold {
            height: 44px;
            padding: 0 20px;
            font-size: 14px;
        }
        .footer-bottom {
            border-top: 1px solid var(--c-border);
            padding-top: 24px;
            text-align: center;
            color: var(--c-text-muted);
            font-size: 13px;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }
        @media (max-width: 768px) {
            .grid-container {
                padding: 0 16px;
            }
            .header-inner {
                height: auto;
                flex-wrap: wrap;
                padding: 12px 0;
                gap: 12px;
            }
            .menu-toggle {
                display: block;
                order: 2;
            }
            .header-cta {
                order: 1;
                margin-left: auto;
            }
            .header-cta .live-badge {
                display: none;
            }
            .nav-center {
                display: none;
                width: 100%;
                order: 3;
                border-top: 1px solid var(--c-border);
                padding-top: 8px;
                margin-top: 4px;
            }
            .nav-center.open {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-list a {
                padding: 12px 8px;
                border-radius: 6px;
            }
            .nav-list a::after {
                left: 8px;
                right: auto;
                width: 24px;
            }
            .breadcrumbs-wrap {
                padding: 20px 0 10px;
                margin-bottom: 24px;
            }
            .breadcrumbs .current {
                max-width: 180px;
            }
            .article-wrap {
                padding-bottom: 40px;
            }
            .article-content {
                font-size: 16px;
            }
            .article-pager {
                flex-direction: column;
            }
            .pager-item {
                min-width: 100%;
            }
            .related-section {
                padding: 48px 0;
            }
            .cta-banner {
                padding: 48px 0;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form .btn-gold {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-brand .brand-logo {
                margin-bottom: 12px;
            }
        }
        @media (max-width: 520px) {
            .logo-text {
                font-size: 18px;
            }
            .logo-badge {
                display: none;
            }
            .btn-sm {
                padding: 0 14px;
                font-size: 13px;
            }
            .article-header h1 {
                font-size: 26px;
                line-height: 1.25;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .section-title {
                font-size: 22px;
                margin-bottom: 24px;
            }
            .related-card-body {
                padding: 16px;
            }
            .footer-sub-form {
                flex-direction: column;
            }
            .footer-sub-form .btn-gold {
                width: 100%;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category2 */
:root {
    --c-bg: #0F1318;
    --c-bg-soft: #151A20;
    --c-card: #1A2027;
    --c-card-hover: #1F262E;
    --c-border: rgba(255,255,255,0.08);
    --c-border-strong: rgba(198,161,91,0.35);
    --c-text: #F1EEE8;
    --c-text-secondary: #98A1AA;
    --c-text-muted: #6E7681;
    --c-gold: #C6A15B;
    --c-gold-hover: #D8B575;
    --c-gold-soft: rgba(198,161,91,0.14);
    --c-live: #DF4E3F;
    --c-success: #36B38B;
    --f-cn: "PingFang SC","HarmonyOS Sans SC","Microsoft YaHei",sans-serif;
    --f-display: "DIN Alternate","Bebas Neue","Roboto Condensed",monospace;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-xs: 0 2px 8px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.45);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    font-family:var(--f-cn);
    background:var(--c-bg);
    color:var(--c-text);
    line-height:1.8;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
input,button{font-family:inherit}
button{cursor:pointer;border:none;background:none;color:inherit}

.grid-container{
    max-width:1280px;
    padding-left:24px;
    padding-right:24px;
    margin-left:auto;
    margin-right:auto;
}

/* ===== Header ===== */
.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(15,19,24,0.88);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:72px;
    gap:24px;
}
.brand-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}
.logo-mark{width:36px;height:36px;flex-shrink:0}
.logo-text{
    font-size:20px;
    font-weight:800;
    letter-spacing:.01em;
    line-height:1;
    color:var(--c-text);
}
.logo-text .gold{color:var(--c-gold)}
.logo-badge{
    font-size:11px;
    font-weight:700;
    color:var(--c-gold);
    background:var(--c-gold-soft);
    border:1px solid rgba(198,161,91,0.35);
    border-radius:20px;
    padding:3px 8px;
    letter-spacing:.04em;
    margin-left:2px;
    white-space:nowrap;
}
.nav-center{
    display:flex;
    align-items:center;
    justify-content:center;
}
.nav-list{
    display:flex;
    gap:36px;
    margin:0;
}
.nav-list > li{margin:0}
.nav-list a{
    position:relative;
    font-size:15px;
    font-weight:600;
    color:var(--c-text-secondary);
    padding:10px 2px;
    letter-spacing:.02em;
    transition:color .25s;
    line-height:1;
}
.nav-list a::after{
    content:'';
    position:absolute;
    left:0;bottom:0;
    width:0;height:2px;
    background:var(--c-gold);
    transition:width .25s ease;
    border-radius:2px;
}
.nav-list a:hover,.nav-list a.active{
    color:var(--c-text);
}
.nav-list a:hover::after,.nav-list a.active::after{
    width:100%;
}
.header-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}
.btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 24px;
    background:var(--c-gold);
    color:#0F1318;
    font-size:15px;
    font-weight:800;
    border-radius:8px;
    transition:background .25s,transform .2s,box-shadow .25s;
}
.btn-gold:hover{
    background:var(--c-gold-hover);
    transform:translateY(-1px);
    box-shadow:0 6px 20px rgba(198,161,91,0.3);
}
.btn-gold:active{transform:translateY(1px)}
.btn-gold:focus-visible{
    outline:3px solid rgba(198,161,91,0.5);
    outline-offset:2px;
}
.live-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    color:var(--c-live);
    background:rgba(223,78,63,0.1);
    border:1px solid rgba(223,78,63,0.3);
    border-radius:20px;
    padding:4px 12px;
    line-height:1;
}
.live-badge .dot{
    width:6px;height:6px;
    border-radius:50%;
    background:var(--c-live);
    animation:pulse 1.4s infinite;
}
@keyframes pulse{
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:.4;transform:scale(0.85)}
}
.nav-burger{display:none}

/* ===== Page Hero ===== */
.page-hero{
    position:relative;
    background-size:cover;
    background-position:center;
    padding:clamp(56px,7vw,90px) 0;
    border-bottom:1px solid var(--c-border);
}
.page-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:var(--c-gradient-hero);
}
.page-hero .grid-container{
    position:relative;
    z-index:2;
}
.breadcrumb-line{
    font-size:14px;
    color:var(--c-text-secondary);
    margin-bottom:20px;
    display:flex;
    gap:8px;
    align-items:center;
}
.breadcrumb-line a{color:var(--c-text-secondary)}
.breadcrumb-line a:hover{color:var(--c-gold)}
.breadcrumb-line .sep{color:var(--c-text-muted)}
.breadcrumb-line .cur{color:var(--c-text)}
.page-hero h1{
    font-size:clamp(32px,5vw,52px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:.01em;
    color:var(--c-text);
    max-width:900px;
}
.page-hero h1 .gold{color:var(--c-gold)}
.hero-sub{
    font-size:18px;
    color:var(--c-text-secondary);
    line-height:1.7;
    margin-top:16px;
    max-width:640px;
}
.hero-meta{
    display:flex;
    gap:16px;
    margin-top:24px;
    flex-wrap:wrap;
}
.hero-meta .hm-item{
    font-size:13px;
    font-weight:600;
    color:var(--c-text-secondary);
    background:rgba(255,255,255,0.05);
    border:1px solid var(--c-border);
    border-radius:20px;
    padding:6px 14px;
    line-height:1;
}

/* ===== Main Layout ===== */
.news-main{
    padding:clamp(64px,8vw,96px) 0;
}
.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:36px;
    gap:16px;
    flex-wrap:wrap;
}
.section-head h2{
    font-size:28px;
    font-weight:800;
    line-height:1.2;
}
.section-head h2 .gold{color:var(--c-gold)}
.section-head .link-more{
    font-size:14px;
    font-weight:600;
    color:var(--c-gold);
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:gap .25s;
}
.section-head .link-more:hover{gap:10px}

/* ===== News List ===== */
.news-list{display:flex;flex-direction:column;gap:28px}
.news-item{
    display:flex;
    background:var(--c-card);
    border:1px solid var(--c-border);
    border-radius:var(--radius-md);
    overflow:hidden;
    transition:border-color .3s,box-shadow .3s,transform .3s;
}
.news-item:hover{
    border-color:var(--c-border-strong);
    box-shadow:var(--shadow-lg);
    transform:translateY(-2px);
}
.news-item-media{
    width:40%;
    min-width:260px;
    overflow:hidden;
    position:relative;
}
.news-item-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}
.news-item:hover .news-item-media img{transform:scale(1.04)}
.news-item-media::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(15,19,24,0) 60%,rgba(15,19,24,0.5) 100%);
    pointer-events:none;
}
.news-item-body{
    flex:1;
    padding:26px 28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.news-item-meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}
.tag{
    font-size:12px;
    font-weight:700;
    color:var(--c-gold);
    background:var(--c-gold-soft);
    border-radius:20px;
    padding:4px 12px;
    letter-spacing:.03em;
    display:inline-flex;
    align-items:center;
    line-height:1;
}
.date{
    font-size:13px;
    color:var(--c-text-muted);
    font-family:var(--f-display);
}
.news-item-body h3{
    font-size:20px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:10px;
}
.news-item-body h3 a{
    transition:color .25s;
    display:inline-block;
}
.news-item-body h3 a:hover{color:var(--c-gold)}
.news-item-body p{
    font-size:15px;
    color:var(--c-text-secondary);
    line-height:1.75;
    margin-bottom:14px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.news-item-foot{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.tag-muted{
    font-size:12px;
    font-weight:600;
    color:var(--c-text-muted);
    background:rgba(255,255,255,0.05);
    border:1px solid var(--c-border);
    border-radius:20px;
    padding:3px 10px;
    line-height:1;
    transition:color .2s,border-color .2s;
}
.tag-muted:hover{
    color:var(--c-gold);
    border-color:var(--c-border-strong);
}

/* ===== Sidebar ===== */
.sidebar{
    position:sticky;
    top:96px;
    display:flex;
    flex-direction:column;
    gap:24px;
}
.sidebar-card{
    background:var(--c-card);
    border:1px solid var(--c-border);
    border-radius:var(--radius-md);
    padding:24px;
}
.sidebar-card h3{
    font-size:17px;
    font-weight:800;
    margin-bottom:18px;
    padding-bottom:12px;
    border-bottom:1px solid var(--c-border);
    position:relative;
}
.sidebar-card h3::after{
    content:'';
    position:absolute;
    left:0;bottom:-1px;
    width:40px;height:2px;
    background:var(--c-gold);
    border-radius:2px;
}
.tag-cloud{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.tag-cloud a{
    font-size:13px;
    font-weight:600;
    color:var(--c-text-secondary);
    background:rgba(255,255,255,0.04);
    border:1px solid var(--c-border);
    border-radius:20px;
    padding:6px 14px;
    line-height:1;
    transition:all .25s;
}
.tag-cloud a:hover{
    color:var(--c-gold);
    border-color:var(--c-border-strong);
    background:var(--c-gold-soft);
}
.sidebar-special{
    position:relative;
    display:block;
    border-radius:var(--radius-md);
    overflow:hidden;
    border:1px solid var(--c-border);
    transition:border-color .3s,transform .3s;
}
.sidebar-special:hover{
    border-color:var(--c-border-strong);
    transform:translateY(-2px);
}
.sidebar-special img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
}
.sidebar-special .ss-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(15,19,24,0.2) 0%,rgba(15,19,24,0.85) 100%);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    transition:background .3s;
}
.sidebar-special:hover .ss-overlay{background:linear-gradient(180deg,rgba(15,19,24,0.1) 0%,rgba(15,19,24,0.9) 100%)}
.sidebar-special .ss-label{
    font-size:12px;
    font-weight:700;
    color:var(--c-gold);
    text-transform:uppercase;
    letter-spacing:.05em;
}
.sidebar-special .ss-title{
    font-size:18px;
    font-weight:800;
    line-height:1.3;
    margin-top:6px;
}
.sidebar-special .ss-arrow{
    font-size:14px;
    color:var(--c-gold);
    margin-top:8px;
    display:inline-block;
    transition:transform .25s;
}
.sidebar-special:hover .ss-arrow{transform:translateX(4px)}

/* ===== Stats Band ===== */
.stats-band{
    background:var(--c-bg-soft);
    border-top:1px solid var(--c-border);
    border-bottom:1px solid var(--c-border);
    padding:clamp(48px,6vw,72px) 0;
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.stat-item{
    text-align:center;
    padding:24px;
    background:var(--c-card);
    border:1px solid var(--c-border);
    border-radius:var(--radius-md);
    transition:border-color .3s;
}
.stat-item:hover{border-color:var(--c-border-strong)}
.stat-num{
    font-family:var(--f-display);
    font-size:44px;
    font-weight:700;
    color:var(--c-gold);
    line-height:1;
    letter-spacing:1px;
}
.stat-label{
    font-size:14px;
    color:var(--c-text-secondary);
    margin-top:10px;
    line-height:1.6;
}

/* ===== FAQ ===== */
.faq-section{
    padding:clamp(64px,8vw,96px) 0;
}
.faq-section .section-head{
    text-align:center;
    display:block;
}
.faq-section .section-head h2{font-size:32px}
.faq-section .section-head p{
    font-size:15px;
    color:var(--c-text-secondary);
    margin-top:8px;
}
.accordion-item{
    background:var(--c-bg-soft);
    border:1px solid transparent;
    border-radius:var(--radius-md);
    margin-bottom:12px;
    overflow:hidden;
    transition:border-color .3s,background .3s;
}
.accordion-item:hover{border-color:rgba(198,161,91,0.15)}
.accordion-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 24px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    color:var(--c-text);
    line-height:1.4;
    transition:color .25s;
}
.accordion-title .q{color:var(--c-gold);font-weight:800;margin-right:8px}
.accordion-title:hover{color:var(--c-gold)}
.accordion-title .icon{
    width:24px;height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--c-border-strong);
    border-radius:50%;
    color:var(--c-gold);
    font-size:13px;
    flex-shrink:0;
    transition:transform .3s;
}
.accordion-item.is-active .accordion-title .icon{transform:rotate(180deg)}
.accordion-content{
    display:none;
    padding:0 24px 20px;
    font-size:15px;
    color:var(--c-text-secondary);
    line-height:1.75;
}
.accordion-item.is-active .accordion-content{display:block}

/* ===== CTA ===== */
.cta-band{
    position:relative;
    background:var(--c-bg-soft);
    border-top:1px solid var(--c-border);
    border-bottom:1px solid var(--c-border);
    padding:clamp(64px,8vw,96px) 0;
    text-align:center;
}
.cta-band h2{
    font-size:clamp(26px,4vw,36px);
    font-weight:800;
    line-height:1.25;
    margin-bottom:12px;
}
.cta-band h2 .gold{color:var(--c-gold)}
.cta-band p{
    font-size:16px;
    color:var(--c-text-secondary);
    margin-bottom:28px;
}
.cta-form{
    display:flex;
    gap:12px;
    justify-content:center;
    max-width:520px;
    margin:0 auto;
}
.cta-form input{
    flex:1;
    height:48px;
    border-radius:var(--radius-sm);
    background:#0F1318;
    border:1px solid rgba(255,255,255,0.15);
    padding:0 18px;
    font-size:15px;
    color:var(--c-text);
    transition:border-color .25s,box-shadow .25s;
}
.cta-form input::placeholder{color:var(--c-text-muted)}
.cta-form input:focus{
    outline:none;
    border-color:var(--c-gold);
    box-shadow:0 0 0 3px rgba(198,161,91,0.15);
}
.cta-form .btn-gold{min-width:140px}
.cta-note{
    font-size:12px;
    color:var(--c-text-muted);
    margin-top:14px;
}

/* ===== Footer ===== */
.site-footer{
    background:#0B0E11;
    border-top:1px solid rgba(198,161,91,0.2);
    padding:60px 0 0;
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:48px;
    padding-bottom:36px;
}
.footer-brand .brand-logo{
    margin-bottom:16px;
}
.footer-desc{
    font-size:14px;
    color:var(--c-text-secondary);
    line-height:1.8;
    max-width:360px;
}
.footer-links h4,.footer-col h4{
    font-size:16px;
    font-weight:700;
    color:var(--c-text);
    margin-bottom:16px;
    letter-spacing:.02em;
}
.footer-links ul li{margin-bottom:10px}
.footer-links ul li a{
    font-size:14px;
    color:var(--c-text-secondary);
    transition:color .25s,padding-left .25s;
}
.footer-links ul li a:hover{
    color:var(--c-gold);
    padding-left:4px;
}
.footer-sub-form{
    display:flex;
    gap:8px;
    margin-top:10px;
}
.footer-sub-form input{
    flex:1;
    height:44px;
    border-radius:var(--radius-sm);
    background:#0F1318;
    border:1px solid rgba(255,255,255,0.15);
    padding:0 14px;
    font-size:14px;
    color:var(--c-text);
    transition:border-color .25s;
}
.footer-sub-form input::placeholder{color:var(--c-text-muted)}
.footer-sub-form input:focus{
    outline:none;
    border-color:var(--c-gold);
}
.footer-sub-form .btn-gold{
    height:44px;
    padding:0 16px;
    font-size:14px;
    white-space:nowrap;
}
.footer-bottom{
    border-top:1px solid var(--c-border);
    padding:20px 0;
    text-align:center;
}
.footer-bottom p{
    font-size:13px;
    color:var(--c-text-muted);
}

/* ===== Responsive ===== */
@media (max-width:1024px){
    .nav-list{gap:24px}
    .header-inner{gap:16px}
    .news-item-media{min-width:220px}
}
@media (max-width:768px){
    .grid-container{padding-left:16px;padding-right:16px}
    .header-inner{height:64px}
    .nav-burger{
        display:flex;
        width:40px;height:40px;
        align-items:center;
        justify-content:center;
        border:1px solid var(--c-border);
        border-radius:8px;
        cursor:pointer;
    }
    .nav-burger span{
        display:block;
        width:16px;height:2px;
        background:var(--c-text);
        position:relative;
    }
    .nav-burger span::before,.nav-burger span::after{
        content:'';
        position:absolute;
        left:0;
        width:100%;height:2px;
        background:var(--c-text);
    }
    .nav-burger span::before{top:-5px}
    .nav-burger span::after{top:5px}
    .nav-center{
        display:none;
        position:absolute;
        top:64px;
        left:0;right:0;
        background:#0F1318;
        border-bottom:1px solid var(--c-border);
        padding:16px;
        z-index:99;
    }
    .nav-center.is-open{display:block}
    .nav-list{
        flex-direction:column;
        gap:0;
    }
    .nav-list a{
        display:block;
        padding:14px 8px;
        font-size:16px;
        border-bottom:1px solid var(--c-border);
    }
    .nav-list a::after{display:none}
    .header-actions .btn-gold{
        height:40px;
        padding:0 14px;
        font-size:13px;
    }
    .live-badge{display:none}
    .page-hero{padding:48px 0}
    .page-hero h1{font-size:28px}
    .hero-sub{font-size:15px}
    .news-item{
        flex-direction:column;
    }
    .news-item-media{
        width:100%;
        min-width:0;
        aspect-ratio:16/9;
    }
    .news-item-body{padding:20px}
    .news-item-body h3{font-size:17px}
    .sidebar{
        position:static;
        margin-top:32px;
    }
    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }
    .cta-form{
        flex-direction:column;
        max-width:100%;
    }
    .cta-form .btn-gold{width:100%}
    .footer-sub-form{
        flex-direction:column;
    }
    .footer-sub-form .btn-gold{width:100%}
    .stats-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
}
@media (max-width:520px){
    .logo-text{font-size:17px}
    .logo-badge{display:none}
    .nav-burger{margin-left:auto}
    .section-head h2{font-size:22px}
    .news-item-body p{
        font-size:14px;
    }
    .hero-meta .hm-item{font-size:12px}
}
@media (prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation-duration:0.01ms !important;
        transition-duration:0.01ms !important;
    }
}
