/* roulang page: index */
:root {
            --bg-primary: #0E1116;
            --bg-secondary: #151921;
            --bg-card: #181C25;
            --border: #2A2E3A;
            --border-dark: #1D212A;
            --text-primary: #E6E9EF;
            --text-secondary: #A7AEBB;
            --text-muted: #6F7683;
            --gold: #F2C94C;
            --gold-light: #FFD966;
            --cyan: #2EC4B6;
            --red: #F85A5A;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 999px;
            --radius-bar: 8px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
            --container-max: 1280px;
            --section-pad-desktop: 72px;
            --section-pad-mobile: 40px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }

        .brand-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }

        .brand-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 2px;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-secondary);
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }

        .search-trigger:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }

        .nav-row {
            display: flex;
            align-items: center;
            height: 44px;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-row::-webkit-scrollbar {
            display: none;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 6px;
            right: 6px;
            height: 2px;
            background-color: var(--gold);
            border-radius: 2px 2px 0 0;
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .nav-link:hover {
            color: var(--cyan);
        }

        .nav-link.active {
            color: var(--gold);
            font-weight: 700;
        }

        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            overflow: hidden;
            padding: var(--section-pad-desktop) 0;
            background-color: var(--bg-primary);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.35;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(14, 17, 22, 0.75) 0%, rgba(14, 17, 22, 0.92) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content {
            max-width: 640px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .hero-title .gold-em {
            color: var(--gold);
        }

        .hero-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 68ch;
            margin-bottom: 28px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 20px;
            background-color: var(--gold);
            color: #0E1116;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-btn);
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
            box-shadow: 0 4px 12px rgba(242, 201, 76, 0.25);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background-color: var(--gold-light);
            box-shadow: 0 6px 18px rgba(242, 201, 76, 0.35);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        .btn-primary:active {
            transform: translateY(1px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 20px;
            background: transparent;
            color: var(--gold);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--gold);
            transition: background 0.2s ease, border-color 0.2s ease;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(242, 201, 76, 0.12);
            border-color: var(--gold-light);
        }

        .btn-secondary:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        .version-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-bar);
        }

        .version-strip .vs-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .version-strip .vs-dot {
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .version-strip .vs-text {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .hero-scoreboard {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .scoreboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .scoreboard-header .sb-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .scoreboard-header .sb-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--cyan);
            background: rgba(46, 196, 182, 0.12);
            padding: 4px 12px;
            border-radius: var(--radius-tag);
        }

        .scoreboard-header .sb-status .live-dot {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .scoreboard-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-dark);
        }

        .scoreboard-match:last-of-type {
            border-bottom: none;
        }

        .sb-team {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            min-width: 0;
            flex: 1;
        }

        .sb-team .team-logo {
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-muted);
            flex-shrink: 0;
            overflow: hidden;
        }

        .sb-team .team-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sb-team .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sb-score {
            font-family: var(--font-numeric);
            font-size: 30px;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 2px;
            flex-shrink: 0;
            min-width: 70px;
            text-align: center;
        }

        .sb-score .score-divider {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 20px;
            margin: 0 2px;
        }

        .sb-match-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .sb-match-info .bo-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-secondary);
            background: var(--bg-secondary);
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            white-space: nowrap;
        }

        .sb-match-info .match-time {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .scoreboard-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 14px;
            border-top: 1px solid var(--border-dark);
        }

        .scoreboard-footer .sf-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .scoreboard-footer .sf-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--cyan);
            white-space: nowrap;
        }

        .scoreboard-footer .sf-link:hover {
            color: #4FD8CC;
        }

        /* ===== Shared Section Styles ===== */
        .section {
            padding: var(--section-pad-desktop) 0;
        }

        .section-alt {
            background-color: var(--bg-secondary);
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(23px, 2.6vw, 32px);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 68ch;
            line-height: 1.8;
        }

        /* ===== Live Ticker ===== */
        .live-ticker-section {
            padding: 0 0 24px 0;
            background-color: var(--bg-primary);
        }

        .live-ticker {
            display: flex;
            align-items: center;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 12px 0;
        }

        .live-ticker::-webkit-scrollbar {
            display: none;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 240px;
            flex-shrink: 0;
            padding: 12px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-bar);
            transition: border-color 0.2s ease;
        }

        .ticker-item:hover {
            border-color: var(--gold);
        }

        .ticker-item .ticker-region {
            font-size: 11px;
            font-weight: 700;
            color: var(--cyan);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .ticker-item .ticker-teams {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .ticker-item .ticker-score {
            font-family: var(--font-numeric);
            font-size: 22px;
            font-weight: 800;
            color: var(--gold);
            flex-shrink: 0;
            letter-spacing: 1px;
        }

        .ticker-item .ticker-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            font-weight: 700;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .ticker-item .ticker-status .live-pulse {
            width: 6px;
            height: 6px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        /* ===== Service Matrix ===== */
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .matrix-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .matrix-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .matrix-card .matrix-icon {
            width: 44px;
            height: 44px;
            background: rgba(242, 201, 76, 0.1);
            border: 1px solid rgba(242, 201, 76, 0.25);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .matrix-card .matrix-card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .matrix-card .matrix-card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        /* ===== Channel Entry ===== */
        .channel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .channel-card-link {
            display: block;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: border-color 0.25s ease, transform 0.25s ease;
            position: relative;
        }

        .channel-card-link:hover {
            border-color: var(--cyan);
            transform: translateY(-2px);
        }

        .channel-card-link .channel-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .channel-card-link .channel-name .ch-icon {
            color: var(--cyan);
            font-size: 18px;
        }

        .channel-card-link .channel-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .channel-card-link .channel-arrow {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 16px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .channel-card-link:hover .channel-arrow {
            color: var(--cyan);
        }

        /* ===== Data Hub ===== */
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }

        .hub-stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            text-align: center;
            transition: border-color 0.2s ease;
        }

        .hub-stat-card:hover {
            border-color: var(--gold);
        }

        .hub-stat-value {
            font-family: var(--font-numeric);
            font-size: 40px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .hub-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-top: 6px;
        }

        .hub-stat-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            line-height: 1.5;
        }

        /* ===== Steps ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            position: relative;
            transition: border-color 0.2s ease;
        }

        .step-card:hover {
            border-color: var(--cyan);
        }

        .step-number {
            font-family: var(--font-numeric);
            font-size: 36px;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1;
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .step-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* ===== Tournament Wall ===== */
        .tournament-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .tournament-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        .tournament-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .tournament-cover {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--bg-secondary);
            position: relative;
        }

        .tournament-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .tournament-card:hover .tournament-cover img {
            transform: scale(1.05);
        }

        .tournament-cover .tournament-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 11px;
            font-weight: 700;
            color: #0E1116;
            background: var(--gold);
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            letter-spacing: 0.5px;
            z-index: 1;
        }

        .tournament-body {
            padding: 18px 20px 20px;
        }

        .tournament-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .tournament-card:hover .tournament-title {
            color: var(--cyan);
        }

        .tournament-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .tournament-meta .tm-dot {
            width: 4px;
            height: 4px;
            background: var(--text-muted);
            border-radius: 50%;
        }

        /* ===== News List ===== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            align-items: stretch;
        }

        .news-item:hover {
            border-color: var(--cyan);
            box-shadow: var(--shadow-card);
        }

        .news-thumb {
            width: 180px;
            flex-shrink: 0;
            aspect-ratio: 16/9;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-item:hover .news-thumb img {
            transform: scale(1.05);
        }

        .news-content {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 6px;
            transition: color 0.2s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item:hover .news-title {
            color: var(--cyan);
        }

        .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .news-meta .news-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan);
            background: rgba(46, 196, 182, 0.1);
            padding: 2px 10px;
            border-radius: var(--radius-tag);
        }

        .news-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--cyan);
            margin-top: 16px;
            transition: color 0.2s ease;
        }

        .news-more-btn:hover {
            color: #4FD8CC;
        }

        /* ===== Brand Intro ===== */
        .brand-intro-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 32px;
            align-items: center;
        }

        .brand-intro-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 200px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .brand-intro-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .brand-intro-visual .bi-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-numeric);
            font-size: 56px;
            font-weight: 800;
            color: rgba(242, 201, 76, 0.35);
            letter-spacing: 3px;
        }

        .brand-intro-content .bi-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .brand-intro-content .bi-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .brand-intro-content .bi-text:last-child {
            margin-bottom: 0;
        }

        /* ===== Partners ===== */
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }

        .partner-logo {
            width: 140px;
            height: 60px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            transition: border-color 0.2s ease, color 0.2s ease;
            overflow: hidden;
            text-align: center;
            padding: 8px;
        }

        .partner-logo:hover {
            border-color: var(--gold);
            color: var(--text-secondary);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: var(--bg-card);
            transition: border-color 0.2s ease;
        }

        .faq-item.active {
            border-color: var(--gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            user-select: none;
            transition: color 0.2s ease;
            background: none;
            text-align: left;
            width: 100%;
        }

        .faq-question:hover {
            color: var(--cyan);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--gold);
            transition: transform 0.25s ease;
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }

        .faq-answer-inner {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            background: var(--bg-secondary);
            border-left: 4px solid var(--gold);
            padding: 14px 16px;
            border-radius: 0 8px 8px 0;
        }

        /* ===== Trust Badges ===== */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-bar);
            transition: border-color 0.2s ease;
        }

        .trust-item:hover {
            border-color: var(--cyan);
        }

        .trust-item .trust-icon {
            width: 36px;
            height: 36px;
            background: rgba(46, 196, 182, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .trust-item .trust-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* ===== Subscribe CTA ===== */
        .subscribe-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .subscribe-card .subscribe-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .subscribe-card .subscribe-desc {
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .subscribe-input {
            flex: 1;
            min-width: 240px;
            height: 44px;
            padding: 0 16px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            font-size: 14px;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .subscribe-input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
        }

        .subscribe-form .btn-primary {
            white-space: nowrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0B0D12;
            border-top: 1px solid var(--border-dark);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand .footer-logo .logo-mark {
            width: 24px;
            height: 24px;
            background: var(--gold);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: #0E1116;
        }

        .footer-brand .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color 0.2s ease;
        }

        .footer-col .footer-link:hover {
            color: var(--cyan);
        }

        .footer-col .footer-subscribe-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .footer-subscribe-form {
            display: flex;
            gap: 8px;
        }

        .footer-subscribe-form .footer-input {
            flex: 1;
            height: 36px;
            padding: 0 12px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease;
        }

        .footer-subscribe-form .footer-input:focus {
            border-color: var(--cyan);
        }

        .footer-subscribe-form .footer-submit {
            height: 36px;
            padding: 0 16px;
            background: var(--gold);
            color: #0E1116;
            font-weight: 700;
            font-size: 13px;
            border-radius: 8px;
            white-space: nowrap;
            transition: background 0.2s ease;
        }

        .footer-subscribe-form .footer-submit:hover {
            background: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-bottom .fb-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom .fb-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-bottom .fb-links a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .footer-bottom .fb-links a:hover {
            color: var(--cyan);
        }

        /* ===== Scroll to top ===== */
        .scroll-top-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: var(--gold);
            color: #0E1116;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(242, 201, 76, 0.35);
            z-index: 80;
            transition: background 0.2s ease, transform 0.2s ease;
            opacity: 0;
            pointer-events: none;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-top-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .hero-content {
                max-width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .brand-intro-card {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .brand-intro-visual {
                min-height: 160px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-pad-mobile) 0;
            }

            .hero-section {
                padding: 40px 0;
            }

            .hero-title {
                font-size: clamp(24px, 6vw, 32px);
            }

            .hero-scoreboard {
                padding: 16px;
            }

            .sb-team .team-logo {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .sb-score {
                font-size: 24px;
                min-width: 56px;
            }

            .news-thumb {
                width: 120px;
            }

            .news-item {
                flex-direction: column;
            }

            .news-thumb {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .brand-row {
                height: 56px;
            }

            .nav-row {
                height: 40px;
                gap: 14px;
            }

            .nav-link {
                height: 40px;
                font-size: 13px;
            }

            .tournament-grid {
                grid-template-columns: 1fr;
            }

            .channel-grid {
                grid-template-columns: 1fr 1fr;
            }

            .matrix-grid {
                grid-template-columns: 1fr;
            }

            .brand-intro-card {
                padding: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .channel-grid {
                grid-template-columns: 1fr;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-input {
                min-width: 100%;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-secondary {
                width: 100%;
            }

            .scoreboard-match {
                flex-wrap: wrap;
            }

            .sb-team {
                min-width: calc(100% - 80px);
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Accessibility ===== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        :focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0E1116;
            --bg-secondary: #151921;
            --bg-card: #181C25;
            --border: #2A2E3A;
            --border-dark: #1D212A;
            --text-primary: #E6E9EF;
            --text-secondary: #A7AEBB;
            --text-muted: #6F7683;
            --gold: #F2C94C;
            --gold-light: #FFD966;
            --cyan: #2EC4B6;
            --red: #F85A5A;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 999px;
            --radius-bar: 8px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
            --container-max: 1280px;
            --section-pad-desktop: 72px;
            --section-pad-mobile: 40px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }
        .brand-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }
        .brand-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 2px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .search-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-secondary);
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }
        .search-trigger:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }
        .nav-row {
            display: flex;
            align-items: center;
            height: 44px;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-row::-webkit-scrollbar {
            display: none;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 6px;
            right: 6px;
            height: 2px;
            background-color: var(--gold);
            border-radius: 2px 2px 0 0;
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .nav-link:hover {
            color: var(--cyan);
        }
        .nav-link.active {
            color: var(--gold);
            font-weight: 700;
        }
        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }
        .breadcrumb a:hover {
            color: var(--cyan);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            margin: 0 2px;
        }
        .breadcrumb .current {
            color: var(--gold);
        }

        /* ===== Category Banner ===== */
        .category-banner {
            position: relative;
            padding: 48px 0 40px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-dark);
            overflow: hidden;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/8c301fe31a1a9912.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        .category-banner .container {
            position: relative;
            z-index: 1;
        }
        .category-banner h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: clamp(28px, 3.5vw, 42px);
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .category-banner .banner-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 68ch;
            margin: 0;
        }

        /* ===== Section common ===== */
        .section {
            padding: var(--section-pad-desktop) 0;
        }
        .section-alt {
            padding: var(--section-pad-desktop) 0;
            background: var(--bg-secondary);
        }
        .section-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: clamp(23px, 2.6vw, 32px);
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .section-sub {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0 0 28px;
            max-width: 68ch;
        }

        /* ===== Week Calendar ===== */
        .week-calendar {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 4px;
        }
        .week-calendar::-webkit-scrollbar {
            display: none;
        }
        .day-card {
            min-width: 84px;
            flex-shrink: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 14px 10px;
            text-align: center;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .day-card:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        .day-card.today {
            border-color: var(--gold);
            background: rgba(242, 201, 76, 0.08);
        }
        .day-card .day-name {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        .day-card .day-date {
            font-family: var(--font-numeric);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .day-card .day-count {
            font-size: 11px;
            color: var(--cyan);
            margin-bottom: 2px;
        }
        .day-card.today .day-date {
            color: var(--gold);
        }
        .day-card.today .day-name {
            color: var(--gold);
        }

        /* ===== Schedule Card ===== */
        .schedule-group-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 24px 0 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .schedule-group-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-dark);
        }
        .schedule-card-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .schedule-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .schedule-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        .schedule-time {
            font-family: var(--font-numeric);
            font-size: 18px;
            font-weight: 700;
            color: var(--cyan);
            min-width: 64px;
            text-align: center;
        }
        .schedule-region {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-tag);
            background: rgba(46, 196, 182, 0.1);
            color: var(--cyan);
            font-weight: 600;
            white-space: nowrap;
        }
        .schedule-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 200px;
        }
        .schedule-team {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .schedule-team-logo {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .schedule-vs {
            font-family: var(--font-numeric);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-muted);
        }
        .schedule-bo {
            font-size: 12px;
            color: var(--text-muted);
            background: var(--bg-secondary);
            padding: 4px 10px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border-dark);
            white-space: nowrap;
        }
        .schedule-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            white-space: nowrap;
        }
        .schedule-status.upcoming {
            background: rgba(242, 201, 76, 0.1);
            color: var(--gold);
        }
        .schedule-status.live {
            background: rgba(46, 196, 182, 0.15);
            color: var(--cyan);
        }
        .schedule-status.done {
            background: rgba(107, 115, 131, 0.15);
            color: var(--text-muted);
        }

        /* ===== Region Filter Cards ===== */
        .region-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .region-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            text-align: center;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .region-card:hover {
            border-color: var(--cyan);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .region-card .region-name {
            font-family: var(--font-numeric);
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .region-card .region-cn {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .region-card .region-info {
            font-size: 12px;
            color: var(--text-muted);
        }
        .region-card .region-tag {
            display: inline-block;
            font-size: 12px;
            padding: 2px 10px;
            border-radius: var(--radius-tag);
            background: rgba(242, 201, 76, 0.1);
            color: var(--gold);
            margin-top: 8px;
        }

        /* ===== Focus Match Cards ===== */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .focus-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .focus-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .focus-card-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .focus-card-body {
            padding: 16px 20px 20px;
        }
        .focus-card-tag {
            font-size: 11px;
            padding: 3px 10px;
            border-radius: var(--radius-tag);
            background: rgba(46, 196, 182, 0.1);
            color: var(--cyan);
            font-weight: 600;
            display: inline-block;
            margin-bottom: 8px;
        }
        .focus-card-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .focus-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .focus-card-meta .fc-time {
            font-family: var(--font-numeric);
            font-weight: 700;
            color: var(--gold);
        }

        /* ===== Format Info ===== */
        .format-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .format-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            transition: border-color 0.2s ease;
        }
        .format-card:hover {
            border-color: var(--cyan);
        }
        .format-card h3 {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--gold);
            margin: 0 0 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .format-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
        }
        .format-card .format-list {
            margin: 10px 0 0;
            padding-left: 18px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .format-card .format-list li {
            margin-bottom: 6px;
        }

        /* ===== CTA / Subscribe ===== */
        .subscribe-section {
            padding: var(--section-pad-desktop) 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-dark);
        }
        .subscribe-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 32px 36px;
        }
        .subscribe-left {
            flex: 1;
            min-width: 240px;
        }
        .subscribe-left h2 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.4vw, 28px);
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .subscribe-left p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .subscribe-form input[type="email"] {
            height: 44px;
            padding: 0 16px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 14px;
            min-width: 240px;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .subscribe-form input[type="email"]::placeholder {
            color: var(--text-muted);
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 22px;
            background: var(--gold);
            color: #0E1116;
            font-weight: 700;
            font-size: 14px;
            border-radius: var(--radius-btn);
            transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--gold-light);
        }
        .btn-primary:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }
        .btn-primary:active {
            transform: translateY(1px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0B0D12;
            border-top: 1px solid var(--border);
            padding: 48px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 32px;
            padding-bottom: 32px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-mark {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }
        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            max-width: 300px;
        }
        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            transition: color 0.2s ease;
        }
        .footer-link:hover {
            color: var(--cyan);
        }
        .footer-subscribe-text {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 12px;
        }
        .footer-subscribe-form {
            display: flex;
            gap: 8px;
        }
        .footer-input {
            flex: 1;
            height: 40px;
            padding: 0 12px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 13px;
            outline: none;
            min-width: 0;
            transition: border-color 0.2s ease;
        }
        .footer-input:focus {
            border-color: var(--cyan);
        }
        .footer-submit {
            height: 40px;
            padding: 0 16px;
            background: var(--gold);
            color: #0E1116;
            font-weight: 700;
            font-size: 13px;
            border-radius: 8px;
            transition: background 0.2s ease;
            white-space: nowrap;
        }
        .footer-submit:hover {
            background: var(--gold-light);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 16px 0;
            border-top: 1px solid var(--border-dark);
            font-size: 12px;
            color: var(--text-muted);
        }
        .fb-links {
            display: flex;
            gap: 16px;
        }
        .fb-links a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .fb-links a:hover {
            color: var(--cyan);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .section, .section-alt, .subscribe-section {
                padding: 48px 0;
            }
            .region-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .category-banner {
                padding: 32px 0 28px;
            }
            .schedule-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .schedule-teams {
                min-width: auto;
                width: 100%;
            }
            .subscribe-wrap {
                padding: 24px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-form {
                width: 100%;
            }
            .subscribe-form input[type="email"] {
                min-width: 0;
                flex: 1;
            }
        }
        @media (max-width: 640px) {
            .section, .section-alt, .subscribe-section {
                padding: 40px 0;
            }
            .region-grid {
                grid-template-columns: 1fr;
            }
            .focus-grid {
                grid-template-columns: 1fr;
            }
            .format-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-row {
                gap: 12px;
            }
            .brand-logo {
                font-size: 17px;
            }
            .brand-logo .logo-sub {
                font-size: 10px;
                letter-spacing: 1px;
            }
            .search-trigger span {
                display: none;
            }
            .search-trigger {
                padding: 0 10px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0E1116;
            --bg-secondary: #151921;
            --bg-card: #181C25;
            --border: #2A2E3A;
            --border-dark: #1D212A;
            --text-primary: #E6E9EF;
            --text-secondary: #A7AEBB;
            --text-muted: #6F7683;
            --gold: #F2C94C;
            --gold-light: #FFD966;
            --cyan: #2EC4B6;
            --red: #F85A5A;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 999px;
            --radius-bar: 8px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
            --container-max: 1280px;
            --section-pad-desktop: 72px;
            --section-pad-mobile: 40px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }

        .brand-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }

        .brand-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 2px;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-secondary);
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }

        .search-trigger:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }

        .nav-row {
            display: flex;
            align-items: center;
            height: 44px;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-row::-webkit-scrollbar {
            display: none;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 6px;
            right: 6px;
            height: 2px;
            background-color: var(--gold);
            border-radius: 2px 2px 0 0;
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .nav-link:hover {
            color: var(--cyan);
        }

        .nav-link.active {
            color: var(--gold);
            font-weight: 700;
        }

        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-bar {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-dark);
            padding: 14px 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb-list a {
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }

        .breadcrumb-list a:hover {
            color: var(--cyan);
        }

        .breadcrumb-sep {
            color: var(--border);
            font-size: 12px;
        }

        .breadcrumb-current {
            color: var(--gold);
            font-weight: 600;
        }

        /* ===== Category Banner ===== */
        .category-banner {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-dark);
            padding: 28px 0 24px;
        }

        .category-banner-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .category-banner-left h1 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0;
        }

        .category-banner-left p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 8px 0 0;
            max-width: 60ch;
        }

        .category-banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(46, 196, 182, 0.12);
            border: 1px solid rgba(46, 196, 182, 0.35);
            border-radius: var(--radius-tag);
            font-size: 12px;
            color: var(--cyan);
            font-weight: 600;
            white-space: nowrap;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse-dot 1.4s ease-in-out infinite;
            display: inline-block;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.45;
                transform: scale(0.7);
            }
        }

        /* ===== Filter Bar ===== */
        .filter-section {
            padding: 24px 0 8px;
        }

        .filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-right: 4px;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            height: 36px;
            padding: 0 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            font-size: 13px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .filter-tag:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
            background: rgba(46, 196, 182, 0.06);
        }

        .filter-tag.active {
            background: rgba(242, 201, 76, 0.12);
            border-color: var(--gold);
            color: var(--gold);
            font-weight: 600;
        }

        .filter-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 36px;
            padding: 0 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            font-size: 13px;
            color: var(--text-secondary);
            margin-left: auto;
            white-space: nowrap;
        }

        /* ===== Score Card ===== */
        .score-list-section {
            padding: 32px 0 48px;
        }

        .score-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
        }

        .score-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: var(--shadow-card);
        }

        .score-card-team {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 140px;
            flex: 1;
        }

        .score-card-team:last-of-type {
            flex-direction: row-reverse;
            text-align: right;
        }

        .team-logo-placeholder {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: var(--text-secondary);
            flex-shrink: 0;
            transition: border-color 0.2s ease;
        }

        .score-card:hover .team-logo-placeholder {
            border-color: var(--gold);
        }

        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .team-region {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 400;
            margin-top: 2px;
        }

        .score-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 0 12px;
            flex-shrink: 0;
        }

        .score-number {
            font-family: var(--font-numeric);
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 0.03em;
            line-height: 1;
            color: var(--text-primary);
        }

        .score-number .score-win {
            color: var(--gold);
        }

        .score-number .score-lose {
            color: var(--text-secondary);
        }

        .score-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .match-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            white-space: nowrap;
        }

        .match-status.live {
            background: rgba(248, 90, 90, 0.15);
            color: var(--red);
            border: 1px solid rgba(248, 90, 90, 0.35);
        }

        .match-status.finished {
            background: rgba(111, 118, 131, 0.15);
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        .match-status.upcoming {
            background: rgba(46, 196, 182, 0.12);
            color: var(--cyan);
            border: 1px solid rgba(46, 196, 182, 0.35);
        }

        .match-bo {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .match-time {
            font-family: var(--font-numeric);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
            letter-spacing: 0.03em;
        }

        .match-region-tag {
            display: inline-flex;
            align-items: center;
            height: 22px;
            padding: 0 10px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            font-size: 11px;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        /* ===== Focus Match ===== */
        .focus-match-section {
            padding: 24px 0 48px;
        }

        .focus-match-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 0;
        }

        .focus-match-visual {
            position: relative;
            min-height: 280px;
            background: var(--bg-card);
            overflow: hidden;
        }

        .focus-match-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }

        .focus-match-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 17, 22, 0.72) 0%, rgba(14, 17, 22, 0.35) 100%);
            pointer-events: none;
        }

        .focus-match-info {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }

        .focus-match-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .focus-match-teams {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .focus-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .focus-team-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .focus-match-detail {
            font-size: 13px;
            color: var(--text-secondary);
            max-width: 55ch;
        }

        .focus-match-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .focus-stat-item {
            font-size: 13px;
            color: var(--text-muted);
        }

        .focus-stat-item strong {
            font-family: var(--font-numeric);
            font-size: 15px;
            color: var(--cyan);
            font-weight: 700;
        }

        /* ===== Info Panel ===== */
        .info-panel-section {
            padding: 24px 0;
        }

        .info-panel-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .info-panel-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 28px 24px;
            transition: border-color 0.2s ease;
        }

        .info-panel-card:hover {
            border-color: var(--border);
        }

        .info-panel-icon {
            width: 44px;
            height: 44px;
            background: rgba(242, 201, 76, 0.1);
            border: 1px solid rgba(242, 201, 76, 0.3);
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .info-panel-icon svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        .info-panel-card h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
            line-height: 1.35;
        }

        .info-panel-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
        }

        .info-panel-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
        }

        .info-panel-list li {
            font-size: 14px;
            color: var(--text-secondary);
            padding-left: 18px;
            position: relative;
            margin-bottom: 6px;
        }

        .info-panel-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 11px;
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
        }

        /* ===== Delay Notice ===== */
        .delay-notice-section {
            padding: 24px 0 8px;
        }

        .delay-notice {
            background: rgba(248, 90, 90, 0.06);
            border: 1px solid rgba(248, 90, 90, 0.25);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .delay-notice-icon {
            width: 36px;
            height: 36px;
            background: rgba(248, 90, 90, 0.15);
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .delay-notice-icon svg {
            width: 18px;
            height: 18px;
            color: var(--red);
        }

        .delay-notice-content h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
        }

        .delay-notice-content p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }

        /* ===== News List ===== */
        .news-list-section {
            padding: 32px 0 48px;
        }

        .news-list-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .news-list-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 14px 18px 14px 14px;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .news-list-item:hover {
            border-color: var(--border);
            transform: translateY(-2px);
        }

        .news-list-thumb {
            width: 140px;
            height: 80px;
            border-radius: var(--radius-btn);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-secondary);
        }

        .news-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-list-content {
            flex: 1;
            min-width: 0;
        }

        .news-list-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px;
            line-height: 1.45;
            transition: color 0.2s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item:hover .news-list-title {
            color: var(--cyan);
        }

        .news-list-summary {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 6px;
            line-height: 1.6;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            color: var(--text-muted);
        }

        .news-list-tag {
            display: inline-flex;
            align-items: center;
            height: 20px;
            padding: 0 10px;
            background: rgba(46, 196, 182, 0.1);
            border: 1px solid rgba(46, 196, 182, 0.3);
            border-radius: var(--radius-tag);
            font-size: 11px;
            color: var(--cyan);
            white-space: nowrap;
        }

        .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 44px;
            padding: 0 24px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            margin-top: 16px;
        }

        .view-more-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(242, 201, 76, 0.06);
        }

        /* ===== Subscribe CTA ===== */
        .subscribe-cta-section {
            padding: 32px 0 72px;
        }

        .subscribe-cta {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 40px 40px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .subscribe-cta-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(20px, 2.4vw, 28px);
            font-weight: 800;
            color: var(--text-primary);
            margin: 0 0 10px;
            line-height: 1.3;
        }

        .subscribe-cta-content p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.75;
        }

        .subscribe-form-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .subscribe-input {
            flex: 1;
            min-width: 200px;
            height: 44px;
            padding: 0 16px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            font-size: 14px;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .subscribe-input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            background: var(--gold);
            color: #0E1116;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 700;
            transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            box-shadow: 0 4px 16px rgba(242, 201, 76, 0.25);
        }

        .btn-primary:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        .btn-primary:active {
            transform: translateY(1px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0B0D12;
            border-top: 1px solid var(--border-dark);
            padding: 48px 0 0;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid var(--border-dark);
        }

        .footer-brand {
            min-width: 0;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-logo .logo-mark {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }

        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--cyan);
        }

        .footer-subscribe-text {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 12px;
        }

        .footer-subscribe-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .footer-input {
            flex: 1;
            min-width: 140px;
            height: 40px;
            padding: 0 14px;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            font-size: 13px;
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease;
        }

        .footer-input:focus {
            border-color: var(--cyan);
        }

        .footer-submit {
            height: 40px;
            padding: 0 18px;
            background: var(--gold);
            color: #0E1116;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 700;
            transition: background 0.2s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
        }

        .footer-submit:hover {
            background: var(--gold-light);
        }

        .footer-bottom {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .fb-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }

        .fb-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .fb-links a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .fb-links a:hover {
            color: var(--text-secondary);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .focus-match-card {
                grid-template-columns: 1fr;
            }
            .focus-match-visual {
                min-height: 200px;
            }
            .subscribe-cta {
                grid-template-columns: 1fr;
                padding: 28px 24px;
            }
            .info-panel-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-pad-desktop: 48px;
            }
            .brand-row {
                height: 56px;
            }
            .brand-logo {
                font-size: 17px;
            }
            .brand-logo .logo-sub {
                font-size: 10px;
                letter-spacing: 1.5px;
            }
            .search-trigger span {
                display: none;
            }
            .search-trigger {
                padding: 0 12px;
                height: 36px;
            }
            .nav-row {
                height: 40px;
                gap: 14px;
            }
            .nav-link {
                height: 40px;
                font-size: 13px;
            }
            .category-banner {
                padding: 20px 0 18px;
            }
            .category-banner-left h1 {
                font-size: clamp(22px, 6vw, 30px);
            }
            .filter-date {
                margin-left: 0;
                width: 100%;
                justify-content: center;
            }
            .score-card {
                padding: 16px 18px;
                gap: 12px;
                flex-direction: column;
                align-items: stretch;
            }
            .score-card-team {
                min-width: 0;
                justify-content: flex-start;
            }
            .score-card-team:last-of-type {
                flex-direction: row;
                text-align: left;
                justify-content: flex-start;
            }
            .score-center {
                flex-direction: row;
                align-items: center;
                gap: 10px;
                padding: 4px 0;
                justify-content: flex-start;
            }
            .score-number {
                font-size: 26px;
            }
            .news-list-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px;
            }
            .news-list-thumb {
                width: 100%;
                height: 160px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .category-banner-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .score-card {
                padding: 14px;
            }
            .score-card-team {
                gap: 8px;
            }
            .team-logo-placeholder {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .score-number {
                font-size: 22px;
            }
            .focus-match-info {
                padding: 20px;
            }
            .subscribe-cta {
                padding: 20px 16px;
            }
            .subscribe-form-row {
                flex-direction: column;
            }
            .btn-primary {
                width: 100%;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0E1116;
            --bg-secondary: #151921;
            --bg-card: #181C25;
            --border: #2A2E3A;
            --border-dark: #1D212A;
            --text-primary: #E6E9EF;
            --text-secondary: #A7AEBB;
            --text-muted: #6F7683;
            --gold: #F2C94C;
            --gold-light: #FFD966;
            --cyan: #2EC4B6;
            --red: #F85A5A;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 999px;
            --radius-bar: 8px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
            --container-max: 1280px;
            --section-pad-desktop: 72px;
            --section-pad-mobile: 40px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }
        .brand-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }
        .brand-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 2px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .search-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-secondary);
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }
        .search-trigger:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }
        .nav-row {
            display: flex;
            align-items: center;
            height: 44px;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-row::-webkit-scrollbar {
            display: none;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 6px;
            right: 6px;
            height: 2px;
            background-color: var(--gold);
            border-radius: 2px 2px 0 0;
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .nav-link:hover {
            color: var(--cyan);
        }
        .nav-link.active {
            color: var(--gold);
            font-weight: 700;
        }
        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }
        .page-banner {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-dark);
            padding: 28px 0;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .breadcrumb a:hover {
            color: var(--cyan);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 12px;
        }
        .breadcrumb .current {
            color: var(--text-secondary);
        }
        .page-banner h1 {
            font-size: clamp(28px, 3.2vw, 42px);
            font-weight: 800;
            font-family: var(--font-heading);
            line-height: 1.25;
            margin: 0 0 8px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }
        .page-banner .banner-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 68ch;
            line-height: 1.8;
            margin: 0;
        }
        .section {
            padding: var(--section-pad-desktop) 0;
        }
        .section-alt {
            background-color: var(--bg-secondary);
        }
        .section-title {
            font-size: clamp(23px, 2.6vw, 32px);
            font-weight: 800;
            font-family: var(--font-heading);
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.3px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 68ch;
            line-height: 1.8;
            margin: 0 0 32px;
        }
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px 18px;
            margin-bottom: 24px;
        }
        .filter-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
            flex-shrink: 0;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            height: 34px;
            padding: 0 14px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s ease;
            cursor: pointer;
            user-select: none;
        }
        .filter-chip:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }
        .filter-chip.active {
            background: var(--gold);
            color: #0E1116;
            border-color: var(--gold);
            font-weight: 700;
        }
        .rank-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all 0.2s ease;
            margin-bottom: 14px;
            box-shadow: var(--shadow-card);
        }
        .rank-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
        }
        .rank-number {
            font-family: var(--font-numeric);
            font-size: 32px;
            font-weight: 800;
            color: var(--text-muted);
            min-width: 42px;
            text-align: center;
            line-height: 1;
        }
        .rank-number.top1 {
            color: var(--gold);
        }
        .rank-number.top2 {
            color: var(--cyan);
        }
        .rank-number.top3 {
            color: var(--gold-light);
        }
        .rank-team-logo {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }
        .rank-team-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .rank-team-logo .fake-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--gold);
            letter-spacing: 1px;
        }
        .rank-team-info {
            flex: 1;
            min-width: 0;
        }
        .rank-team-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-heading);
            line-height: 1.3;
            margin: 0 0 4px;
        }
        .rank-team-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 4px 14px;
        }
        .rank-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .rank-stat {
            text-align: center;
        }
        .rank-stat-value {
            font-family: var(--font-numeric);
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.1;
        }
        .rank-stat-value.gold {
            color: var(--gold);
        }
        .rank-stat-value.cyan {
            color: var(--cyan);
        }
        .rank-stat-label {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            margin-top: 4px;
        }
        .compare-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.2s ease;
        }
        .compare-card:hover {
            border-color: var(--cyan);
            transform: translateY(-4px);
        }
        .compare-card .vs-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-numeric);
            font-weight: 800;
            font-size: 18px;
            color: var(--gold);
            background: rgba(242, 201, 76, 0.1);
            border: 1px solid rgba(242, 201, 76, 0.3);
            border-radius: 8px;
            width: 44px;
            height: 32px;
            margin: 0 8px;
        }
        .compare-team-name {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
            text-align: center;
        }
        .compare-stat-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 10px;
        }
        .compare-stat-value {
            font-family: var(--font-numeric);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.1;
        }
        .compare-stat-value.high {
            color: var(--gold);
        }
        .compare-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        .data-note {
            background: var(--bg-secondary);
            border-left: 4px solid var(--cyan);
            border-radius: 0 10px 10px 0;
            padding: 18px 20px;
            margin-top: 16px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .trend-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-dark);
        }
        .trend-item:last-child {
            border-bottom: none;
        }
        .trend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .trend-dot.up {
            background: var(--cyan);
        }
        .trend-dot.down {
            background: var(--red);
        }
        .trend-dot.flat {
            background: var(--text-muted);
        }
        .trend-team {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
            flex-shrink: 0;
            min-width: 60px;
        }
        .trend-desc {
            font-size: 14px;
            color: var(--text-secondary);
            flex: 1;
            min-width: 0;
        }
        .trend-value {
            font-family: var(--font-numeric);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-card);
        }
        .info-card:hover {
            border-color: var(--cyan);
            transform: translateY(-4px);
        }
        .info-card-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-dark);
        }
        .info-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .info-card:hover .info-card-img img {
            transform: scale(1.03);
        }
        .info-card-body {
            padding: 18px 20px;
        }
        .info-card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            margin: 0 0 8px;
            transition: color 0.2s ease;
        }
        .info-card:hover .info-card-title {
            color: var(--cyan);
        }
        .info-card-summary {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0 0 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .info-card-meta {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            padding: 2px 10px;
            font-size: 11px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            background: var(--bg-secondary);
            line-height: 1.6;
        }
        .tag.gold {
            border-color: rgba(242, 201, 76, 0.4);
            color: var(--gold);
            background: rgba(242, 201, 76, 0.08);
        }
        .tag.cyan {
            border-color: rgba(46, 196, 182, 0.4);
            color: var(--cyan);
            background: rgba(46, 196, 182, 0.08);
        }
        .cta-form {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
        }
        .cta-form .cta-text {
            flex: 1;
            min-width: 200px;
        }
        .cta-form .cta-text h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 4px;
            font-family: var(--font-heading);
        }
        .cta-form .cta-text p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }
        .cta-form .form-group {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .cta-input {
            height: 44px;
            padding: 0 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 14px;
            outline: none;
            min-width: 200px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .cta-input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 20px;
            background: var(--gold);
            color: #0E1116;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
            white-space: nowrap;
            border: 2px solid var(--gold);
            outline: none;
        }
        .btn-primary:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
        }
        .btn-primary:focus {
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.5);
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 20px;
            background: transparent;
            color: var(--gold);
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
            white-space: nowrap;
            border: 1px solid var(--gold);
            outline: none;
        }
        .btn-secondary:hover {
            background: rgba(242, 201, 76, 0.12);
        }
        .btn-secondary:focus {
            box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.3);
        }
        .site-footer {
            background: #0B0D12;
            border-top: 1px solid var(--border);
            padding: 48px 0 28px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 17px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-logo .logo-mark {
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }
        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
        }
        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            font-family: var(--font-heading);
        }
        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color 0.2s ease;
        }
        .footer-link:hover {
            color: var(--cyan);
        }
        .footer-subscribe-text {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0 0 12px;
        }
        .footer-subscribe-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-input {
            flex: 1;
            min-width: 140px;
            height: 40px;
            padding: 0 12px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 13px;
            outline: none;
            transition: border-color 0.2s ease;
        }
        .footer-input:focus {
            border-color: var(--cyan);
        }
        .footer-submit {
            height: 40px;
            padding: 0 16px;
            background: var(--gold);
            color: #0E1116;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 700;
            transition: background 0.2s ease;
            border: none;
        }
        .footer-submit:hover {
            background: var(--gold-light);
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
        }
        .fb-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }
        .fb-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        .fb-links a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .fb-links a:hover {
            color: var(--cyan);
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .rank-stats {
                gap: 16px;
            }
            .rank-stat-value {
                font-size: 22px;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: var(--section-pad-mobile) 0;
            }
            .rank-card {
                flex-wrap: wrap;
                gap: 12px;
                padding: 16px;
            }
            .rank-stats {
                width: 100%;
                justify-content: space-between;
                gap: 12px;
            }
            .rank-stat-value {
                font-size: 20px;
            }
            .cta-form {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
            .cta-form .form-group {
                width: 100%;
            }
            .cta-input {
                flex: 1;
                min-width: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .filter-bar {
                padding: 12px 14px;
            }
            .compare-card {
                padding: 18px;
            }
        }
        @media (max-width: 520px) {
            .rank-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .rank-number {
                font-size: 24px;
                min-width: auto;
            }
            .rank-stats {
                width: 100%;
                justify-content: space-between;
            }
            .rank-stat-value {
                font-size: 18px;
            }
            .cta-form .form-group {
                flex-direction: column;
            }
            .cta-input {
                width: 100%;
                min-width: 0;
            }
            .page-banner h1 {
                font-size: 26px;
            }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #0E1116;
            --bg-secondary: #151921;
            --bg-card: #181C25;
            --border: #2A2E3A;
            --border-dark: #1D212A;
            --text-primary: #E6E9EF;
            --text-secondary: #A7AEBB;
            --text-muted: #6F7683;
            --gold: #F2C94C;
            --gold-light: #FFD966;
            --cyan: #2EC4B6;
            --red: #F85A5A;
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-tag: 999px;
            --radius-bar: 8px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
            --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
            --container-max: 1280px;
            --section-pad-desktop: 72px;
            --section-pad-mobile: 40px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            font-size: 16px;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }
        .brand-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #0E1116;
            flex-shrink: 0;
        }
        .brand-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 2px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .search-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 40px;
            padding: 0 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-secondary);
            font-size: 14px;
            transition: border-color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }
        .search-trigger:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }
        .nav-row {
            display: flex;
            align-items: center;
            height: 44px;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-row::-webkit-scrollbar {
            display: none;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 6px;
            right: 6px;
            height: 2px;
            background-color: var(--gold);
            border-radius: 2px 2px 0 0;
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .nav-link:hover {
            color: var(--cyan);
        }
        .nav-link.active {
            color: var(--gold);
            font-weight: 700;
        }
        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }
        /* ===== Breadcrumb ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }
        .breadcrumb a:hover {
            color: var(--cyan);
        }
        .breadcrumb .separator {
            color: var(--text-muted);
            user-select: none;
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 500;
        }
        /* ===== Category Banner ===== */
        .category-banner {
            padding: 40px 0 28px;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-dark);
        }
        .category-banner h1 {
            font-family: var(--font-heading);
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 12px 0;
            color: var(--text-primary);
        }
        .category-banner .banner-sub {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 68ch;
            line-height: 1.8;
        }
        .banner-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .banner-meta .meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            background: var(--bg-secondary);
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
        }
        .banner-meta .meta-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan);
        }
        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 22px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            font-family: var(--font-body);
            transition: all 0.2s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-primary {
            background: var(--gold);
            color: #0E1116;
            border: none;
        }
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }
        .btn-primary:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
        }
        .btn-secondary:hover {
            background: rgba(242, 201, 76, 0.12);
            color: var(--gold-light);
        }
        .btn-secondary:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }
        .btn-ghost {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }
        .btn-ghost:hover {
            border-color: var(--cyan);
            color: var(--text-primary);
        }
        /* ===== Cards ===== */
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
        }
        .card-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background-color: var(--bg-secondary);
        }
        .card-body {
            padding: 20px;
        }
        .card-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0 0 8px 0;
            color: var(--text-primary);
            transition: color 0.2s ease;
        }
        .card:hover .card-title {
            color: var(--cyan);
        }
        .card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 14px 0;
        }
        .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .card-meta .tag {
            font-size: 12px;
            padding: 2px 10px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }
        .tag-gold {
            color: var(--gold);
            border-color: rgba(242, 201, 76, 0.35);
            background: rgba(242, 201, 76, 0.08);
        }
        .tag-cyan {
            color: var(--cyan);
            border-color: rgba(46, 196, 182, 0.35);
            background: rgba(46, 196, 182, 0.08);
        }
        .tag-red {
            color: var(--red);
            border-color: rgba(248, 90, 90, 0.35);
            background: rgba(248, 90, 90, 0.08);
        }
        /* ===== Section ===== */
        .section {
            padding: var(--section-pad-desktop) 0;
        }
        .section-sm {
            padding: 48px 0;
        }
        .section-alt {
            background-color: var(--bg-secondary);
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(23px, 2.6vw, 32px);
            font-weight: 800;
            line-height: 1.3;
            margin: 0 0 8px 0;
            color: var(--text-primary);
        }
        .section-sub {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 68ch;
            margin: 0 0 32px 0;
        }
        .section-header {
            margin-bottom: 32px;
        }
        /* ===== Focus Card ===== */
        .focus-card {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .focus-card-image {
            position: relative;
            min-height: 320px;
            background-color: var(--bg-secondary);
        }
        .focus-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .focus-card-image .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(14, 17, 22, 0) 0%, rgba(14, 17, 22, 0.6) 60%, rgba(14, 17, 22, 0.9) 100%);
        }
        .focus-card-content {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
        }
        .focus-card-title {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-primary);
            margin: 0;
        }
        .focus-card-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }
        .focus-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .focus-highlights .highlight-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-secondary);
            padding: 6px 14px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
        }
        .focus-highlights .highlight-item .icon {
            color: var(--cyan);
            font-weight: 700;
        }
        /* ===== Countdown Ring ===== */
        .countdown-ring-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .countdown-ring {
            position: relative;
            width: 72px;
            height: 72px;
        }
        .countdown-ring svg {
            transform: rotate(-90deg);
        }
        .countdown-ring .ring-bg {
            fill: none;
            stroke: var(--border);
            stroke-width: 6;
        }
        .countdown-ring .ring-fg {
            fill: none;
            stroke: var(--gold);
            stroke-width: 6;
            stroke-linecap: round;
            transition: stroke-dashoffset 0.6s ease;
        }
        .countdown-ring .ring-text {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.1;
        }
        .countdown-ring .ring-text .number {
            font-family: var(--font-numeric);
            font-size: 24px;
            font-weight: 800;
            color: var(--gold);
        }
        .countdown-ring .ring-text .unit {
            font-size: 10px;
            color: var(--text-muted);
            letter-spacing: 1px;
        }
        /* ===== List Card Row ===== */
        .list-card-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            transition: border-color 0.2s ease, transform 0.2s ease;
        }
        .list-card-row:hover {
            border-color: var(--cyan);
            transform: translateY(-2px);
        }
        .list-card-row .row-img {
            width: 120px;
            height: 68px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            background-color: var(--bg-secondary);
        }
        .list-card-row .row-content {
            flex: 1;
            min-width: 0;
        }
        .list-card-row .row-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px 0;
            line-height: 1.4;
        }
        .list-card-row:hover .row-title {
            color: var(--cyan);
        }
        .list-card-row .row-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        /* ===== Bracket / Route ===== */
        .route-visual {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .route-step {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            text-align: center;
            position: relative;
        }
        .route-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -16px;
            width: 16px;
            height: 2px;
            background: var(--border);
        }
        .route-step .step-num {
            font-family: var(--font-numeric);
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            display: block;
            margin-bottom: 8px;
        }
        .route-step .step-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 6px 0;
        }
        .route-step .step-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }
        /* ===== Subscribe CTA ===== */
        .subscribe-cta {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-text {
            flex: 1;
            min-width: 280px;
        }
        .subscribe-cta .cta-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px 0;
        }
        .subscribe-cta .cta-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }
        .subscribe-cta .cta-form {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-input {
            height: 44px;
            padding: 0 16px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 14px;
            min-width: 240px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .subscribe-cta .cta-input:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
        }
        /* ===== History Archive ===== */
        .archive-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            transition: border-color 0.2s ease;
        }
        .archive-card:hover {
            border-color: var(--gold);
        }
        .archive-card .archive-year {
            font-family: var(--font-numeric);
            font-size: 32px;
            font-weight: 800;
            color: var(--gold);
            flex-shrink: 0;
            min-width: 76px;
            text-align: center;
        }
        .archive-card .archive-info {
            flex: 1;
            min-width: 0;
        }
        .archive-card .archive-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px 0;
        }
        .archive-card .archive-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }
        /* ===== Footer ===== */
        .site-footer {
            background: #0B0D12;
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-mark {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gold), #E0A82E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: #0E1116;
        }
        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
            max-width: 32ch;
        }
        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            transition: color 0.2s ease;
        }
        .footer-link:hover {
            color: var(--cyan);
        }
        .footer-subscribe-text {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 12px 0;
            line-height: 1.6;
        }
        .footer-subscribe-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-input {
            height: 40px;
            padding: 0 14px;
            background: #0F1117;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 13px;
            flex: 1;
            min-width: 160px;
            transition: border-color 0.2s ease;
        }
        .footer-input:focus {
            outline: none;
            border-color: var(--cyan);
        }
        .footer-submit {
            height: 40px;
            padding: 0 18px;
            background: var(--gold);
            color: #0E1116;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            transition: background 0.2s ease;
        }
        .footer-submit:hover {
            background: var(--gold-light);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            flex-wrap: wrap;
        }
        .fb-copyright {
            font-size: 13px;
            color: var(--text-muted);
        }
        .fb-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .fb-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .fb-links a:hover {
            color: var(--cyan);
        }
        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .focus-card {
                grid-template-columns: 1fr;
            }
            .focus-card-image {
                min-height: 240px;
            }
            .focus-card-image .image-overlay {
                background: linear-gradient(180deg, rgba(14, 17, 22, 0) 0%, rgba(14, 17, 22, 0.6) 60%, rgba(14, 17, 22, 0.9) 100%);
            }
            .route-visual {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .route-step:not(:last-child)::after {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: var(--section-pad-mobile) 0;
            }
            .section-sm {
                padding: 36px 0;
            }
            .focus-card-content {
                padding: 24px 20px;
            }
            .subscribe-cta {
                padding: 28px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-cta .cta-form {
                width: 100%;
            }
            .subscribe-cta .cta-input {
                flex: 1;
                min-width: 0;
            }
            .nav-row {
                gap: 14px;
            }
            .brand-logo {
                font-size: 17px;
            }
            .brand-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 15px;
            }
            .search-trigger span {
                display: none;
            }
            .search-trigger {
                padding: 0 10px;
            }
        }
        @media (max-width: 520px) {
            .route-visual {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .focus-card-title {
                font-size: 20px;
            }
            .countdown-ring {
                width: 60px;
                height: 60px;
            }
            .countdown-ring .ring-text .number {
                font-size: 20px;
            }
            .archive-card .archive-year {
                font-size: 24px;
                min-width: 56px;
            }
            .list-card-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .list-card-row .row-img {
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9;
            }
        }

/* roulang page: category5 */
:root {
      --bg-primary: #0E1116;
      --bg-secondary: #151921;
      --bg-card: #181C25;
      --border: #2A2E3A;
      --border-dark: #1D212A;
      --text-primary: #E6E9EF;
      --text-secondary: #A7AEBB;
      --text-muted: #6F7683;
      --gold: #F2C94C;
      --gold-light: #FFD966;
      --cyan: #2EC4B6;
      --red: #F85A5A;
      --radius-card: 14px;
      --radius-btn: 10px;
      --radius-tag: 999px;
      --radius-bar: 8px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
      --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
      --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
      --font-numeric: 'Barlow Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
      --container-max: 1280px;
      --section-pad-desktop: 72px;
      --section-pad-mobile: 40px;
    }
    
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }
    
    body {
      font-family: var(--font-body);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.8;
      font-size: 16px;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    
    button,
    input,
    select,
    textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
      color: inherit;
    }
    
    button {
      cursor: pointer;
      border: none;
      background: none;
    }
    
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    /* ===== Header / Nav ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: var(--bg-primary);
      border-bottom: 1px solid var(--border-dark);
    }
    
    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 16px;
    }
    
    .brand-logo {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 20px;
      color: var(--text-primary);
      letter-spacing: 0.5px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .brand-logo .logo-mark {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--gold), #E0A82E);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      color: #0E1116;
      flex-shrink: 0;
    }
    
    .brand-logo .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    
    .brand-logo .logo-sub {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 2px;
    }
    
    .brand-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .search-trigger {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 16px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      color: var(--text-secondary);
      font-size: 14px;
      transition: border-color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }
    
    .search-trigger:hover {
      border-color: var(--cyan);
      color: var(--text-primary);
    }
    
    .nav-row {
      display: flex;
      align-items: center;
      height: 44px;
      gap: 20px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    
    .nav-row::-webkit-scrollbar {
      display: none;
    }
    
    .nav-link {
      display: inline-flex;
      align-items: center;
      height: 44px;
      padding: 0 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      white-space: nowrap;
      position: relative;
      transition: color 0.2s ease;
      flex-shrink: 0;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 6px;
      right: 6px;
      height: 2px;
      background-color: var(--gold);
      border-radius: 2px 2px 0 0;
      opacity: 0;
      transform: scaleX(0.6);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    
    .nav-link:hover {
      color: var(--cyan);
    }
    
    .nav-link.active {
      color: var(--gold);
      font-weight: 700;
    }
    
    .nav-link.active::after {
      opacity: 1;
      transform: scaleX(1);
    }
    
    /* ===== Breadcrumb ===== */
    .breadcrumb {
      padding: 16px 0;
      font-size: 14px;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-dark);
      background-color: var(--bg-primary);
    }
    
    .breadcrumb a {
      color: var(--text-secondary);
      transition: color 0.2s ease;
    }
    
    .breadcrumb a:hover {
      color: var(--cyan);
    }
    
    .breadcrumb .separator {
      margin: 0 8px;
      color: var(--text-muted);
    }
    
    .breadcrumb .current {
      color: var(--gold);
      font-weight: 600;
    }
    
    /* ===== Category Banner ===== */
    .category-banner {
      position: relative;
      background-color: var(--bg-secondary);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-card);
      padding: 28px 32px;
      margin: 32px 0;
      overflow: hidden;
    }
    
    .category-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(242, 201, 76, 0.08), rgba(46, 196, 182, 0.05));
      pointer-events: none;
    }
    
    .category-banner .banner-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .category-banner h1 {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.25;
      margin: 0;
    }
    
    .category-banner p {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0;
    }
    
    /* ===== Section Common ===== */
    .section {
      padding: var(--section-pad-desktop) 0;
    }
    
    .section-heading {
      font-family: var(--font-heading);
      font-size: clamp(23px, 2.6vw, 32px);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    
    .section-sub {
      color: var(--text-secondary);
      font-size: 15px;
      max-width: 720px;
      margin-bottom: 32px;
    }
    
    .section-divider {
      border-top: 1px solid var(--border-dark);
    }
    
    /* ===== Focus News Card ===== */
    .focus-news-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .focus-news-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    }
    
    .focus-news-image {
      position: relative;
      height: 320px;
      overflow: hidden;
    }
    
    .focus-news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .focus-news-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14, 17, 22, 0.9) 0%, rgba(14, 17, 22, 0.3) 50%, rgba(14, 17, 22, 0.1) 100%);
      pointer-events: none;
    }
    
    .focus-news-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--gold);
      color: #0E1116;
      font-weight: 700;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: var(--radius-tag);
      letter-spacing: 0.5px;
    }
    
    .focus-news-content {
      padding: 28px 32px;
    }
    
    .focus-news-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    
    .focus-news-excerpt {
      color: var(--text-secondary);
      font-size: 15px;
      margin-bottom: 20px;
    }
    
    .news-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--text-muted);
      font-size: 13px;
    }
    
    .news-meta .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    
    /* ===== News List ===== */
    .news-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    
    .news-list-item {
      display: flex;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    
    .news-list-item:hover {
      transform: translateY(-2px);
      border-color: var(--cyan);
    }
    
    .news-thumb {
      width: 260px;
      min-height: 160px;
      position: relative;
      flex-shrink: 0;
      overflow: hidden;
    }
    
    .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .news-body {
      padding: 20px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .news-body h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.45;
      margin-bottom: 8px;
      transition: color 0.2s ease;
    }
    
    .news-list-item:hover .news-body h3 {
      color: var(--cyan);
    }
    
    .news-body p {
      color: var(--text-secondary);
      font-size: 14px;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    /* ===== Tag Cloud ===== */
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }
    
    .tag-item {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-tag);
      font-size: 14px;
      color: var(--text-secondary);
      transition: all 0.2s ease;
      cursor: default;
    }
    
    .tag-item:hover {
      border-color: var(--cyan);
      color: var(--cyan);
      background: rgba(46, 196, 182, 0.06);
    }
    
    /* ===== Hot Recommend Cards ===== */
    .hot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    
    .hot-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    
    .hot-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
    }
    
    .hot-card-image {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--bg-secondary);
    }
    
    .hot-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hot-card-content {
      padding: 20px;
    }
    
    .hot-card-content h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
      margin-bottom: 8px;
    }
    
    .hot-card-content p {
      color: var(--text-secondary);
      font-size: 14px;
      margin-bottom: 12px;
    }
    
    /* ===== Source & Update Info ===== */
    .source-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }
    
    .source-item {
      background: var(--bg-secondary);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-card);
      padding: 20px;
    }
    
    .source-item .source-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(46, 196, 182, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    
    .source-item h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
    }
    
    .source-item p {
      font-size: 14px;
      color: var(--text-secondary);
      margin: 0;
    }
    
    /* ===== Subscribe CTA ===== */
    .subscribe-section {
      background: var(--bg-secondary);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-card);
      padding: 40px;
      text-align: center;
      margin: 60px 0;
    }
    
    .subscribe-section h2 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 12px;
    }
    
    .subscribe-section p {
      color: var(--text-secondary);
      max-width: 520px;
      margin: 0 auto 24px;
      font-size: 15px;
    }
    
    .subscribe-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
      gap: 12px;
    }
    
    .subscribe-form input {
      flex: 1;
      height: 44px;
      padding: 0 16px;
      background-color: #0F1117;
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      color: var(--text-primary);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    .subscribe-form input:focus {
      outline: none;
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
    }
    
    .primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 24px;
      background-color: var(--gold);
      color: #0E1116;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-btn);
      transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
      white-space: nowrap;
    }
    
    .primary-btn:hover {
      background-color: var(--gold-light);
    }
    
    .primary-btn:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }
    
    .primary-btn:active {
      transform: translateY(1px);
    }
    
    /* ===== Footer ===== */
    .site-footer {
      background-color: #0B0D12;
      border-top: 1px solid var(--border-dark);
      padding: 40px 0 20px;
      margin-top: 60px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 32px;
      margin-bottom: 32px;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 18px;
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    
    .footer-logo .logo-mark {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--gold), #E0A82E);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      color: #0E1116;
    }
    
    .footer-brand-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
      max-width: 300px;
    }
    
    .footer-col-title {
      color: var(--text-primary);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    
    .footer-link {
      display: block;
      color: var(--text-secondary);
      font-size: 14px;
      padding: 4px 0;
      transition: color 0.2s ease;
    }
    
    .footer-link:hover {
      color: var(--cyan);
    }
    
    .footer-subscribe-text {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 12px;
    }
    
    .footer-subscribe-form {
      display: flex;
      gap: 8px;
    }
    
    .footer-input {
      flex: 1;
      height: 40px;
      padding: 0 12px;
      background-color: #0F1117;
      border: 1px solid var(--border);
      border-radius: var(--radius-btn);
      color: var(--text-primary);
      font-size: 14px;
    }
    
    .footer-submit {
      height: 40px;
      padding: 0 16px;
      background-color: var(--gold);
      color: #0E1116;
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-btn);
      transition: background-color 0.2s ease;
    }
    
    .footer-submit:hover {
      background-color: var(--gold-light);
    }
    
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-dark);
      padding-top: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    
    .fb-copyright {
      color: var(--text-muted);
      font-size: 13px;
    }
    
    .fb-links {
      display: flex;
      gap: 20px;
    }
    
    .fb-links a {
      color: var(--text-muted);
      font-size: 13px;
      transition: color 0.2s ease;
    }
    
    .fb-links a:hover {
      color: var(--text-primary);
    }
    
    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .section {
        padding: 56px 0;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .news-list-item {
        flex-direction: column;
      }
      .news-thumb {
        width: 100%;
        min-height: 200px;
      }
    }
    
    @media (max-width: 768px) {
      .nav-row {
        gap: 12px;
      }
      .category-banner {
        padding: 20px;
      }
      .category-banner .banner-content {
        flex-direction: column;
        align-items: flex-start;
      }
      .focus-news-image {
        height: 220px;
      }
      .focus-news-content {
        padding: 20px;
      }
      .subscribe-form {
        flex-direction: column;
      }
      .subscribe-form .primary-btn {
        width: 100%;
      }
    }
    
    @media (max-width: 520px) {
      .section {
        padding: 40px 0;
      }
      .hot-grid {
        grid-template-columns: 1fr;
      }
      .source-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .news-body {
        padding: 16px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
