/* roulang page: index */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --font-main: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
            --font-mono: "SF Mono","Roboto Mono","Consolas",monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22,24,29,0.96), rgba(22,24,29,0.96)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        input, textarea, select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }
        input::placeholder, textarea::placeholder {
            color: var(--text-cool);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }
        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-cool);
        }

        /* Navbar */
        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
        }
        .brand-icon::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--bg-primary);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .brand-icon::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 2px;
            background: var(--bg-primary);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .navbar-search {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            max-width: 340px;
            margin-left: auto;
        }
        .navbar-search input {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 13px;
            color: var(--text-primary);
            min-width: 0;
        }
        .navbar-search input:focus {
            border-color: var(--accent);
        }
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: var(--bg-primary);
            border: none;
            padding: 9px 18px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245,166,35,0.3);
        }
        .btn-primary-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn-secondary-custom {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            font-weight: 500;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            color: var(--text-primary);
            border-color: var(--text-cool);
        }
        .btn-danger-custom {
            background-color: var(--danger);
            color: #fff;
            border: none;
            padding: 9px 18px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-danger-custom:hover {
            background-color: var(--danger-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229,72,77,0.3);
        }
        .btn-danger-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }

        .navbar-tabs {
            display: flex;
            gap: 4px;
            padding: 8px 0;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }
        .navbar-tabs::-webkit-scrollbar {
            height: 3px;
        }
        .navbar-tabs::-webkit-scrollbar-thumb {
            background: var(--border-light);
        }
        .nav-tab {
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            white-space: nowrap;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background: var(--bg-panel);
        }
        .nav-tab.active {
            color: var(--bg-primary);
            background: var(--accent);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(245,166,35,0.3);
        }
        .nav-tab.active:hover {
            background: var(--accent-hover);
            color: var(--bg-primary);
        }

        /* Hero */
        .hero-section {
            position: relative;
            padding: 0;
            min-height: 620px;
            display: flex;
            align-items: flex-end;
            background-image: url('/assets/images/5d9528d14ce0fe40.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-bottom: 1px solid var(--border-color);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(22,24,29,0.55) 0%, rgba(22,24,29,0.78) 45%, rgba(22,24,29,0.97) 100%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding-top: 90px;
            padding-bottom: 48px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245,166,35,0.14);
            border: 1px solid rgba(245,166,35,0.4);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
        }
        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.45; transform: scale(0.75); }
        }
        .hero-title {
            font-size: 44px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 18px;
            max-width: 700px;
        }
        .hero-title .highlight {
            color: var(--accent);
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 620px;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .hero-metric-card {
            background: rgba(30,33,40,0.88);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 16px 18px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .hero-metric-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .hero-metric-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            letter-spacing: -0.01em;
            line-height: 1.2;
        }
        .hero-metric-value .unit {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            margin-left: 2px;
        }
        .hero-metric-change {
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .hero-metric-change.up {
            color: var(--success);
        }
        .hero-metric-change.down {
            color: var(--danger);
        }

        /* Live Ticker */
        .live-ticker {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 18px 0;
        }
        .live-ticker-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(229,72,77,0.15);
            color: var(--danger);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            border: 1px solid rgba(229,72,77,0.35);
        }
        .live-indicator .pulse {
            width: 6px;
            height: 6px;
            background: var(--danger);
            border-radius: 50%;
            animation: pulse-dot 1s ease-in-out infinite;
        }
        .live-ticker-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .ticker-track {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }
        .ticker-track::-webkit-scrollbar {
            height: 4px;
        }
        .ticker-track::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 2px;
        }
        .ticker-card {
            flex-shrink: 0;
            background: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            min-width: 260px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
        }
        .ticker-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .ticker-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 50px;
        }
        .ticker-team-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
            max-width: 64px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ticker-team-tag {
            font-size: 10px;
            color: var(--text-cool);
            font-family: var(--font-mono);
        }
        .ticker-score {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            line-height: 1;
        }
        .ticker-score .separator {
            color: var(--text-cool);
            font-size: 16px;
            margin: 0 4px;
        }
        .ticker-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-left: auto;
            text-align: right;
        }
        .ticker-event {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .ticker-status {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }
        .ticker-status.live {
            background: rgba(229,72,77,0.15);
            color: var(--danger);
            border: 1px solid rgba(229,72,77,0.3);
        }
        .ticker-status.upcoming {
            background: rgba(245,166,35,0.15);
            color: var(--accent);
            border: 1px solid rgba(245,166,35,0.3);
        }
        .ticker-status.finished {
            background: rgba(107,114,128,0.15);
            color: var(--text-cool);
            border: 1px solid rgba(107,114,128,0.3);
        }

        /* Cards */
        .card-custom {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: var(--transition);
            height: 100%;
        }
        .card-custom:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
            background: rgba(245,166,35,0.12);
            border: 1px solid rgba(245,166,35,0.25);
            color: var(--accent);
        }
        .card-icon.green {
            background: rgba(48,164,108,0.12);
            border-color: rgba(48,164,108,0.25);
            color: var(--success);
        }
        .card-icon.red {
            background: rgba(229,72,77,0.12);
            border-color: rgba(229,72,77,0.25);
            color: var(--danger);
        }
        .card-icon.blue-gray {
            background: rgba(107,114,128,0.12);
            border-color: rgba(107,114,128,0.25);
            color: var(--text-cool);
        }
        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .card-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .card-link:hover {
            color: var(--accent-hover);
            gap: 10px;
        }

        /* Comparison Section */
        .comparison-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            height: 100%;
        }
        .comparison-team-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-team-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .comparison-team-region {
            font-size: 12px;
            color: var(--text-muted);
        }
        .comparison-stat-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }
        .comparison-stat-label {
            font-size: 13px;
            color: var(--text-muted);
            min-width: 90px;
            flex-shrink: 0;
        }
        .comparison-stat-bar-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comparison-stat-bar {
            height: 6px;
            border-radius: 3px;
            background: var(--bg-panel);
            overflow: hidden;
            flex: 1;
        }
        .comparison-stat-bar-fill {
            height: 100%;
            border-radius: 3px;
            background: var(--accent);
            transition: width 0.6s ease;
        }
        .comparison-stat-bar-fill.danger {
            background: var(--danger);
        }
        .comparison-stat-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            min-width: 40px;
            text-align: right;
            font-family: var(--font-mono);
        }

        /* Match Cards */
        .match-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: var(--transition);
            height: 100%;
        }
        .match-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .match-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            gap: 8px;
            flex-wrap: wrap;
        }
        .match-card-event {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
        }
        .match-card-time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .match-card-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }
        .match-card-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .match-card-team-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .match-card-score {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
        }
        .match-card-status {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }

        /* Timeline */
        .milestone-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 28px;
        }
        .milestone-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: var(--border-color);
            border-radius: 1px;
        }
        .milestone-item {
            position: relative;
            padding-bottom: 24px;
            padding-left: 14px;
            border-left: 2px solid var(--border-color);
            margin-left: -28px;
            padding-left: 28px;
        }
        .milestone-item:last-child {
            padding-bottom: 0;
            border-left-color: transparent;
        }
        .milestone-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
            border: 2px solid var(--bg-primary);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.25);
        }
        .milestone-date {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .milestone-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .milestone-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* News Cards */
        .news-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .news-card-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            background: var(--bg-panel);
        }
        .news-card-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-card-date {
            font-size: 12px;
            color: var(--text-cool);
            margin-bottom: 8px;
        }
        .news-card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card-summary {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 14px;
            flex: 1;
        }
        .news-card-btn {
            align-self: flex-start;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            border: none;
            background: none;
            padding: 0;
        }
        .news-card-btn:hover {
            color: var(--accent-hover);
            gap: 10px;
        }

        /* Guarantee */
        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
        }
        .guarantee-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-md);
            background: rgba(48,164,108,0.12);
            border: 1px solid rgba(48,164,108,0.25);
            color: var(--success);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .guarantee-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .guarantee-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Quick FAQ */
        .quick-faq-item {
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .quick-faq-item:last-child {
            border-bottom: none;
        }
        .quick-faq-q {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .quick-faq-q .q-mark {
            color: var(--accent);
            flex-shrink: 0;
            font-weight: 700;
        }
        .quick-faq-a {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            padding-left: 24px;
        }

        /* FAQ Accordion */
        .accordion-custom .accordion-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-custom .accordion-item:last-child {
            margin-bottom: 0;
        }
        .accordion-custom .accordion-button {
            background: var(--bg-surface);
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 500;
            padding: 16px 18px;
            box-shadow: none;
            border-radius: 0 !important;
            border: none;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--bg-panel);
            color: var(--accent);
            border-left: 3px solid var(--success);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
            outline-offset: -2px;
        }
        .accordion-custom .accordion-button::after {
            filter: invert(0.7);
        }
        .accordion-custom .accordion-body {
            background: var(--bg-surface);
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            padding: 14px 18px;
            border-top: 1px solid var(--border-color);
        }

        /* Subscription */
        .subscription-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            height: 100%;
            transition: var(--transition);
        }
        .subscription-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 24px rgba(245,166,35,0.1);
            position: relative;
        }
        .subscription-card.featured::before {
            content: '推荐';
            position: absolute;
            top: -11px;
            right: 18px;
            background: var(--accent);
            color: var(--bg-primary);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: var(--radius-full);
            letter-spacing: 0.04em;
        }
        .subscription-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .subscription-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .subscription-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-mono);
            margin-bottom: 14px;
        }
        .subscription-price .period {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
        }
        .subscription-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .subscription-features {
            list-style: none;
            padding: 0;
            margin: 0 0 18px 0;
        }
        .subscription-features li {
            font-size: 13px;
            color: var(--text-secondary);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .subscription-features li i {
            color: var(--success);
            font-size: 13px;
        }

        /* Form */
        .form-section {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px;
        }
        .form-label-custom {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 6px;
            display: block;
        }
        .form-control-custom {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            color: var(--text-primary);
            font-size: 14px;
            width: 100%;
            transition: var(--transition);
        }
        .form-control-custom:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }
        .form-select-custom {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            color: var(--text-primary);
            font-size: 14px;
            width: 100%;
            transition: var(--transition);
            appearance: auto;
        }

        /* Brand Intro */
        .brand-intro {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
        }
        .brand-intro-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .brand-intro-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        /* Footer */
        .footer-custom {
            background: #101216;
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 18px;
            max-width: 400px;
        }
        .footer-heading {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copyright {
            font-size: 12px;
            color: var(--text-cool);
        }
        .footer-sitemap-links {
            font-size: 12px;
            color: var(--text-cool);
            display: flex;
            gap: 14px;
            align-items: center;
        }
        .footer-sitemap-links a {
            color: var(--text-muted);
            font-size: 12px;
        }
        .footer-sitemap-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 34px;
            }
            .hero-metrics {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .hero-metric-value {
                font-size: 22px;
            }
            .section {
                padding: var(--section-padding-mobile);
            }
            .section-title {
                font-size: 24px;
            }
        }
        @media (max-width: 767.98px) {
            .navbar-top-row {
                flex-wrap: wrap;
                gap: 10px;
            }
            .navbar-search {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
                margin-left: 0;
            }
            .navbar-cta {
                margin-left: auto;
            }
            .hero-section {
                min-height: 520px;
            }
            .hero-content {
                padding-top: 60px;
                padding-bottom: 32px;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .hero-metric-card {
                padding: 12px;
            }
            .hero-metric-value {
                font-size: 19px;
            }
            .comparison-card {
                padding: 20px;
            }
            .match-card-score {
                font-size: 22px;
            }
            .form-section {
                padding: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .hero-metric-card {
                padding: 10px;
            }
            .hero-metric-label {
                font-size: 10px;
            }
            .hero-metric-value {
                font-size: 17px;
            }
            .section-title {
                font-size: 21px;
            }
            .section-desc {
                font-size: 14px;
            }
            .navbar-brand-custom {
                font-size: 17px;
            }
            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }
            .ticker-card {
                min-width: 220px;
                padding: 10px;
            }
            .ticker-score {
                font-size: 20px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --font-main: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
            --font-mono: "SF Mono","Roboto Mono","Consolas",monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22,24,29,0.97), rgba(22,24,29,0.97)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46,52,64,0.07) 80px, rgba(46,52,64,0.07) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46,52,64,0.07) 80px, rgba(46,52,64,0.07) 81px);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        input, textarea, select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }
        input::placeholder, textarea::placeholder {
            color: var(--text-cool);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--section-padding);
            position: relative;
        }
        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        /* Navbar */
        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
            font-weight: 700;
        }
        .brand-icon::before {
            content: "⚔";
            font-size: 16px;
            line-height: 1;
        }
        .navbar-search {
            flex: 1;
            max-width: 360px;
            display: flex;
            align-items: center;
            gap: 0;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
        }
        .navbar-search:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }
        .navbar-search input {
            background: transparent;
            border: none;
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-primary);
        }
        .navbar-search input:focus {
            box-shadow: none;
            border: none;
        }
        .navbar-search button {
            background: transparent;
            border: none;
            color: var(--text-muted);
            padding: 9px 14px;
            font-size: 14px;
        }
        .navbar-search button:hover {
            color: var(--accent);
        }
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent);
            color: var(--bg-primary);
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            border: none;
            white-space: nowrap;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            box-shadow: 0 4px 12px rgba(245,166,35,0.35);
        }
        .btn-primary-custom:active {
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.25);
        }
        .btn-secondary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: transparent;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 14px;
            padding: 10px 18px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            white-space: nowrap;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            color: var(--text-primary);
            border-color: var(--text-cool);
        }
        .btn-secondary-custom:active {
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn-danger-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--danger);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            border: none;
            white-space: nowrap;
            transition: var(--transition);
        }
        .btn-danger-custom:hover {
            background-color: var(--danger-hover);
            color: #fff;
            box-shadow: 0 4px 12px rgba(229,72,77,0.35);
        }
        .navbar-tabs {
            display: flex;
            gap: 6px;
            padding: 0 0 12px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex-wrap: nowrap;
        }
        .navbar-tabs::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-full);
            white-space: nowrap;
            transition: var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background-color: var(--bg-panel);
        }
        .nav-tab.active {
            background-color: var(--accent);
            color: var(--bg-primary);
            font-weight: 600;
            border-color: var(--accent);
        }
        .nav-tab.active:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
        }
        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 16px 0;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .separator {
            color: var(--text-cool);
            font-size: 12px;
        }
        .breadcrumb-custom .current {
            color: var(--text-secondary);
            font-weight: 500;
        }
        /* Category Hero */
        .category-hero {
            padding: 48px 0 36px;
            position: relative;
        }
        .category-hero h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .category-hero .hero-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 24px;
        }
        .hero-stats-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .hero-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 16px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .hero-stat-item .stat-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .hero-stat-item .stat-icon.live {
            background-color: rgba(229,72,77,0.15);
            color: var(--danger);
        }
        .hero-stat-item .stat-icon.done {
            background-color: rgba(48,164,108,0.15);
            color: var(--success);
        }
        .hero-stat-item .stat-icon.coverage {
            background-color: rgba(245,166,35,0.15);
            color: var(--accent);
        }
        .hero-stat-item .stat-icon.delay {
            background-color: rgba(107,114,128,0.15);
            color: var(--text-muted);
        }
        /* Filter Bar */
        .filter-bar {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: end;
            margin-bottom: 32px;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 160px;
        }
        .filter-group label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.04em;
        }
        .filter-group select, .filter-group input {
            padding: 8px 12px;
            font-size: 14px;
        }
        .filter-actions {
            display: flex;
            gap: 10px;
            margin-left: auto;
            align-items: end;
        }
        /* Match List */
        .match-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .match-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .match-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .match-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .match-status.live {
            background-color: rgba(229,72,77,0.15);
            color: var(--danger);
            border: 1px solid rgba(229,72,77,0.4);
        }
        .match-status.upcoming {
            background-color: rgba(245,166,35,0.15);
            color: var(--accent);
            border: 1px solid rgba(245,166,35,0.4);
        }
        .match-status.finished {
            background-color: rgba(107,114,128,0.15);
            color: var(--text-muted);
            border: 1px solid rgba(107,114,128,0.4);
        }
        .match-event {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 80px;
            flex-shrink: 0;
        }
        .match-teams {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 200px;
        }
        .match-team-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
        }
        .match-team-row .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-team-row .team-score {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            min-width: 36px;
            text-align: center;
        }
        .match-team-row .team-score.winner {
            color: var(--success);
        }
        .match-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .match-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .match-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background-color: var(--bg-panel);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 6px 14px;
            white-space: nowrap;
            transition: var(--transition);
        }
        .match-view-btn:hover {
            color: var(--accent);
            border-color: var(--accent);
            background-color: var(--bg-surface);
        }
        /* Stats Summary */
        .stats-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .stats-summary-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
        }
        .stats-summary-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
        }
        .stats-summary-card .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .stats-summary-card .stat-value.accent {
            color: var(--accent);
        }
        .stats-summary-card .stat-value.success {
            color: var(--success);
        }
        .stats-summary-card .stat-value.danger {
            color: var(--danger);
        }
        .stats-summary-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        .stats-summary-card .stat-change {
            font-size: 12px;
            font-weight: 500;
            margin-top: 4px;
        }
        .stats-summary-card .stat-change.up {
            color: var(--success);
        }
        .stats-summary-card .stat-change.down {
            color: var(--danger);
        }
        /* Team Entry */
        .team-entry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
        }
        .team-entry-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
        }
        .team-entry-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .team-entry-logo {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background-color: var(--bg-panel);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--text-muted);
            flex-shrink: 0;
            overflow: hidden;
        }
        .team-entry-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-entry-info {
            flex: 1;
            min-width: 0;
        }
        .team-entry-info .team-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }
        .team-entry-info .team-record {
            font-size: 13px;
            color: var(--text-muted);
        }
        .team-entry-stats {
            text-align: right;
            flex-shrink: 0;
        }
        .team-entry-stats .winrate {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-mono);
        }
        .team-entry-stats .stats-label {
            font-size: 12px;
            color: var(--text-muted);
        }
        /* Subscribe CTA */
        .subscribe-cta-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .subscribe-cta-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
            pointer-events: none;
        }
        .subscribe-cta-info {
            flex: 1;
            min-width: 260px;
        }
        .subscribe-cta-info h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .subscribe-cta-info p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.65;
        }
        .subscribe-cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        /* Additional Info */
        .match-insight-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            height: 100%;
            transition: var(--transition);
        }
        .match-insight-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
        }
        .match-insight-card .insight-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background-color: rgba(245,166,35,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            margin-bottom: 14px;
        }
        .match-insight-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.35;
        }
        .match-insight-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.65;
        }
        /* Footer */
        .footer-custom {
            background-color: #101216;
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 340px;
        }
        .footer-heading {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 36px;
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copyright {
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links a {
            color: var(--text-muted);
        }
        .footer-sitemap-links a:hover {
            color: var(--accent);
        }
        .footer-sitemap-links span {
            color: var(--text-cool);
        }
        /* Responsive */
        @media (max-width: 991px) {
            .section {
                padding: var(--section-padding-mobile);
            }
            .category-hero h1 {
                font-size: 30px;
            }
            .match-card {
                flex-wrap: wrap;
                gap: 12px;
            }
            .match-teams {
                min-width: 160px;
            }
        }
        @media (max-width: 767px) {
            .navbar-top-row {
                gap: 10px;
                padding: 10px 0;
            }
            .navbar-brand-custom {
                font-size: 17px;
            }
            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .brand-icon::before {
                font-size: 13px;
            }
            .navbar-search {
                max-width: 100%;
                order: 3;
                flex-basis: 100%;
            }
            .navbar-cta {
                margin-left: auto;
            }
            .btn-primary-custom, .btn-secondary-custom, .btn-danger-custom {
                padding: 8px 14px;
                font-size: 13px;
            }
            .nav-tab {
                padding: 7px 14px;
                font-size: 13px;
            }
            .category-hero {
                padding: 32px 0 24px;
            }
            .category-hero h1 {
                font-size: 26px;
            }
            .hero-stats-row {
                gap: 10px;
            }
            .hero-stat-item {
                padding: 8px 12px;
                font-size: 12px;
            }
            .filter-bar {
                padding: 14px;
                gap: 10px;
            }
            .filter-group {
                min-width: 130px;
            }
            .filter-actions {
                margin-left: 0;
                width: 100%;
            }
            .match-card {
                padding: 14px;
                gap: 10px;
            }
            .match-team-row {
                font-size: 14px;
            }
            .match-team-row .team-score {
                font-size: 16px;
            }
            .match-meta {
                width: 100%;
                justify-content: flex-start;
            }
            .subscribe-cta-card {
                padding: 24px;
                flex-direction: column;
                text-align: center;
            }
            .subscribe-cta-actions {
                width: 100%;
                justify-content: center;
            }
            .team-entry-stats {
                text-align: left;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }
        @media (max-width: 575px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .navbar-tabs {
                gap: 4px;
            }
            .nav-tab {
                padding: 6px 12px;
                font-size: 12px;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .hero-stats-row {
                flex-direction: column;
            }
            .hero-stat-item {
                width: 100%;
            }
            .filter-group {
                width: 100%;
                min-width: 100%;
            }
            .stats-summary-card .stat-value {
                font-size: 26px;
            }
            .match-event {
                width: 100%;
                min-width: auto;
            }
            .match-teams {
                width: 100%;
                min-width: 100%;
            }
            .match-view-btn {
                width: 100%;
                justify-content: center;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", sans-serif;
            --font-mono: "SF Mono", "Roboto Mono", "Consolas", monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22, 24, 29, 0.96), rgba(22, 24, 29, 0.96)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46, 52, 64, 0.08) 80px, rgba(46, 52, 64, 0.08) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46, 52, 64, 0.08) 80px, rgba(46, 52, 64, 0.08) 81px);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }
        input::placeholder,
        textarea::placeholder {
            color: var(--text-cool);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--section-padding);
            position: relative;
        }
        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245, 166, 35, 0.1);
            border: 1px solid rgba(245, 166, 35, 0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        /* Navbar */
        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
        }
        .brand-icon::after {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            border: 2px solid var(--bg-primary);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .navbar-search {
            display: flex;
            gap: 8px;
            flex: 1;
            max-width: 360px;
            margin-left: auto;
        }
        .navbar-search input {
            flex: 1;
            min-width: 0;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 14px;
        }
        .navbar-search .btn-secondary-custom {
            flex-shrink: 0;
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 14px;
            white-space: nowrap;
        }
        .navbar-search .btn-secondary-custom:hover {
            background: var(--bg-panel);
            color: var(--accent);
            border-color: var(--accent);
        }
        .navbar-cta .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 9px 18px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }
        .navbar-cta .btn-primary-custom:hover {
            background: var(--accent-hover);
            color: var(--bg-primary);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        .navbar-tabs {
            display: flex;
            gap: 4px;
            padding-bottom: 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
        }
        .navbar-tabs::-webkit-scrollbar {
            height: 4px;
        }
        .navbar-tabs::-webkit-scrollbar-track {
            background: transparent;
        }
        .navbar-tabs::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: var(--radius-full);
        }
        .nav-tab {
            flex-shrink: 0;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-full);
            transition: var(--transition);
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background-color: var(--bg-panel);
        }
        .nav-tab.active {
            color: var(--bg-primary);
            background-color: var(--accent);
            font-weight: 600;
            border-color: var(--accent);
        }
        /* Page Hero Mini */
        .page-hero-mini {
            padding: 48px 0 36px;
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        .page-hero-mini::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -40px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-hero-mini .h1-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            position: relative;
            z-index: 1;
        }
        .page-hero-mini .h1-sub {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 680px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-cool);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .sep {
            color: var(--border-light);
        }
        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 500;
        }
        /* Stats Summary Row */
        .stats-summary-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 28px;
            position: relative;
            z-index: 1;
        }
        .stat-summary-card {
            background: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .stat-summary-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            background: rgba(245, 166, 35, 0.1);
            border: 1px solid rgba(245, 166, 35, 0.2);
            color: var(--accent);
        }
        .stat-summary-card .stat-label {
            font-size: 12px;
            color: var(--text-cool);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 2px;
        }
        .stat-summary-card .stat-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            line-height: 1.2;
        }
        /* Filter Bar */
        .filter-bar {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: flex-end;
            box-shadow: var(--shadow-sm);
            margin-top: 40px;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 150px;
            flex: 1;
        }
        .filter-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.03em;
        }
        .filter-group select {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-primary);
            cursor: pointer;
        }
        .filter-group select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
        }
        .filter-bar .btn-filter-apply {
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 24px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .filter-bar .btn-filter-apply:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        /* Top Players Highlight */
        .top-players-section {
            margin-top: 48px;
        }
        .top-player-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        .top-player-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }
        .top-player-img {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--bg-panel);
        }
        .top-player-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .top-player-card:hover .top-player-img img {
            transform: scale(1.05);
        }
        .top-player-img::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, var(--bg-surface) 0%, transparent 100%);
            pointer-events: none;
        }
        .top-player-rank-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--accent);
            color: var(--bg-primary);
            font-weight: 700;
            font-size: 14px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            z-index: 2;
        }
        .top-player-rating-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            color: var(--accent);
            font-weight: 700;
            font-size: 16px;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            z-index: 2;
            font-family: var(--font-mono);
            border: 1px solid rgba(245, 166, 35, 0.4);
        }
        .top-player-body {
            padding: 20px 22px 22px;
        }
        .top-player-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .top-player-team {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .top-player-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border-color);
        }
        .top-player-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .top-player-stat-item .tp-label {
            font-size: 11px;
            color: var(--text-cool);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .top-player-stat-item .tp-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
        }
        /* Ranking Table Section */
        .ranking-table-wrapper {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .ranking-table-wrapper .table-head-row {
            display: grid;
            grid-template-columns: 60px 1fr 120px 100px 100px 100px 90px;
            padding: 16px 20px;
            background: var(--bg-panel);
            border-bottom: 1px solid var(--border-color);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            align-items: center;
        }
        .ranking-row {
            display: grid;
            grid-template-columns: 60px 1fr 120px 100px 100px 100px 90px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            align-items: center;
            transition: var(--transition);
            font-size: 14px;
        }
        .ranking-row:last-child {
            border-bottom: none;
        }
        .ranking-row:hover {
            background: var(--bg-panel);
        }
        .ranking-row .rank-num {
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text-secondary);
        }
        .ranking-row .rank-num.top-1 {
            color: var(--accent);
        }
        .ranking-row .rank-num.top-2 {
            color: #C0C0C0;
        }
        .ranking-row .rank-num.top-3 {
            color: #CD7F32;
        }
        .player-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .player-avatar-sm {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-panel);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--accent);
            flex-shrink: 0;
            font-family: var(--font-mono);
        }
        .player-cell .player-name-sm {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
        }
        .player-cell .player-team-sm {
            font-size: 12px;
            color: var(--text-cool);
        }
        .ranking-row .stat-value-td {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--text-secondary);
        }
        .ranking-row .stat-value-td.highlight {
            color: var(--accent);
        }
        .ranking-row .stat-value-td.positive {
            color: var(--success);
        }
        .ranking-row .stat-value-td.danger {
            color: var(--danger);
        }
        .trend-up {
            color: var(--success);
            font-size: 13px;
        }
        .trend-down {
            color: var(--danger);
            font-size: 13px;
        }
        .trend-flat {
            color: var(--text-cool);
            font-size: 13px;
        }
        /* Comparison Tool Bar */
        .comparison-tool-bar {
            background: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .comparison-tool-bar .comp-label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
            flex-shrink: 0;
        }
        .comparison-tool-bar .comp-select {
            min-width: 180px;
            flex: 1;
        }
        .comparison-tool-bar .comp-select select {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-primary);
        }
        .comparison-tool-bar .btn-compare {
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 22px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .comparison-tool-bar .btn-compare:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }
        /* Data Update Status */
        .data-update-status {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(48, 164, 108, 0.08);
            border: 1px solid rgba(48, 164, 108, 0.2);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .data-update-status .dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }
        .data-update-status strong {
            color: var(--success);
            font-weight: 600;
        }
        /* Subscribe CTA */
        .subscribe-cta-section {
            background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-surface) 60%, var(--bg-primary) 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 40px 40px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta-section::before {
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .subscribe-cta-section .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .subscribe-cta-section .cta-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 20px;
            max-width: 560px;
            position: relative;
            z-index: 1;
        }
        .subscribe-form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .subscribe-form-row input {
            flex: 1;
            min-width: 220px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 12px 16px;
        }
        .subscribe-form-row .btn-cta-red {
            background: var(--danger);
            color: var(--text-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 12px 28px;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .subscribe-form-row .btn-cta-red:hover {
            background: var(--danger-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        /* Footer */
        .footer-custom {
            background-color: #101216;
            border-top: 1px solid var(--border-color);
            padding: 56px 0 28px;
            margin-top: 0;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .footer-brand .brand-icon {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }
        .footer-heading {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            margin-top: 36px;
            border-top: 1px solid var(--border-color);
        }
        .footer-copyright {
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links a {
            color: var(--text-muted);
        }
        .footer-sitemap-links a:hover {
            color: var(--accent);
        }
        .footer-sitemap-links span {
            color: var(--border-light);
        }
        /* Responsive */
        @media (max-width: 991px) {
            .stats-summary-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .ranking-table-wrapper .table-head-row,
            .ranking-row {
                grid-template-columns: 50px 1fr 90px 80px 80px 80px;
            }
            .ranking-table-wrapper .table-head-row .col-adr,
            .ranking-row .col-adr {
                display: none;
            }
        }
        @media (max-width: 767px) {
            .section {
                padding: var(--section-padding-mobile);
            }
            .page-hero-mini {
                padding: 36px 0 28px;
            }
            .page-hero-mini .h1-title {
                font-size: 28px;
            }
            .stats-summary-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-summary-card {
                padding: 14px 16px;
                gap: 10px;
            }
            .stat-summary-card .stat-value {
                font-size: 18px;
            }
            .filter-bar {
                padding: 16px;
            }
            .filter-group {
                min-width: 100%;
            }
            .ranking-table-wrapper {
                border-radius: var(--radius-lg);
            }
            .ranking-table-wrapper .table-head-row {
                display: none;
            }
            .ranking-row {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                padding: 16px;
                border-radius: 0;
            }
            .ranking-row .rank-num {
                font-size: 18px;
                width: 40px;
                flex-shrink: 0;
            }
            .player-cell {
                flex: 1;
                min-width: 140px;
            }
            .ranking-row .stat-value-td {
                font-size: 13px;
            }
            .ranking-row .stat-value-td.col-rating,
            .ranking-row .stat-value-td.col-kd,
            .ranking-row .stat-value-td.col-adr,
            .ranking-row .stat-value-td.col-impact,
            .ranking-row .stat-value-td.col-trend {
                flex: 1;
                min-width: 60px;
                text-align: center;
            }
            .comparison-tool-bar {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .comparison-tool-bar .comp-select {
                min-width: 100%;
            }
            .subscribe-cta-section {
                padding: 28px 20px;
            }
            .subscribe-form-row {
                flex-direction: column;
            }
            .subscribe-form-row .btn-cta-red {
                width: 100%;
            }
            .navbar-top-row {
                gap: 10px;
                padding: 10px 0;
            }
            .navbar-brand-custom {
                font-size: 17px;
            }
            .navbar-search {
                max-width: 100%;
                order: 3;
                flex-basis: 100%;
            }
            .navbar-cta {
                margin-left: auto;
            }
            .navbar-cta .btn-primary-custom {
                padding: 7px 14px;
                font-size: 13px;
            }
            .nav-tab {
                padding: 6px 14px;
                font-size: 13px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 575px) {
            .page-hero-mini .h1-title {
                font-size: 24px;
            }
            .stats-summary-row {
                grid-template-columns: 1fr 1fr;
            }
            .top-player-img {
                height: 160px;
            }
            .top-player-body {
                padding: 16px 18px 18px;
            }
            .top-player-name {
                font-size: 18px;
            }
            .section-title {
                font-size: 22px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --font-main: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
            --font-mono: "SF Mono","Roboto Mono","Consolas",monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22,24,29,0.96), rgba(22,24,29,0.96)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        input, textarea, select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }
        input::placeholder, textarea::placeholder {
            color: var(--text-cool);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--section-padding);
            position: relative;
        }
        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        /* Navbar */
        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        .brand-icon::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border: 2px solid var(--bg-primary);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .navbar-search {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            max-width: 360px;
            min-width: 200px;
            margin-left: auto;
        }
        .navbar-search input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px 12px;
            font-size: 14px;
            color: var(--text-primary);
            transition: var(--transition);
            width: 100%;
        }
        .navbar-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
            outline: none;
        }
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        .navbar-tabs {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0 0 10px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex-wrap: nowrap;
        }
        .navbar-tabs::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-full);
            white-space: nowrap;
            border: 1px solid transparent;
            transition: var(--transition);
            text-decoration: none;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background-color: var(--bg-panel);
            border-color: var(--border-color);
        }
        .nav-tab.active {
            background-color: var(--accent);
            color: var(--bg-primary);
            font-weight: 600;
            border-color: var(--accent);
            box-shadow: 0 2px 8px rgba(245,166,35,0.35);
        }
        .nav-tab.active:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            border-color: var(--accent-hover);
        }
        /* Buttons */
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            box-shadow: 0 4px 14px rgba(245,166,35,0.4);
            transform: translateY(-1px);
        }
        .btn-primary-custom:active {
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
            transform: translateY(0);
        }
        .btn-secondary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            color: var(--text-primary);
            border-color: var(--text-cool);
            transform: translateY(-1px);
        }
        .btn-secondary-custom:active {
            background-color: var(--border-color);
            transform: translateY(0);
        }
        .btn-cta-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--danger);
            color: var(--text-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-cta-custom:hover {
            background-color: var(--danger-hover);
            color: var(--text-primary);
            box-shadow: 0 4px 18px rgba(229,72,77,0.45);
            transform: translateY(-1px);
        }
        .btn-cta-custom:active {
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
            transform: translateY(0);
        }
        /* Badge */
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-full);
            letter-spacing: 0.02em;
            border: 1px solid transparent;
        }
        .badge-danger {
            background-color: rgba(229,72,77,0.12);
            color: var(--danger);
            border-color: rgba(229,72,77,0.35);
        }
        .badge-success {
            background-color: rgba(48,164,108,0.12);
            color: var(--success);
            border-color: rgba(48,164,108,0.35);
        }
        .badge-warning {
            background-color: rgba(245,166,35,0.12);
            color: var(--accent);
            border-color: rgba(245,166,35,0.35);
        }
        .badge-muted {
            background-color: rgba(108,117,128,0.12);
            color: var(--text-muted);
            border-color: rgba(108,117,128,0.3);
        }
        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-sep {
            color: var(--text-cool);
            font-size: 12px;
        }
        .breadcrumb-current {
            color: var(--text-secondary);
            font-weight: 500;
        }
        /* Category Hero */
        .category-hero {
            padding: 48px 0 36px;
            position: relative;
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
        }
        .category-hero-content {
            position: relative;
            z-index: 2;
        }
        .category-hero h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .category-hero .lead {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 720px;
            margin-bottom: 0;
        }
        .category-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 1;
            pointer-events: none;
        }
        /* Filter bar */
        .filter-bar {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
        }
        .filter-group {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .filter-group:last-child {
            margin-bottom: 0;
        }
        .filter-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 60px;
        }
        .filter-options {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .filter-pill {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
            white-space: nowrap;
        }
        .filter-pill:hover {
            color: var(--text-primary);
            border-color: var(--text-cool);
        }
        .filter-pill.active {
            background-color: var(--accent);
            color: var(--bg-primary);
            border-color: var(--accent);
            font-weight: 600;
        }
        .filter-pill.active:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            border-color: var(--accent-hover);
        }
        /* Team Card */
        .team-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(245,166,35,0.35);
        }
        .team-card-image {
            position: relative;
            height: 140px;
            background-size: cover;
            background-position: center;
            background-color: var(--bg-panel);
        }
        .team-card-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(22,24,29,0.3), rgba(22,24,29,0.8));
            pointer-events: none;
        }
        .team-rank-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            background-color: var(--bg-primary);
            color: var(--accent);
            border: 1px solid rgba(245,166,35,0.4);
            border-radius: var(--radius-full);
            padding: 2px 10px;
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-mono);
        }
        .team-logo-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 56px;
            height: 56px;
            background-color: rgba(30,33,40,0.9);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
        }
        .team-card-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .team-name-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .team-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .team-region {
            font-size: 12px;
            color: var(--text-muted);
            background-color: var(--bg-panel);
            border-radius: var(--radius-full);
            padding: 3px 10px;
            white-space: nowrap;
        }
        .team-stats-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .team-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .team-stat-label {
            font-size: 12px;
            color: var(--text-muted);
        }
        .team-stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
        }
        .team-stat-value.accent {
            color: var(--accent);
        }
        .team-stat-value.success {
            color: var(--success);
        }
        .team-recent-form {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .form-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            font-family: var(--font-mono);
            border: 1px solid transparent;
        }
        .form-dot.win {
            background-color: rgba(48,164,108,0.15);
            color: var(--success);
            border-color: rgba(48,164,108,0.35);
        }
        .form-dot.loss {
            background-color: rgba(229,72,77,0.15);
            color: var(--danger);
            border-color: rgba(229,72,77,0.35);
        }
        .team-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }
        .team-map-pool {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .team-card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
        }
        .team-card-link:hover {
            color: var(--accent-hover);
            text-decoration: underline;
        }
        /* Compare Tool */
        .compare-panel {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-md);
        }
        .compare-select-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .compare-vs {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-mono);
            white-space: nowrap;
        }
        .compare-selector {
            flex: 1;
            min-width: 180px;
        }
        .compare-selector label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 4px;
            display: block;
            font-weight: 500;
        }
        .compare-selector select {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            font-size: 14px;
            color: var(--text-primary);
            width: 100%;
            transition: var(--transition);
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }
        .compare-selector select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
            outline: none;
        }
        .compare-results {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        .compare-col {
            padding: 16px;
            background-color: var(--bg-primary);
        }
        .compare-col:first-child {
            border-right: 1px solid var(--border-color);
        }
        .compare-col-header {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            text-align: center;
        }
        .compare-metric {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(46,52,64,0.5);
            gap: 8px;
        }
        .compare-metric:last-child {
            border-bottom: none;
        }
        .compare-metric-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        .compare-metric-value {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
        }
        .compare-metric-value.highlight {
            color: var(--accent);
        }
        /* Stats Summary */
        .stats-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }
        .stat-summary-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .stat-summary-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: rgba(245,166,35,0.3);
        }
        .stat-summary-icon {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .stat-summary-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-summary-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        /* Region Trend */
        .region-trend-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .region-trend-item {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .region-trend-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            min-width: 80px;
            white-space: nowrap;
        }
        .region-trend-bar {
            flex: 1;
            min-width: 160px;
            height: 8px;
            background-color: var(--bg-panel);
            border-radius: var(--radius-full);
            overflow: hidden;
        }
        .region-trend-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-hover), var(--accent));
            border-radius: var(--radius-full);
            transition: width 0.5s ease;
        }
        .region-trend-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            font-family: var(--font-mono);
            min-width: 60px;
            text-align: right;
        }
        /* Subscribe CTA */
        .subscribe-cta {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .subscribe-cta-content {
            position: relative;
            z-index: 2;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .subscribe-form input, .subscribe-form select {
            flex: 1;
            min-width: 200px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            font-size: 14px;
            color: var(--text-primary);
            transition: var(--transition);
        }
        .subscribe-form input:focus, .subscribe-form select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
            outline: none;
        }
        .subscribe-form button {
            flex-shrink: 0;
        }
        /* Footer */
        .footer-custom {
            background-color: #101216;
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 320px;
        }
        .footer-heading {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            margin-top: 32px;
            border-top: 1px solid var(--border-color);
            flex-wrap: wrap;
        }
        .footer-copyright {
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-sitemap-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-sitemap-links a:hover {
            color: var(--accent);
        }
        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 960px;
            }
        }
        @media (max-width: 991.98px) {
            .container {
                max-width: 720px;
            }
            .section {
                padding: var(--section-padding-mobile);
            }
            .category-hero h1 {
                font-size: 30px;
            }
            .compare-results {
                grid-template-columns: 1fr;
            }
            .compare-col:first-child {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .navbar-top-row {
                gap: 10px;
            }
            .navbar-search {
                max-width: 220px;
            }
        }
        @media (max-width: 767.98px) {
            .container {
                max-width: 100%;
                padding-left: 16px;
                padding-right: 16px;
            }
            .section {
                padding: 36px 0;
            }
            .category-hero {
                padding: 32px 0 24px;
            }
            .category-hero h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .navbar-top-row {
                flex-wrap: wrap;
                gap: 8px;
            }
            .navbar-brand-custom {
                font-size: 17px;
            }
            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .navbar-search {
                order: 3;
                max-width: 100%;
                min-width: 100%;
                margin-left: 0;
            }
            .navbar-cta {
                margin-left: auto;
            }
            .navbar-cta .btn-primary-custom {
                padding: 8px 12px;
                font-size: 13px;
            }
            .nav-tab {
                padding: 6px 12px;
                font-size: 13px;
            }
            .filter-bar {
                padding: 14px 12px;
            }
            .filter-group {
                gap: 6px;
            }
            .filter-label {
                min-width: 45px;
                font-size: 12px;
            }
            .filter-pill {
                padding: 4px 10px;
                font-size: 12px;
            }
            .team-card-image {
                height: 110px;
            }
            .team-name {
                font-size: 17px;
            }
            .team-stat-value {
                font-size: 16px;
            }
            .compare-panel {
                padding: 18px 14px;
            }
            .compare-select-row {
                gap: 8px;
            }
            .compare-selector {
                min-width: 130px;
            }
            .compare-vs {
                font-size: 14px;
            }
            .stats-summary-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-summary-value {
                font-size: 22px;
            }
            .subscribe-cta {
                padding: 28px 18px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form input, .subscribe-form select {
                min-width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
        @media (max-width: 519.98px) {
            .stats-summary-grid {
                grid-template-columns: 1fr;
            }
            .category-hero h1 {
                font-size: 22px;
            }
            .team-card-image {
                height: 90px;
            }
            .team-logo-overlay {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            .navbar-top-row {
                padding: 8px 0;
            }
            .navbar-tabs {
                padding-bottom: 8px;
            }
            .nav-tab {
                padding: 5px 10px;
                font-size: 12px;
            }
            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 8px 14px;
                font-size: 13px;
            }
            .footer-custom {
                padding: 32px 0 16px;
            }
            .footer-heading {
                font-size: 14px;
                margin-bottom: 10px;
            }
            .footer-desc {
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --font-main: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
            --font-mono: "SF Mono","Roboto Mono","Consolas",monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22,24,29,0.97), rgba(22,24,29,0.97)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46,52,64,0.06) 80px, rgba(46,52,64,0.06) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46,52,64,0.06) 80px, rgba(46,52,64,0.06) 81px);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        input, textarea, select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }
        input::placeholder, textarea::placeholder {
            color: var(--text-cool);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }
        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--section-padding);
            position: relative;
        }
        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.35;
            margin-bottom: 10px;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        /* Navbar */
        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
        }
        .brand-icon::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--bg-primary);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .navbar-search {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            max-width: 320px;
            margin-left: auto;
        }
        .navbar-search input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 14px;
            color: var(--text-primary);
            width: 100%;
            min-width: 0;
        }
        .navbar-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
            outline: none;
        }
        .navbar-search .btn-secondary-custom {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 14px;
            white-space: nowrap;
        }
        .navbar-search .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            color: var(--text-primary);
            border-color: var(--accent);
        }
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            transform: translateY(-1px);
        }
        .btn-primary-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn-secondary-custom {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            color: var(--text-primary);
            border-color: var(--accent);
        }
        .btn-danger-custom {
            background-color: var(--danger);
            color: #fff;
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .btn-danger-custom:hover {
            background-color: var(--danger-hover);
            color: #fff;
            transform: translateY(-1px);
        }
        .btn-danger-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }
        .navbar-tabs {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0 10px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
            -webkit-overflow-scrolling: touch;
            border-top: 1px solid var(--border-color);
        }
        .navbar-tabs::-webkit-scrollbar {
            height: 4px;
        }
        .navbar-tabs::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 999px;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-full);
            white-space: nowrap;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background-color: var(--bg-panel);
        }
        .nav-tab.active {
            background-color: rgba(245,166,35,0.12);
            color: var(--accent);
            border-color: rgba(245,166,35,0.35);
            font-weight: 600;
        }
        /* Breadcrumb */
        .breadcrumb-bar {
            padding: 20px 0 8px;
            background-color: transparent;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            padding: 0;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-custom li:not(:last-child)::after {
            content: '/';
            color: var(--text-cool);
            font-size: 12px;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 600;
        }
        /* Page Hero */
        .page-hero {
            padding: 40px 0 32px;
            position: relative;
            background: linear-gradient(180deg, rgba(30,33,40,0.6) 0%, transparent 100%);
        }
        .page-hero h1 {
            font-size: clamp(32px, 5vw, 42px);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.015em;
        }
        .page-hero .hero-desc {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 780px;
            margin-bottom: 0;
        }
        .page-hero-stats {
            display: flex;
            gap: 24px;
            margin-top: 24px;
            flex-wrap: wrap;
        }
        .page-hero-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .page-hero-stat .stat-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .stat-dot.green {
            background-color: var(--success);
        }
        .stat-dot.orange {
            background-color: var(--accent);
        }
        .stat-dot.red {
            background-color: var(--danger);
        }
        .stat-dot.gray {
            background-color: var(--text-cool);
        }
        /* Filter Bar */
        .filter-bar {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            margin-bottom: 32px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: flex-end;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
            min-width: 160px;
        }
        .filter-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.03em;
        }
        .filter-group select,
        .filter-group input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-primary);
            min-width: 0;
        }
        .filter-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .filter-actions .btn-primary-custom {
            padding: 9px 20px;
        }
        .filter-actions .btn-secondary-custom {
            padding: 9px 16px;
        }
        /* Week Tabs */
        .week-tabs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 28px;
        }
        .week-tabs::-webkit-scrollbar {
            height: 3px;
        }
        .week-tabs::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 999px;
        }
        .week-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 10px 16px;
            border-radius: var(--radius-md);
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: var(--transition);
            min-width: 72px;
            white-space: nowrap;
        }
        .week-tab .day-label {
            font-size: 12px;
            color: var(--text-cool);
            font-weight: 500;
        }
        .week-tab .day-date {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
        }
        .week-tab .day-count {
            font-size: 11px;
            color: var(--text-muted);
            background: rgba(255,255,255,0.05);
            padding: 2px 8px;
            border-radius: var(--radius-full);
            margin-top: 2px;
        }
        .week-tab:hover {
            border-color: var(--accent);
            background-color: var(--bg-panel);
        }
        .week-tab.active {
            background-color: rgba(245,166,35,0.12);
            border-color: var(--accent);
        }
        .week-tab.active .day-label {
            color: var(--accent);
        }
        .week-tab.active .day-date {
            color: var(--accent);
        }
        .week-tab.active .day-count {
            background: rgba(245,166,35,0.2);
            color: var(--accent);
        }
        /* Schedule List */
        .schedule-day-group {
            margin-bottom: 36px;
        }
        .schedule-day-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .schedule-day-header .day-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .schedule-day-header .day-full {
            font-size: 14px;
            color: var(--text-muted);
        }
        .schedule-day-header .match-count {
            margin-left: auto;
            font-size: 13px;
            color: var(--text-muted);
            background: var(--bg-panel);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        .match-card-schedule {
            display: flex;
            align-items: center;
            gap: 16px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            margin-bottom: 10px;
            transition: var(--transition);
            flex-wrap: wrap;
        }
        .match-card-schedule:hover {
            border-color: var(--border-light);
            background-color: var(--bg-panel);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }
        .match-time {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            min-width: 72px;
            font-family: var(--font-mono);
        }
        .match-time .time-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .match-time .time-zone {
            font-size: 11px;
            color: var(--text-cool);
        }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 220px;
        }
        .team-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
        }
        .team-info .team-logo-placeholder {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--bg-panel);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .versus-label {
            font-size: 13px;
            color: var(--text-cool);
            font-family: var(--font-mono);
            font-weight: 500;
            padding: 0 4px;
        }
        .match-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .badge-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }
        .badge-status.live {
            background: rgba(229,72,77,0.12);
            color: var(--danger);
            border: 1px solid rgba(229,72,77,0.35);
        }
        .badge-status.live .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--danger);
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }
        .badge-status.upcoming {
            background: rgba(245,166,35,0.12);
            color: var(--accent);
            border: 1px solid rgba(245,166,35,0.35);
        }
        .badge-status.finished {
            background: rgba(107,114,128,0.12);
            color: var(--text-muted);
            border: 1px solid rgba(107,114,128,0.3);
        }
        .badge-tournament {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: var(--bg-panel);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            white-space: nowrap;
        }
        .badge-stage {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: rgba(48,164,108,0.1);
            color: var(--success);
            border: 1px solid rgba(48,164,108,0.3);
            white-space: nowrap;
        }
        .match-remind-btn {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            border-radius: var(--radius-md);
            padding: 6px 12px;
            font-size: 12px;
            white-space: nowrap;
            transition: var(--transition);
        }
        .match-remind-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(245,166,35,0.06);
        }
        .match-remind-btn.reminded {
            border-color: var(--success);
            color: var(--success);
            background: rgba(48,164,108,0.08);
        }
        /* Featured Matches */
        .featured-match-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .featured-match-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .featured-match-image {
            position: relative;
            height: 180px;
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid var(--border-color);
        }
        .featured-match-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(22,24,29,0.2) 30%, rgba(22,24,29,0.85) 100%);
        }
        .featured-match-image .featured-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }
        .featured-match-image .featured-tournament {
            position: absolute;
            bottom: 10px;
            left: 14px;
            z-index: 2;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        }
        .featured-match-body {
            padding: 16px 18px 18px;
        }
        .featured-teams-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
        }
        .featured-teams-row .vs {
            font-size: 13px;
            color: var(--text-cool);
            font-family: var(--font-mono);
        }
        .featured-match-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        .featured-match-meta i {
            color: var(--text-cool);
            margin-right: 4px;
        }
        /* Countdown Section */
        .countdown-section {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .countdown-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 200px;
        }
        .countdown-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .countdown-text .countdown-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .countdown-text .countdown-sub {
            font-size: 13px;
            color: var(--text-muted);
        }
        .countdown-timer {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .countdown-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 52px;
        }
        .countdown-unit .unit-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-mono);
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 6px 10px;
            min-width: 48px;
            text-align: center;
        }
        .countdown-unit .unit-label {
            font-size: 11px;
            color: var(--text-cool);
            margin-top: 4px;
        }
        .countdown-separator {
            font-size: 20px;
            color: var(--text-cool);
            font-weight: 700;
            padding-bottom: 20px;
        }
        /* CTA Subscribe */
        .subscribe-cta-panel {
            background: linear-gradient(135deg, var(--bg-panel) 0%, #1A1D23 60%);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta-panel::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .subscribe-cta-panel .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .subscribe-cta-panel .cta-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 20px;
            max-width: 600px;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .subscribe-form .form-group {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .subscribe-form .form-group label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .subscribe-form input,
        .subscribe-form select {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            font-size: 14px;
            color: var(--text-primary);
        }
        .subscribe-form .btn-danger-custom {
            padding: 12px 28px;
            font-size: 15px;
            align-self: flex-end;
        }
        /* Related Channels */
        .channel-link-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            transition: var(--transition);
            height: 100%;
        }
        .channel-link-card:hover {
            border-color: var(--accent);
            background-color: var(--bg-panel);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        .channel-link-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-md);
            background: var(--bg-panel);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .channel-link-info .channel-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .channel-link-info .channel-desc {
            font-size: 13px;
            color: var(--text-muted);
        }
        /* Footer */
        .footer-custom {
            background-color: #101216;
            border-top: 1px solid var(--border-color);
            padding: 56px 0 24px;
            margin-top: 20px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 320px;
        }
        .footer-heading {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links li a {
            font-size: 14px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .footer-links li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 20px;
            margin-top: 32px;
            border-top: 1px solid var(--border-color);
            font-size: 13px;
            color: var(--text-cool);
        }
        .footer-sitemap-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-sitemap-links a {
            color: var(--text-muted);
        }
        .footer-sitemap-links a:hover {
            color: var(--accent);
        }
        .footer-sitemap-links span {
            color: var(--text-cool);
        }
        /* Responsive */
        @media (max-width: 991.98px) {
            .navbar-top-row {
                gap: 10px;
            }
            .navbar-search {
                max-width: 220px;
            }
            .match-card-schedule {
                padding: 14px 16px;
                gap: 12px;
            }
            .match-teams {
                min-width: 180px;
            }
            .countdown-section {
                padding: 20px;
            }
        }
        @media (max-width: 767.98px) {
            :root {
                --section-padding: var(--section-padding-mobile);
            }
            .section {
                padding: var(--section-padding);
            }
            .navbar-top-row {
                padding: 10px 0;
                gap: 8px;
            }
            .navbar-brand-custom {
                font-size: 17px;
                gap: 8px;
            }
            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .navbar-search {
                max-width: 100%;
                order: 3;
                width: 100%;
                flex: 1 1 100%;
                margin-left: 0;
            }
            .navbar-cta {
                margin-left: auto;
            }
            .navbar-cta .btn-primary-custom {
                padding: 8px 12px;
                font-size: 12px;
            }
            .navbar-tabs {
                padding: 6px 0 8px;
                gap: 2px;
            }
            .nav-tab {
                padding: 7px 12px;
                font-size: 13px;
            }
            .page-hero {
                padding: 28px 0 24px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-desc {
                font-size: 15px;
            }
            .page-hero-stats {
                gap: 14px;
                margin-top: 16px;
            }
            .filter-bar {
                padding: 16px;
                gap: 12px;
            }
            .filter-group {
                min-width: 100%;
            }
            .filter-actions {
                width: 100%;
                justify-content: stretch;
            }
            .filter-actions .btn-primary-custom,
            .filter-actions .btn-secondary-custom {
                flex: 1;
                justify-content: center;
            }
            .week-tab {
                min-width: 60px;
                padding: 8px 10px;
            }
            .week-tab .day-date {
                font-size: 15px;
            }
            .match-card-schedule {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px;
            }
            .match-time {
                flex-direction: row;
                gap: 6px;
                min-width: auto;
                align-items: center;
            }
            .match-teams {
                width: 100%;
                min-width: auto;
                justify-content: space-between;
            }
            .team-info {
                font-size: 14px;
            }
            .match-meta {
                width: 100%;
                justify-content: flex-start;
            }
            .match-remind-btn {
                width: 100%;
                justify-content: center;
            }
            .countdown-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding: 18px;
            }
            .countdown-timer {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            .countdown-unit .unit-value {
                font-size: 20px;
                min-width: 40px;
                padding: 4px 8px;
            }
            .subscribe-cta-panel {
                padding: 24px 18px;
            }
            .subscribe-cta-panel .cta-title {
                font-size: 20px;
            }
            .subscribe-form .form-group {
                min-width: 100%;
            }
            .subscribe-form .btn-danger-custom {
                width: 100%;
                justify-content: center;
            }
            .footer-custom {
                padding: 40px 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .section-title {
                font-size: 24px;
            }
            .schedule-day-header {
                flex-wrap: wrap;
                gap: 8px;
            }
            .schedule-day-header .match-count {
                margin-left: 0;
            }
            .featured-match-image {
                height: 150px;
            }
        }
        @media (max-width: 575.98px) {
            .navbar-brand-custom {
                font-size: 15px;
            }
            .brand-icon {
                width: 26px;
                height: 26px;
                font-size: 12px;
            }
            .navbar-cta .btn-primary-custom {
                padding: 7px 10px;
                font-size: 11px;
            }
            .nav-tab {
                padding: 6px 10px;
                font-size: 12px;
            }
            .section-title {
                font-size: 22px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .match-card-schedule {
                padding: 12px;
            }
            .team-info .team-logo-placeholder {
                width: 22px;
                height: 22px;
                font-size: 9px;
            }
            .countdown-unit .unit-value {
                font-size: 16px;
                min-width: 34px;
                padding: 3px 6px;
            }
            .countdown-separator {
                font-size: 16px;
                padding-bottom: 14px;
            }
            .week-tab {
                min-width: 52px;
                padding: 6px 8px;
            }
            .week-tab .day-date {
                font-size: 13px;
            }
            .week-tab .day-label {
                font-size: 10px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-primary: #16181D;
            --bg-surface: #1E2128;
            --bg-panel: #262A33;
            --accent: #F5A623;
            --accent-hover: #E0941B;
            --danger: #E5484D;
            --danger-hover: #C93A3F;
            --success: #30A46C;
            --success-hover: #278F5D;
            --text-primary: #F7F8FA;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --text-cool: #6B7280;
            --border-color: #2E3440;
            --border-light: #3A3F4B;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
            --font-main: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Helvetica Neue",sans-serif;
            --font-mono: "SF Mono","Roboto Mono","Consolas",monospace;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --section-padding: 72px 0;
            --section-padding-mobile: 44px 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            background-color: var(--bg-primary);
            background-image:
                linear-gradient(rgba(22,24,29,0.96), rgba(22,24,29,0.96)),
                repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px),
                repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(46,52,64,0.08) 80px, rgba(46,52,64,0.08) 81px);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
        }

        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        input, textarea, select {
            font-family: inherit;
            font-size: 14px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            transition: var(--transition);
            width: 100%;
        }

        input::placeholder, textarea::placeholder {
            color: var(--text-cool);
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-alt {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 760px;
            margin-bottom: 36px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            background: rgba(245,166,35,0.1);
            border: 1px solid rgba(245,166,35,0.3);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }

        .navbar-custom {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .navbar-top-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .navbar-brand-custom:hover {
            color: var(--accent);
        }

        .brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #E0941B);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bg-primary);
            flex-shrink: 0;
            position: relative;
        }

        .brand-icon::after {
            content: "\f0ac";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            position: absolute;
            top: -4px;
            right: -4px;
            color: var(--danger);
            text-shadow: 0 0 8px rgba(229,72,77,0.5);
        }

        .navbar-search {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            max-width: 380px;
            margin-left: auto;
        }

        .navbar-search input {
            background-color: var(--bg-primary);
            border-color: var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            font-size: 14px;
            width: 100%;
            color: var(--text-primary);
        }

        .navbar-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
        }

        .navbar-cta {
            white-space: nowrap;
        }

        .navbar-tabs {
            display: flex;
            gap: 6px;
            padding: 8px 0;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
            -webkit-overflow-scrolling: touch;
            flex-wrap: nowrap;
        }

        .navbar-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .navbar-tabs::-webkit-scrollbar-thumb {
            background-color: var(--border-light);
            border-radius: 2px;
        }

        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background-color: transparent;
            border: 1px solid transparent;
            white-space: nowrap;
            transition: var(--transition);
        }

        .nav-tab:hover {
            color: var(--text-primary);
            background-color: var(--bg-panel);
            border-color: var(--border-color);
        }

        .nav-tab.active {
            color: var(--bg-primary);
            background-color: var(--accent);
            border-color: var(--accent);
            font-weight: 600;
        }

        .nav-tab.active:hover {
            color: var(--bg-primary);
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
        }

        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: var(--radius-md);
            padding: 9px 22px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: var(--bg-primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245,166,35,0.3);
        }

        .btn-primary-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }

        .btn-secondary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(54,59,70,0.4);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 9px 22px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
            backdrop-filter: blur(4px);
        }

        .btn-secondary-custom:hover {
            background-color: var(--bg-panel);
            border-color: var(--border-light);
            color: var(--text-primary);
            box-shadow: 0 4px 8px rgba(0,0,0,0.25);
        }

        .btn-secondary-custom:active {
            transform: translateY(0);
            background-color: var(--bg-surface);
        }

        .btn-danger-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--danger);
            color: #fff;
            border: none;
            border-radius: var(--radius-md);
            padding: 9px 22px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-danger-custom:hover {
            background-color: var(--danger-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229,72,77,0.3);
        }

        .btn-danger-custom:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }

        .card-custom {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            overflow: hidden;
        }

        .card-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-light);
        }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            line-height: 1.4;
        }

        .badge-danger {
            background-color: rgba(229,72,77,0.15);
            color: #E5484D;
            border: 1px solid rgba(229,72,77,0.35);
        }

        .badge-success {
            background-color: rgba(48,164,108,0.15);
            color: #30A46C;
            border: 1px solid rgba(48,164,108,0.35);
        }

        .badge-accent {
            background-color: rgba(245,166,35,0.15);
            color: #F5A623;
            border: 1px solid rgba(245,166,35,0.35);
        }

        .badge-muted {
            background-color: rgba(107,114,128,0.15);
            color: #9CA3AF;
            border: 1px solid rgba(107,114,128,0.35);
        }

        .footer-custom {
            background-color: #101216;
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.75;
            max-width: 320px;
        }

        .footer-heading {
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .footer-copyright {
            color: var(--text-cool);
            font-size: 13px;
        }

        .footer-sitemap-links {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-cool);
        }

        .footer-sitemap-links a {
            color: var(--text-muted);
            transition: var(--transition);
        }

        .footer-sitemap-links a:hover {
            color: var(--accent);
        }

        /* 资讯页首部 */
        .news-hero {
            padding: 56px 0 40px;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .news-hero::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .news-hero-inner {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .news-hero-text {
            flex: 1;
            min-width: 280px;
        }

        .news-hero-title {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .news-hero-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 640px;
        }

        .news-hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            min-width: 240px;
        }

        .news-hero-stat {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 16px 18px;
            text-align: center;
        }

        .news-stat-num {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }

        .news-stat-label {
            font-size: 13px;
            color: var(--text-cool);
            margin-top: 4px;
        }

        /* 头条文章 */
        .headline-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 340px;
        }

        .headline-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-light);
        }

        .headline-img {
            background-size: cover;
            background-position: center;
            min-height: 280px;
            position: relative;
        }

        .headline-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(22,24,29,0.8), rgba(22,24,29,0.3));
        }

        .headline-body {
            padding: 28px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
            background-color: var(--bg-surface);
        }

        .headline-badge {
            align-self: flex-start;
        }

        .headline-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.35;
            margin-bottom: 6px;
        }

        .headline-excerpt {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        .headline-meta {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-cool);
        }

        .headline-meta i {
            margin-right: 4px;
            color: var(--accent);
        }

        /* 资讯列表 */
        .news-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-light);
        }

        .news-card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .news-card-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(22,24,29,0.7), transparent);
        }

        .news-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-card-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .news-card-excerpt {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            flex: 1;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-cool);
            flex-wrap: wrap;
            gap: 6px;
        }

        .news-readmore {
            color: var(--accent);
            font-weight: 500;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
        }

        .news-readmore:hover {
            color: var(--accent-hover);
            gap: 6px;
        }

        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 7px 16px;
            background-color: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            transition: var(--transition);
            white-space: nowrap;
        }

        .tag-pill:hover {
            border-color: var(--accent);
            color: var(--accent);
            background-color: rgba(245,166,35,0.08);
        }

        .tag-pill i {
            font-size: 11px;
        }

        /* 订阅区 */
        .subscribe-cta {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 36px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .subscribe-cta::before {
            content: "";
            position: absolute;
            top: -80%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .subscribe-cta-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .subscribe-cta-text {
            flex: 1;
            min-width: 260px;
        }

        .subscribe-cta-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .subscribe-cta-text p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .subscribe-cta-form {
            display: flex;
            gap: 10px;
            min-width: 280px;
            flex-wrap: wrap;
        }

        .subscribe-cta-form input {
            flex: 1;
            min-width: 200px;
        }

        .subscribe-cta-form .btn-danger-custom {
            flex-shrink: 0;
        }

        /* 品牌介绍区 */
        .brand-intro-box {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            margin-top: 20px;
        }

        .brand-intro-box h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .brand-intro-box p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* 响应式 */
        @media (max-width: 991.98px) {
            .headline-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .headline-img {
                min-height: 220px;
            }

            .news-hero-title {
                font-size: 32px;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --section-padding: 44px 0;
            }

            .navbar-top-row {
                gap: 10px;
                padding: 10px 0;
            }

            .navbar-brand-custom {
                font-size: 17px;
                gap: 8px;
            }

            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .navbar-search {
                max-width: 100%;
                order: 3;
                margin-left: 0;
            }

            .navbar-cta {
                margin-left: auto;
            }

            .navbar-cta .btn-primary-custom {
                padding: 7px 14px;
                font-size: 13px;
            }

            .news-hero {
                padding: 36px 0 28px;
            }

            .news-hero-title {
                font-size: 28px;
            }

            .news-hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                width: 100%;
            }

            .news-stat-num {
                font-size: 20px;
            }

            .headline-body {
                padding: 20px;
            }

            .headline-title {
                font-size: 20px;
            }

            .subscribe-cta {
                padding: 24px 20px;
            }

            .subscribe-cta-form {
                flex-direction: column;
            }

            .subscribe-cta-form .btn-danger-custom {
                width: 100%;
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .navbar-tabs {
                gap: 4px;
            }

            .nav-tab {
                padding: 6px 14px;
                font-size: 13px;
            }

            .news-hero-title {
                font-size: 24px;
            }

            .news-hero-desc {
                font-size: 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .headline-title {
                font-size: 18px;
            }

            .headline-excerpt {
                font-size: 14px;
            }

            .news-card-img {
                height: 150px;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
