/* roulang page: index */
:root {
            --bg-primary: #100C1A;
            --bg-card: #1A1325;
            --bg-card-hover: #1F172B;
            --accent: #E639D8;
            --accent-hover: #C720B4;
            --highlight: #00F0FF;
            --success: #0FEB9E;
            --danger: #FF4D6A;
            --text-primary: #E8E3F0;
            --text-secondary: #9B8EAD;
            --border-color: #2A1F3A;
            --border-glow: #E639D8;
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 12px;
            --radius-xl: 50px;
            --shadow-card: 0 2px 8px rgba(230, 57, 216, 0.15);
            --shadow-card-hover: 0 6px 28px rgba(0, 240, 255, 0.25);
            --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.4);
            --spacing-xs: 8px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-xxl: 64px;
            --font-mono: 'DIN Alternate', 'Roboto Mono', 'SF Mono', 'Consolas', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 70px;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
            min-height: 100vh;
        }

        @media (max-width: 767.98px) {
            body {
                padding-bottom: 70px;
                font-size: 14px;
                line-height: 1.6;
            }
        }

        a {
            color: var(--highlight);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 2px;
            border-radius: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        button:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 2px;
        }

        input {
            font-family: inherit;
        }
        input:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 1px;
        }

        .container {
            max-width: 1320px;
            padding-left: 16px;
            padding-right: 16px;
        }
        @media (min-width: 1200px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        /* ========== 顶部导航 ========== */
        .navbar-esports {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-glow);
            box-shadow: 0 1px 12px rgba(230, 57, 216, 0.18);
            padding: 0;
            min-height: 60px;
            transition: background var(--transition-normal);
        }
        .navbar-esports .navbar-brand {
            font-weight: 700;
            font-size: 22px;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0;
            margin-right: 24px;
            white-space: nowrap;
        }
        .navbar-esports .navbar-brand img {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--highlight);
        }
        .navbar-esports .nav-link {
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            padding: 10px 14px;
            transition: color var(--transition-fast), border-bottom var(--transition-fast);
            border-bottom: 2px solid transparent;
            margin: 0 2px;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .navbar-esports .nav-link:hover,
        .navbar-esports .nav-link:focus {
            color: var(--highlight);
            border-bottom-color: var(--highlight);
        }
        .navbar-esports .nav-link.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            font-weight: 600;
        }
        .navbar-esports .btn-cta-nav {
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-xl);
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition-fast);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .navbar-esports .btn-cta-nav:hover {
            background: var(--accent-hover);
            box-shadow: 0 0 18px rgba(230, 57, 216, 0.5);
            color: #fff;
            transform: translateY(-1px);
        }
        .navbar-esports .navbar-toggler {
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 6px 10px;
            color: var(--text-primary);
        }
        .navbar-esports .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
            outline: none;
        }
        .navbar-esports .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8E3F0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991.98px) {
            .navbar-esports .nav-link {
                padding: 10px 16px;
                font-size: 15px;
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            .navbar-esports .nav-link:hover,
            .navbar-esports .nav-link:focus {
                border-bottom: none;
                border-left-color: var(--highlight);
                background: rgba(26, 19, 37, 0.6);
            }
            .navbar-esports .nav-link.active {
                border-bottom: none;
                border-left-color: var(--accent);
                background: rgba(26, 19, 37, 0.8);
            }
            .navbar-esports .navbar-collapse {
                background: var(--bg-primary);
                border-top: 1px solid var(--border-color);
                padding: 8px 0;
            }
            .navbar-esports .btn-cta-nav {
                margin: 8px 16px;
                display: inline-block;
            }
        }

        /* ========== 移动端底部Tab导航 ========== */
        .bottom-tab-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.5);
            padding: 4px 0 env(safe-area-inset-bottom, 4px) 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 62px;
        }
        @media (min-width: 768px) {
            .bottom-tab-bar {
                display: none !important;
            }
        }
        @media (max-width: 767.98px) {
            .bottom-tab-bar {
                display: flex;
            }
        }
        .bottom-tab-bar .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: var(--text-secondary);
            font-size: 10px;
            font-weight: 500;
            text-decoration: none;
            padding: 4px 10px;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            min-width: 52px;
            letter-spacing: 0.2px;
        }
        .bottom-tab-bar .tab-item i {
            font-size: 20px;
            transition: color var(--transition-fast);
        }
        .bottom-tab-bar .tab-item.active {
            color: var(--accent);
            background: rgba(230, 57, 216, 0.1);
        }
        .bottom-tab-bar .tab-item.active i {
            color: var(--accent);
        }
        .bottom-tab-bar .tab-item:hover {
            color: var(--highlight);
        }
        .bottom-tab-bar .tab-item:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: -2px;
        }

        /* ========== 板块间距 ========== */
        .section-block {
            padding: var(--spacing-xxl) 0;
        }
        @media (max-width: 991.98px) {
            .section-block {
                padding: var(--spacing-xl) 0;
            }
        }
        @media (max-width: 767.98px) {
            .section-block {
                padding: var(--spacing-lg) 0;
            }
        }

        /* ========== Hero区域 ========== */
        .hero-section {
            padding-top: 90px;
            padding-bottom: var(--spacing-xl);
            background: linear-gradient(180deg, rgba(16, 12, 26, 0.92) 0%, rgba(26, 19, 37, 0.85) 40%, var(--bg-primary) 100%), url('/assets/images/backpic/back-1.webp') center top / cover no-repeat;
            position: relative;
            min-height: 75vh;
            display: flex;
            align-items: flex-start;
        }
        @media (max-width: 767.98px) {
            .hero-section {
                padding-top: 75px;
                padding-bottom: var(--spacing-lg);
                min-height: auto;
            }
        }
        .hero-section .hero-h1 {
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        @media (max-width: 767.98px) {
            .hero-section .hero-h1 {
                font-size: 22px;
                letter-spacing: -0.3px;
            }
        }
        .hero-section .hero-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            letter-spacing: 0.2px;
        }

        /* 数据小卡片网格 */
        .data-card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        @media (max-width: 1199.98px) {
            .data-card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 767.98px) {
            .data-card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        @media (max-width: 420px) {
            .data-card-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
        }
        .data-mini-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 14px 16px;
            cursor: pointer;
            transition: all var(--transition-fast);
            position: relative;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
            text-decoration: none;
            color: inherit;
        }
        .data-mini-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            background: var(--bg-card-hover);
            color: inherit;
        }
        .data-mini-card:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 1px;
        }
        .data-mini-card .card-label {
            font-size: 11px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .data-mini-card .card-value {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-primary);
            line-height: 1;
        }
        @media (max-width: 767.98px) {
            .data-mini-card .card-value {
                font-size: 24px;
            }
        }
        .data-mini-card .card-trend {
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .data-mini-card .card-trend.up {
            color: var(--success);
        }
        .data-mini-card .card-trend.down {
            color: var(--danger);
        }
        .data-mini-card .card-trend.stable {
            color: var(--text-secondary);
        }
        .data-mini-card .live-dot {
            position: absolute;
            top: 10px;
            right: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--danger);
            animation: livePulse 1.4s infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 77, 106, 0);
            }
        }

        /* ========== 热榜 ========== */
        .hot-rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        @media (max-width: 767.98px) {
            .hot-rank-list {
                grid-template-columns: 1fr;
            }
        }
        .hot-rank-list .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        .hot-rank-list .rank-item:hover {
            border-color: var(--highlight);
            background: var(--bg-card-hover);
            color: inherit;
        }
        .hot-rank-list .rank-num {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            color: var(--accent);
            min-width: 28px;
            text-align: center;
        }
        .hot-rank-list .rank-info {
            flex: 1;
            min-width: 0;
        }
        .hot-rank-list .rank-name {
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hot-rank-list .rank-sub {
            font-size: 12px;
            color: var(--text-secondary);
        }
        .hot-rank-list .rank-val {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--highlight);
            white-space: nowrap;
        }
        .hot-rank-list .rank-change {
            font-size: 12px;
            font-weight: 600;
        }
        .hot-rank-list .rank-change.up {
            color: var(--success);
        }
        .hot-rank-list .rank-change.down {
            color: var(--danger);
        }

        /* ========== 资讯列表 ========== */
        .news-list-item {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            transition: background var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            align-items: flex-start;
        }
        .news-list-item:hover {
            background: var(--bg-card-hover);
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius-md);
            border-bottom-color: transparent;
            color: inherit;
        }
        .news-list-item .news-thumb {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-card);
        }
        .news-list-item .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .news-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .news-list-item .news-meta {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .news-list-item .news-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .news-tag-hot {
            background: rgba(255, 77, 106, 0.2);
            color: var(--danger);
        }
        .news-tag-new {
            background: rgba(0, 240, 255, 0.15);
            color: var(--highlight);
        }
        .news-tag-rec {
            background: rgba(230, 57, 216, 0.2);
            color: var(--accent);
        }
        .news-headline-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 16px;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .news-headline-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }
        .news-headline-card .headline-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(16, 12, 26, 0.95));
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }
        .news-headline-card .headline-title {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .news-headline-card .headline-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ========== 专题卡片 ========== */
        .topic-card {
            display: block;
            text-decoration: none;
            color: inherit;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            height: 100%;
        }
        .topic-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            color: inherit;
        }
        .topic-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .topic-card .topic-body {
            padding: 16px 18px;
        }
        .topic-card .topic-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .topic-card .topic-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .topic-card .topic-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .topic-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-xl);
            font-size: 11px;
            font-weight: 500;
            background: rgba(230, 57, 216, 0.15);
            color: var(--accent);
            letter-spacing: 0.2px;
        }

        /* ========== 服务卡片 ========== */
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            transition: all var(--transition-normal);
            height: 100%;
            text-decoration: none;
            color: inherit;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .service-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            color: inherit;
        }
        .service-card .svc-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(230, 57, 216, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .service-card .svc-info h4 {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 4px;
        }
        .service-card .svc-info p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========== 用户评价 ========== */
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            height: 100%;
            transition: all var(--transition-fast);
        }
        .testimonial-card:hover {
            border-color: var(--highlight);
        }
        .testimonial-card .testimonial-stars {
            color: #f0c040;
            font-size: 14px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .testimonial-card .testimonial-text {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .testimonial-card .testimonial-author {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ========== FAQ折叠面板 ========== */
        .faq-accordion .faq-item {
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            background: var(--bg-card);
        }
        .faq-accordion .faq-question {
            width: 100%;
            background: transparent;
            color: var(--text-primary);
            padding: 16px 18px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast);
            letter-spacing: 0.2px;
        }
        .faq-accordion .faq-question:hover {
            background: var(--bg-card-hover);
        }
        .faq-accordion .faq-question .q-prefix {
            color: var(--accent);
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }
        .faq-accordion .faq-question .q-arrow {
            transition: transform var(--transition-fast);
            color: var(--text-secondary);
            font-size: 13px;
            flex-shrink: 0;
        }
        .faq-accordion .faq-question[aria-expanded="true"] .q-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .faq-accordion .faq-answer {
            padding: 0 18px 16px 18px;
            border-left: 3px solid var(--accent);
            margin-left: 18px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
            display: none;
        }
        .faq-accordion .faq-answer.show {
            display: block;
        }
        .faq-accordion .faq-answer strong {
            color: var(--text-primary);
        }

        /* ========== CTA订阅区域 ========== */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        @media (max-width: 767.98px) {
            .cta-section {
                padding: 24px 16px;
            }
        }
        .cta-section .cta-input {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            color: var(--text-primary);
            padding: 12px 20px;
            font-size: 15px;
            width: 100%;
            max-width: 420px;
            transition: all var(--transition-fast);
        }
        .cta-section .cta-input:focus {
            border-color: var(--highlight);
            box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.12);
            outline: none;
        }
        .cta-section .cta-submit {
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-xl);
            padding: 12px 28px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            transition: all var(--transition-fast);
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .cta-section .cta-submit:hover {
            background: var(--accent-hover);
            box-shadow: 0 0 22px rgba(230, 57, 216, 0.5);
            transform: translateY(-2px);
        }
        .cta-trust {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* ========== 生态标签墙 ========== */
        .eco-tag-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .eco-tag-item {
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            transition: all var(--transition-fast);
            cursor: default;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .eco-tag-item:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(230, 57, 216, 0.08);
        }

        /* ========== 更新日志时间线 ========== */
        .timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border-color);
        }
        .timeline-list .tl-item {
            position: relative;
            padding-left: 44px;
            margin-bottom: 20px;
        }
        .timeline-list .tl-dot {
            position: absolute;
            left: 8px;
            top: 4px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--bg-primary);
            box-shadow: 0 0 0 3px var(--border-color);
        }
        .timeline-list .tl-date {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        .timeline-list .tl-content {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.5;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 30px;
            color: var(--text-secondary);
            font-size: 13px;
            text-align: center;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 18px;
            margin-bottom: 16px;
            font-size: 13px;
        }
        .site-footer .footer-links a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .site-footer .footer-links a:hover {
            color: var(--highlight);
        }
        .site-footer .footer-sep {
            color: var(--border-color);
        }
        .site-footer .footer-beian {
            margin-top: 12px;
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .site-footer .footer-rss-btn {
            display: inline-block;
            padding: 6px 16px;
            border: 1px solid var(--highlight);
            border-radius: var(--radius-xl);
            color: var(--highlight);
            font-size: 12px;
            font-weight: 500;
            transition: all var(--transition-fast);
            text-decoration: none;
            margin-bottom: 16px;
        }
        .site-footer .footer-rss-btn:hover {
            background: var(--highlight);
            color: var(--bg-primary);
        }

        /* ========== 板块标题 ========== */
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        @media (max-width: 767.98px) {
            .section-title {
                font-size: 22px;
            }
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 28px;
        }
        .section-header {
            margin-bottom: 32px;
        }
        @media (max-width: 767.98px) {
            .section-header {
                margin-bottom: 20px;
            }
        }

        /* ========== 趋势对比图表占位 ========== */
        .chart-placeholder {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            text-align: center;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .chart-placeholder img {
            max-width: 100%;
            border-radius: var(--radius-md);
            opacity: 0.85;
        }
        .chart-placeholder .chart-label {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 18px;
            height: 180px;
            padding: 0 20px;
            justify-content: center;
        }
        .chart-bar {
            width: 40px;
            border-radius: 6px 6px 0 0;
            position: relative;
            transition: height var(--transition-normal);
            min-width: 28px;
        }
        .chart-bar.bar-accent {
            background: linear-gradient(180deg, var(--accent), rgba(230, 57, 216, 0.4));
        }
        .chart-bar.bar-highlight {
            background: linear-gradient(180deg, var(--highlight), rgba(0, 240, 255, 0.4));
        }
        .chart-bar .bar-val {
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
        }

        /* ========== 按钮通用 ========== */
        .btn-outline-glow {
            border: 1px solid var(--highlight);
            color: var(--highlight);
            border-radius: var(--radius-xl);
            padding: 8px 20px;
            font-weight: 500;
            font-size: 14px;
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
            letter-spacing: 0.2px;
        }
        .btn-outline-glow:hover {
            background: var(--highlight);
            color: var(--bg-primary);
            box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
        }

        /* ========== 筛选标签 ========== */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-tag {
            padding: 6px 14px;
            border-radius: var(--radius-xl);
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .filter-tag:hover,
        .filter-tag.active {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(230, 57, 216, 0.1);
        }

        /* ========== 分隔线 ========== */
        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
            margin: 0;
        }

        /* ========== 响应式覆盖 ========== */
        @media (max-width: 767.98px) {
            .hide-mobile {
                display: none !important;
            }
            .news-headline-card img {
                aspect-ratio: 16/10;
            }
            .data-mini-card {
                padding: 10px 12px;
            }
            .data-mini-card .card-label {
                font-size: 10px;
            }
            .topic-card .topic-body {
                padding: 12px 14px;
            }
            .service-card {
                padding: 16px 14px;
                gap: 10px;
            }
            .cta-section {
                padding: 20px 14px;
            }
        }
        @media (min-width: 768px) {
            .show-mobile-only {
                display: none !important;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #100C1A;
            --bg-card: #1A1325;
            --bg-card-hover: #1F172B;
            --accent: #E639D8;
            --accent-hover: #C720B4;
            --highlight: #00F0FF;
            --success: #0FEB9E;
            --danger: #FF4D6A;
            --text-primary: #E8E3F0;
            --text-secondary: #9B8EAD;
            --border: #2A1F3A;
            --border-light: #352845;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --radius-pill: 50px;
            --shadow-card: 0 2px 8px rgba(230, 57, 216, 0.12);
            --shadow-card-hover: 0 6px 28px rgba(0, 240, 255, 0.22);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Roboto Mono', 'DIN Alternate', 'Menlo', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --section-gap-desktop: 64px;
            --section-gap-tablet: 48px;
            --section-gap-mobile: 32px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 15px;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            color: var(--highlight);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 2px;
            border-radius: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: var(--font-sans);
        }
        input {
            font-family: var(--font-sans);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-primary);
            line-height: 1.3;
            margin-top: 0;
        }
        h1 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 18px;
            font-weight: 600;
        }
        h4 {
            font-size: 16px;
            font-weight: 600;
        }

        p {
            margin-bottom: 1em;
        }

        /* ========== 容器 ========== */
        .container {
            max-width: 1320px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-gap {
            margin-bottom: var(--section-gap-desktop);
        }

        /* ========== 导航 ========== */
        .navbar-esports {
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--accent);
            box-shadow: 0 1px 12px rgba(230, 57, 216, 0.18);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .navbar-esports .navbar-brand {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: -0.3px;
            transition: color var(--transition-fast);
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--highlight);
            text-decoration: none;
        }
        .navbar-esports .navbar-brand img {
            border-radius: 6px;
            flex-shrink: 0;
        }
        .navbar-esports .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 14.5px;
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .navbar-esports .nav-link:hover {
            color: var(--highlight);
            text-decoration: none;
        }
        .navbar-esports .nav-link::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--highlight);
            transform: scaleX(0);
            transition: transform var(--transition-smooth);
            border-radius: 2px;
        }
        .navbar-esports .nav-link:hover::after {
            transform: scaleX(1);
        }
        .navbar-esports .nav-link.active {
            color: var(--accent);
            font-weight: 600;
            background: rgba(230, 57, 216, 0.08);
        }
        .navbar-esports .nav-link.active::after {
            transform: scaleX(1);
            background: var(--accent);
        }
        .navbar-toggler {
            border-color: var(--border);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8E3F0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .btn-cta-nav {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }
        .btn-cta-nav:hover {
            background: var(--accent-hover);
            color: #fff;
            box-shadow: 0 0 20px rgba(230, 57, 216, 0.45);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .btn-cta-nav:active {
            transform: scale(0.96);
            transition: transform 0.08s ease;
        }

        /* ========== 移动端底部Tab ========== */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 6px 0 env(safe-area-inset-bottom, 8px) 0;
            grid-template-columns: repeat(5, 1fr);
            box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.5);
        }
        .mobile-bottom-nav .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: var(--text-secondary);
            font-size: 10px;
            font-weight: 500;
            text-decoration: none;
            padding: 4px 2px;
            border-radius: 6px;
            transition: all var(--transition-fast);
        }
        .mobile-bottom-nav .tab-item i {
            font-size: 18px;
            transition: color var(--transition-fast);
        }
        .mobile-bottom-nav .tab-item.active {
            color: var(--accent);
        }
        .mobile-bottom-nav .tab-item.active i {
            color: var(--accent);
        }
        .mobile-bottom-nav .tab-item:hover {
            color: var(--highlight);
            text-decoration: none;
            background: rgba(0, 240, 255, 0.04);
        }

        /* ========== Hero专题横幅 ========== */
        .hero-topic-banner {
            background: linear-gradient(180deg, #1A1325 0%, #100C1A 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 28px;
            box-shadow: var(--shadow-lg);
        }
        .hero-topic-banner .banner-img-wrap {
            position: relative;
            overflow: hidden;
            min-height: 300px;
            background: var(--bg-card);
        }
        .hero-topic-banner .banner-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .hero-topic-banner:hover .banner-img-wrap img {
            transform: scale(1.04);
        }
        .hero-topic-banner .banner-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            background: var(--accent);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.3px;
            z-index: 2;
            animation: pulse-badge 2.2s infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 216, 0.55);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(230, 57, 216, 0);
            }
        }
        .hero-topic-banner .banner-content {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }
        .hero-topic-banner .banner-content h2 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            color: var(--text-primary);
        }
        .hero-topic-banner .banner-content .banner-excerpt {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }
        .hero-topic-banner .banner-content .banner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hero-topic-banner .banner-content .banner-tags .tag {
            background: rgba(0, 240, 255, 0.1);
            color: var(--highlight);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0, 240, 255, 0.25);
        }
        .hero-topic-banner .banner-content .btn-read-topic {
            align-self: flex-start;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hero-topic-banner .banner-content .btn-read-topic:hover {
            background: var(--accent-hover);
            box-shadow: 0 0 22px rgba(230, 57, 216, 0.5);
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff;
        }
        .hero-topic-banner .banner-content .btn-read-topic i {
            transition: transform var(--transition-fast);
        }
        .hero-topic-banner .banner-content .btn-read-topic:hover i {
            transform: translateX(3px);
        }

        /* ========== 专题卡片网格 ========== */
        .topic-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .topic-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            text-decoration: none;
            color: var(--text-primary);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
        }
        .topic-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            text-decoration: none;
            color: var(--text-primary);
        }
        .topic-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #1A1325;
        }
        .topic-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }
        .topic-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .topic-card .card-img-wrap .card-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--danger);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 3px;
            z-index: 2;
            letter-spacing: 0.5px;
        }
        .topic-card .card-body-content {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .topic-card .card-body-content h3 {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            line-height: 1.35;
            color: var(--text-primary);
        }
        .topic-card .card-body-content .card-desc {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.55;
            margin: 0;
            flex: 1;
        }
        .topic-card .card-body-content .card-mini-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .topic-card .card-body-content .card-mini-tags span {
            font-size: 11px;
            font-weight: 600;
            padding: 2px 9px;
            border-radius: var(--radius-pill);
            background: rgba(230, 57, 216, 0.1);
            color: var(--accent);
            border: 1px solid rgba(230, 57, 216, 0.2);
        }

        /* ========== 板块标题 ========== */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-header h2 {
            margin: 0;
            font-size: 26px;
            font-weight: 700;
            position: relative;
            padding-left: 16px;
            letter-spacing: -0.3px;
        }
        .section-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        .section-header .section-link {
            color: var(--highlight);
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .section-header .section-link:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .section-header .section-link i {
            transition: transform var(--transition-fast);
        }
        .section-header .section-link:hover i {
            transform: translateX(3px);
        }

        /* ========== 资讯列表 ========== */
        .news-list-compact {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
        }
        .news-list-compact .news-item {
            display: flex;
            gap: 16px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border);
            transition: background var(--transition-fast);
            text-decoration: none;
            color: var(--text-primary);
            align-items: flex-start;
        }
        .news-list-compact .news-item:last-child {
            border-bottom: none;
        }
        .news-list-compact .news-item:hover {
            background: var(--bg-card-hover);
            text-decoration: none;
            color: var(--text-primary);
        }
        .news-list-compact .news-thumb {
            width: 80px;
            height: 60px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: #1A1325;
        }
        .news-list-compact .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-list-compact .news-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .news-list-compact .news-info h4 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
            color: var(--text-primary);
        }
        .news-list-compact .news-info .news-meta {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .news-list-compact .news-info .news-meta .news-tag {
            background: rgba(0, 240, 255, 0.1);
            color: var(--highlight);
            font-weight: 600;
            padding: 1px 8px;
            border-radius: 3px;
            font-size: 11px;
        }
        .news-list-compact .news-badge-hot {
            position: relative;
        }
        .news-badge-hot .hot-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--danger);
            border-radius: 50%;
            margin-right: 4px;
            animation: blink-dot 1.4s infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.25;
            }
        }

        /* ========== 数据概览卡片 ========== */
        .data-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .data-mini-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
            cursor: default;
        }
        .data-mini-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .data-mini-card .data-label {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .data-mini-card .data-value {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 6px;
        }
        .data-mini-card .data-trend {
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .data-mini-card .data-trend.up {
            color: var(--success);
        }
        .data-mini-card .data-trend.down {
            color: var(--danger);
        }
        .data-mini-card .data-trend.stable {
            color: var(--highlight);
        }
        .data-mini-card .live-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            margin-right: 6px;
            animation: blink-dot 1.2s infinite;
        }

        /* ========== 热榜 ========== */
        .hot-rank-list {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .hot-rank-list .rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 18px;
            border-bottom: 1px solid var(--border);
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .hot-rank-list .rank-item:last-child {
            border-bottom: none;
        }
        .hot-rank-list .rank-item:hover {
            background: var(--bg-card-hover);
        }
        .hot-rank-list .rank-num {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 20px;
            width: 36px;
            text-align: center;
            flex-shrink: 0;
            color: var(--text-secondary);
        }
        .hot-rank-list .rank-item:nth-child(1) .rank-num {
            color: #FFD700;
        }
        .hot-rank-list .rank-item:nth-child(2) .rank-num {
            color: #C0C0C0;
        }
        .hot-rank-list .rank-item:nth-child(3) .rank-num {
            color: #CD7F32;
        }
        .hot-rank-list .rank-info {
            flex: 1;
            min-width: 0;
        }
        .hot-rank-list .rank-info .rank-title {
            font-weight: 600;
            font-size: 14.5px;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .hot-rank-list .rank-info .rank-sub {
            font-size: 12px;
            color: var(--text-secondary);
        }
        .hot-rank-list .rank-change {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .hot-rank-list .rank-change.up {
            color: var(--success);
        }
        .hot-rank-list .rank-change.down {
            color: var(--danger);
        }

        /* ========== 服务卡片 ========== */
        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
            text-decoration: none;
            color: var(--text-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        .service-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            text-decoration: none;
            color: var(--text-primary);
        }
        .service-card .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(230, 57, 216, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent);
            transition: all var(--transition-smooth);
        }
        .service-card:hover .service-icon {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 24px rgba(230, 57, 216, 0.5);
        }
        .service-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
        }
        .service-card p {
            font-size: 13.5px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========== 用户评价 ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .testimonial-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
        }
        .testimonial-card .testimonial-stars {
            color: #FFB800;
            font-size: 14px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .testimonial-card .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 12px;
            font-style: italic;
        }
        .testimonial-card .testimonial-author {
            font-size: 12.5px;
            color: var(--text-secondary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .testimonial-card .testimonial-author .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--accent);
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-light);
        }
        .faq-item .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-item .faq-question:hover {
            background: rgba(230, 57, 216, 0.04);
        }
        .faq-item .faq-question .faq-q-prefix {
            color: var(--accent);
            font-weight: 800;
            flex-shrink: 0;
            font-size: 17px;
        }
        .faq-item .faq-question .faq-arrow {
            margin-left: auto;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            color: var(--text-secondary);
            font-size: 13px;
        }
        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
            border-left: 3px solid var(--accent);
            margin-left: 20px;
            background: rgba(26, 19, 37, 0.6);
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 14px 20px 16px 20px;
        }
        .faq-item .faq-answer strong {
            color: var(--text-primary);
        }

        /* ========== 生态标签墙 ========== */
        .eco-tags-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .eco-tag-block {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            text-align: center;
            min-width: 140px;
            flex: 0 0 auto;
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .eco-tag-block:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .eco-tag-block .eco-icon {
            font-size: 28px;
            margin-bottom: 8px;
            color: var(--accent);
        }
        .eco-tag-block .eco-label {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .eco-tag-block .eco-desc {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* ========== CTA订阅 ========== */
        .cta-section {
            background: linear-gradient(135deg, #1A1325 0%, #201735 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .cta-section h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 22px;
        }
        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-form input {
            flex: 1;
            min-width: 220px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-pill);
            padding: 12px 20px;
            color: var(--text-primary);
            font-size: 14px;
            transition: all var(--transition-fast);
            outline: none;
        }
        .cta-form input:focus {
            border-color: var(--highlight);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.2);
        }
        .cta-form input::placeholder {
            color: var(--text-secondary);
        }
        .cta-btn {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .cta-btn:hover {
            background: var(--accent-hover);
            box-shadow: 0 0 22px rgba(230, 57, 216, 0.5);
            transform: translateY(-1px);
        }
        .cta-btn:active {
            transform: scale(0.96);
        }
        .cta-trust {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .cta-trust i {
            color: var(--success);
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #0C0814;
            border-top: 1px solid var(--border);
            padding: 36px 0 28px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 2;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            align-items: center;
            margin-bottom: 8px;
        }
        .site-footer .footer-links a,
        .site-footer .footer-links span {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 13px;
        }
        .site-footer .footer-links a:hover {
            color: var(--highlight);
            text-decoration: underline;
        }
        .site-footer .footer-sep {
            color: var(--border);
            margin: 0 4px;
            user-select: none;
        }
        .footer-rss-btn {
            display: inline-block;
            border: 1px solid var(--border);
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            color: var(--text-secondary);
            font-size: 13px;
            transition: all var(--transition-fast);
            text-decoration: none;
            margin: 8px 0;
        }
        .footer-rss-btn:hover {
            border-color: var(--highlight);
            color: var(--highlight);
            text-decoration: none;
            background: rgba(0, 240, 255, 0.04);
        }
        .footer-beian {
            margin-top: 10px;
            font-size: 11.5px;
            color: #6B5E7A;
            line-height: 1.8;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1200px) {
            .topic-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .service-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .data-cards-row {
                grid-template-columns: repeat(3, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 24px;
            }
        }
        @media (max-width: 992px) {
            .hero-topic-banner {
                grid-template-columns: 1fr;
            }
            .hero-topic-banner .banner-img-wrap {
                min-height: 220px;
                max-height: 280px;
            }
            .hero-topic-banner .banner-content h2 {
                font-size: 24px;
            }
            .topic-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .service-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .data-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .section-gap {
                margin-bottom: var(--section-gap-tablet);
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 22px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h2 {
                font-size: 22px;
            }
        }
        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: grid;
            }
            body {
                padding-bottom: 70px;
            }
            .navbar-esports .navbar-collapse {
                background: var(--bg-primary);
                border-radius: var(--radius-md);
                padding: 12px 16px;
                margin-top: 8px;
                border: 1px solid var(--border);
            }
            .topic-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .service-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .data-cards-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .news-list-compact .news-item {
                flex-direction: column;
                gap: 10px;
            }
            .news-list-compact .news-thumb {
                width: 100%;
                height: 140px;
            }
            .section-gap {
                margin-bottom: var(--section-gap-mobile);
            }
            .hero-topic-banner .banner-content {
                padding: 20px 16px;
            }
            .hero-topic-banner .banner-content h2 {
                font-size: 21px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 20px;
            }
            .cta-form {
                flex-direction: column;
                align-items: center;
            }
            .cta-form input {
                width: 100%;
                min-width: auto;
            }
            .eco-tags-wall {
                gap: 8px;
            }
            .eco-tag-block {
                min-width: 100px;
                padding: 12px 14px;
                flex: 1 1 calc(33.33% - 12px);
                min-width: 100px;
            }
            .data-mini-card .data-value {
                font-size: 28px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .section-header h2::before {
                top: 3px;
                bottom: 3px;
                width: 3px;
            }
        }
        @media (max-width: 520px) {
            .topic-cards-grid {
                grid-template-columns: 1fr;
            }
            .service-cards-grid {
                grid-template-columns: 1fr;
            }
            .data-cards-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .eco-tag-block {
                flex: 1 1 calc(50% - 8px);
                min-width: 80px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 19px;
            }
            .hero-topic-banner .banner-content h2 {
                font-size: 19px;
            }
            .data-mini-card {
                padding: 14px 10px;
            }
            .data-mini-card .data-value {
                font-size: 24px;
            }
            .cta-section {
                padding: 24px 14px;
            }
            .cta-section h2 {
                font-size: 19px;
            }
            .hot-rank-list .rank-item {
                padding: 10px 12px;
                gap: 8px;
            }
            .hot-rank-list .rank-num {
                font-size: 16px;
                width: 26px;
            }
            .news-list-compact .news-thumb {
                height: 110px;
            }
            .navbar-esports .navbar-brand {
                font-size: 17px;
                gap: 6px;
            }
            .navbar-esports .navbar-brand img {
                width: 26px;
                height: 26px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #100C1A;
            --bg-card: #1A1325;
            --bg-card-hover: #1F172B;
            --accent: #E639D8;
            --accent-hover: #C720B4;
            --highlight: #00F0FF;
            --success: #0FEB9E;
            --danger: #FF4D6A;
            --text-primary: #E8E3F0;
            --text-secondary: #9B8EAD;
            --border: #2A1F3A;
            --border-light: #352845;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 50px;
            --shadow-card: 0 2px 8px rgba(230, 57, 216, 0.12);
            --shadow-card-hover: 0 6px 28px rgba(0, 240, 255, 0.22);
            --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.45);
            --spacing-xs: 8px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-xxl: 64px;
            --font-mono: 'Roboto Mono', 'DIN Alternate', 'SF Mono', 'Consolas', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
            letter-spacing: 0.01em;
        }

        a {
            color: var(--highlight);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: #5cf5ff;
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 2px;
            border-radius: 2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }
        button:focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 2px;
        }

        input {
            font-family: var(--font-sans);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-top: 0;
        }
        h1 {
            font-size: 40px;
            letter-spacing: -0.5px;
            font-weight: 700;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
        }
        h3 {
            font-size: 18px;
            font-weight: 600;
        }
        h4 {
            font-size: 16px;
            font-weight: 600;
        }

        p {
            margin-bottom: 1em;
        }
        p:last-child {
            margin-bottom: 0;
        }

        /* Container */
        .container {
            max-width: 1320px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Navbar */
        .navbar-esports {
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--accent);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 20px rgba(230, 57, 216, 0.18);
            transition: all var(--transition-normal);
        }
        .navbar-esports .navbar-brand {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 20px;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-esports .navbar-brand img {
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--highlight);
        }
        .navbar-esports .navbar-nav .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 14.5px;
            padding: 8px 16px;
            position: relative;
            transition: color var(--transition-fast);
            border-radius: var(--radius-md);
            white-space: nowrap;
        }
        .navbar-esports .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--highlight);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
            border-radius: 1px;
        }
        .navbar-esports .navbar-nav .nav-link:hover {
            color: var(--highlight);
        }
        .navbar-esports .navbar-nav .nav-link:hover::after {
            transform: scaleX(1);
        }
        .navbar-esports .navbar-nav .nav-link.active {
            color: var(--highlight);
            font-weight: 600;
        }
        .navbar-esports .navbar-nav .nav-link.active::after {
            transform: scaleX(1);
            background: var(--accent);
        }
        .navbar-esports .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 6px 10px;
            background: transparent;
        }
        .navbar-esports .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8E3F0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-esports .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.25);
            border-color: var(--highlight);
        }
        .btn-cta-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: var(--radius-xl);
            border: none;
            text-decoration: none;
            transition: all var(--transition-normal);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .btn-cta-nav:hover {
            background: var(--accent-hover);
            color: #FFFFFF;
            box-shadow: 0 4px 18px rgba(230, 57, 216, 0.4);
            transform: translateY(-1px);
        }

        /* Mobile bottom tab */
        .mobile-bottom-tabs {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 6px 0 env(safe-area-inset-bottom, 6px);
        }
        .mobile-bottom-tabs .tab-list {
            display: flex;
            justify-content: space-around;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mobile-bottom-tabs .tab-list li {
            flex: 1;
            text-align: center;
        }
        .mobile-bottom-tabs .tab-list a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            color: var(--text-secondary);
            font-size: 10px;
            font-weight: 500;
            padding: 4px 0;
            transition: color var(--transition-fast);
            text-decoration: none;
        }
        .mobile-bottom-tabs .tab-list a i {
            font-size: 18px;
            transition: color var(--transition-fast);
        }
        .mobile-bottom-tabs .tab-list a.active {
            color: var(--accent);
        }
        .mobile-bottom-tabs .tab-list a.active i {
            color: var(--accent);
        }
        .mobile-bottom-tabs .tab-list a:hover {
            color: var(--highlight);
        }

        /* Hero banner */
        .hero-category {
            position: relative;
            background: linear-gradient(180deg, rgba(16, 12, 26, 0.7) 0%, rgba(16, 12, 26, 0.92) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 56px 0 48px;
            border-bottom: 1px solid var(--border);
        }
        .hero-category .hero-inner {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-lg);
        }
        .hero-category .hero-top {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: var(--spacing-md);
        }
        .hero-category h1 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
            margin: 0;
            text-shadow: 0 0 40px rgba(230, 57, 216, 0.35);
        }
        .hero-category .hero-subtitle {
            color: var(--text-secondary);
            font-size: 15px;
            margin: 0;
            line-height: 1.6;
            max-width: 600px;
        }
        .hero-category .league-filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .league-filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 7px 16px;
            border-radius: var(--radius-xl);
            font-size: 13px;
            font-weight: 500;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            user-select: none;
        }
        .league-filter-tag:hover {
            border-color: var(--highlight);
            color: var(--highlight);
            background: #1F1A2C;
        }
        .league-filter-tag.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            font-weight: 600;
        }
        .league-filter-tag .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse-dot 1.6s infinite;
            display: inline-block;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(15, 235, 158, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(15, 235, 158, 0);
            }
        }

        /* Live score cards */
        .score-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
        }
        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .score-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            background: #1F172B;
        }
        .score-card .status-badge {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-xl);
            letter-spacing: 0.03em;
            z-index: 1;
        }
        .status-badge.live {
            background: var(--danger);
            color: #fff;
            animation: pulse-bg 2s infinite;
        }
        @keyframes pulse-bg {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.75;
            }
        }
        .status-badge.upcoming {
            background: var(--border-light);
            color: var(--text-secondary);
        }
        .status-badge.finished {
            background: #2A2540;
            color: var(--text-secondary);
        }
        .score-card .match-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .score-card .team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .score-card .team img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
            flex-shrink: 0;
        }
        .score-card .score-display {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -1px;
            color: #fff;
            text-align: center;
            min-width: 64px;
        }
        .score-card .match-info-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .score-card .match-info-row span {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .score-card .mini-chart-placeholder {
            height: 28px;
            background: linear-gradient(90deg, rgba(0, 240, 255, 0.08) 0%, rgba(230, 57, 216, 0.12) 50%, rgba(15, 235, 158, 0.08) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            padding: 0 8px;
            font-size: 10px;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
        }

        /* Section */
        .section-block {
            padding: var(--spacing-xxl) 0;
        }
        .section-block.alt-bg {
            background: #0E0A18;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title .title-icon {
            color: var(--accent);
            font-size: 22px;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: var(--spacing-lg);
        }

        /* Hot rank */
        .hot-rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        .hot-rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            font-size: 14px;
            cursor: pointer;
        }
        .hot-rank-item:hover {
            border-color: var(--highlight);
            background: #1F172B;
        }
        .hot-rank-item .rank-num {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 18px;
            color: var(--accent);
            min-width: 28px;
            text-align: center;
        }
        .hot-rank-item .rank-num.top {
            color: #FFD700;
        }
        .hot-rank-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .hot-rank-item .rank-name {
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hot-rank-item .rank-sub {
            font-size: 11px;
            color: var(--text-secondary);
        }
        .hot-rank-item .rank-change {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 13px;
            white-space: nowrap;
        }
        .rank-change.up {
            color: var(--success);
        }
        .rank-change.down {
            color: var(--danger);
        }
        .rank-change.stable {
            color: var(--text-secondary);
        }

        /* News list */
        .news-list-card {
            display: flex;
            gap: 14px;
            padding: 14px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: all var(--transition-normal);
            cursor: pointer;
            margin-bottom: 10px;
        }
        .news-list-card:hover {
            border-color: var(--highlight);
            background: #1F172B;
            box-shadow: var(--shadow-card-hover);
        }
        .news-list-card .news-thumb {
            width: 80px;
            height: 64px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--border-light);
        }
        .news-list-card .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-card .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-card .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }
        .news-list-card .news-meta {
            font-size: 11px;
            color: var(--text-secondary);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .news-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 2px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .news-badge.hot {
            background: var(--danger);
            color: #fff;
        }
        .news-badge.new {
            background: var(--highlight);
            color: #000;
        }
        .news-badge.rec {
            background: var(--accent);
            color: #fff;
        }

        /* Topic cards */
        .topic-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .topic-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .topic-card .topic-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: var(--border-light);
        }
        .topic-card .topic-body {
            padding: 16px;
            flex: 1;
        }
        .topic-card .topic-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .topic-card .topic-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .topic-card .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .topic-tag {
            font-size: 11px;
            padding: 3px 9px;
            border-radius: var(--radius-xl);
            background: rgba(230, 57, 216, 0.15);
            color: var(--accent);
            border: 1px solid rgba(230, 57, 216, 0.3);
            white-space: nowrap;
        }

        /* Service cards */
        .service-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--border);
            transition: all var(--transition-normal);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            cursor: pointer;
        }
        .service-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
            background: #1F172B;
        }
        .service-card .svc-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(230, 57, 216, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .service-card .svc-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
            color: var(--text-primary);
        }
        .service-card .svc-info p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* FAQ */
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--highlight);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all var(--transition-fast);
            line-height: 1.5;
        }
        .faq-question:hover {
            color: var(--highlight);
        }
        .faq-question .q-prefix {
            color: var(--accent);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .faq-answer {
            padding: 0 20px 16px 20px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
            border-left: 3px solid var(--accent);
            margin-left: 20px;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question {
            color: var(--highlight);
        }
        .faq-arrow {
            transition: transform var(--transition-normal);
            color: var(--text-secondary);
            font-size: 14px;
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }

        /* User reviews */
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--highlight);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-stars {
            color: #FFD700;
            font-size: 14px;
            letter-spacing: 2px;
        }
        .review-card .review-text {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.6;
            flex: 1;
        }
        .review-card .review-author {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Ecosystem tags */
        .eco-tag-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .eco-tag-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 10px 16px;
            font-size: 13px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .eco-tag-item:hover {
            border-color: var(--highlight);
            color: var(--highlight);
            background: #1F172B;
        }
        .eco-tag-item i {
            color: var(--accent);
            font-size: 14px;
        }

        /* CTA form */
        .cta-section {
            background: linear-gradient(135deg, rgba(230, 57, 216, 0.08) 0%, rgba(0, 240, 255, 0.05) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            text-align: center;
        }
        .cta-section h3 {
            font-size: 22px;
            margin-bottom: 6px;
            color: #fff;
        }
        .cta-section .cta-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text-primary);
            font-size: 14px;
            transition: all var(--transition-fast);
        }
        .cta-form input:focus {
            outline: none;
            border-color: var(--highlight);
            box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.12);
            background: #1F172B;
        }
        .cta-form input::placeholder {
            color: var(--text-secondary);
        }
        .cta-btn {
            padding: 12px 28px;
            border-radius: var(--radius-xl);
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .cta-btn:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 20px rgba(230, 57, 216, 0.45);
            transform: translateY(-1px);
        }
        .cta-trust {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .cta-trust i {
            color: var(--success);
            font-size: 12px;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 32px 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        .site-footer .footer-links a,
        .site-footer .footer-links span {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .site-footer .footer-links a:hover {
            color: var(--highlight);
        }
        .footer-sep {
            color: var(--border);
        }
        .footer-rss-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            color: var(--text-secondary);
            font-size: 13px;
            transition: all var(--transition-fast);
            text-decoration: none;
            margin-bottom: 10px;
        }
        .footer-rss-btn:hover {
            border-color: var(--highlight);
            color: var(--highlight);
        }
        .footer-beian {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 10px;
        }
        .footer-beian p {
            margin: 2px 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 24px;
            }
            .section-block {
                padding: var(--spacing-xl) 0;
            }
        }
        @media (max-width: 992px) {
            .score-card-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hot-rank-list {
                grid-template-columns: 1fr;
            }
            .hero-category h1 {
                font-size: 28px;
            }
            .section-title {
                font-size: 22px;
            }
            .service-card {
                flex-direction: column;
            }
        }
        @media (max-width: 768px) {
            body {
                font-size: 14px;
                padding-bottom: 70px;
            }
            h1 {
                font-size: 26px;
                letter-spacing: -0.3px;
            }
            h2 {
                font-size: 21px;
            }
            .hero-category {
                padding: 36px 0 28px;
            }
            .hero-category h1 {
                font-size: 24px;
            }
            .score-card-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .score-card .score-display {
                font-size: 22px;
            }
            .section-block {
                padding: var(--spacing-lg) 0;
            }
            .news-list-card {
                flex-direction: column;
                gap: 8px;
            }
            .news-list-card .news-thumb {
                width: 100%;
                height: 140px;
            }
            .topic-card .topic-img {
                aspect-ratio: 16/9;
            }
            .cta-section {
                padding: 24px 16px;
            }
            .cta-form {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-form input {
                min-width: auto;
            }
            .navbar-esports .navbar-collapse {
                background: var(--bg-primary);
                border-radius: var(--radius-md);
                padding: 12px;
                margin-top: 8px;
                border: 1px solid var(--border);
            }
            .mobile-bottom-tabs {
                display: block;
            }
            .site-footer {
                padding-bottom: 80px;
            }
            .league-filter-tags {
                gap: 5px;
            }
            .league-filter-tag {
                padding: 5px 10px;
                font-size: 11px;
            }
        }
        @media (max-width: 520px) {
            .hero-category h1 {
                font-size: 22px;
            }
            .score-card {
                padding: 12px;
            }
            .score-card .team {
                font-size: 12px;
            }
            .score-card .team img {
                width: 24px;
                height: 24px;
            }
            .score-card .score-display {
                font-size: 20px;
                min-width: 48px;
            }
            .hot-rank-item {
                padding: 8px 10px;
                font-size: 12px;
            }
            .service-card {
                padding: 16px;
            }
            .review-card {
                padding: 14px;
            }
            .eco-tag-wall {
                gap: 6px;
            }
            .eco-tag-item {
                padding: 8px 10px;
                font-size: 12px;
            }
        }

        @media (min-width: 769px) {
            .mobile-bottom-tabs {
                display: none !important;
            }
        }

/* roulang page: category3 */
:root {
            --color-bg: #100C1A;
            --color-card: #1A1325;
            --color-card-hover: #1F172B;
            --color-accent: #E639D8;
            --color-accent-hover: #C720B4;
            --color-glow: #00F0FF;
            --color-success: #0FEB9E;
            --color-danger: #FF4D6A;
            --color-text: #E8E3F0;
            --color-text-muted: #9B8EAD;
            --color-border: #2A1F3A;
            --color-border-light: #352844;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-btn: 50px;
            --radius-btn-alt: 8px;
            --shadow-card: 0 2px 8px rgba(230, 57, 216, 0.15);
            --shadow-card-lg: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 6px 28px rgba(0, 240, 255, 0.25);
            --shadow-accent: 0 4px 16px rgba(230, 57, 216, 0.3);
            --spacing-xs: 8px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-2xl: 64px;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Roboto Mono', 'DIN Alternate', 'Consolas', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            padding-top: 64px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }
        input {
            font-family: var(--font-sans);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            line-height: 1.3;
            color: var(--color-text);
        }
        h1 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
        }
        h3 {
            font-size: 18px;
            font-weight: 600;
        }
        h4 {
            font-size: 16px;
            font-weight: 600;
        }
        p {
            margin-top: 0;
            margin-bottom: 1.2em;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 16px;
            padding-right: 16px;
        }
        @media(min-width:1200px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        /* ========== NAVBAR ========== */
        .navbar-esports {
            background-color: var(--color-bg);
            border-bottom: 1px solid var(--color-accent);
            box-shadow: 0 1px 16px rgba(230, 57, 216, 0.2);
            padding: 0;
            min-height: 64px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
        }
        .navbar-esports .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
        }
        .navbar-esports .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--color-text);
            letter-spacing: -0.3px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .navbar-esports .navbar-brand img {
            border-radius: 6px;
            width: 32px;
            height: 32px;
            object-fit: cover;
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--color-glow);
        }
        .navbar-esports .nav-link {
            color: var(--color-text);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .navbar-esports .nav-link:hover {
            color: var(--color-glow);
            background-color: rgba(0, 240, 255, 0.05);
        }
        .navbar-esports .nav-link.active {
            color: var(--color-accent);
            font-weight: 600;
        }
        .navbar-esports .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background-color: var(--color-accent);
            border-radius: 2px;
            animation: navUnderlineIn 0.3s ease;
        }
        @keyframes navUnderlineIn {
            from {
                transform: scaleX(0);
                opacity: 0;
            }
            to {
                transform: scaleX(1);
                opacity: 1;
            }
        }
        .btn-cta-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            background: var(--color-accent);
            color: #fff;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-accent);
        }
        .btn-cta-nav:hover {
            background: var(--color-accent-hover);
            color: #fff;
            box-shadow: 0 6px 24px rgba(230, 57, 216, 0.45);
            transform: translateY(-1px);
        }
        .navbar-toggler {
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 6px 10px;
            background: transparent;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E8E3F0' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.3);
            outline: none;
        }
        @media(max-width:991px) {
            .navbar-esports .navbar-collapse {
                background: var(--color-bg);
                border-top: 1px solid var(--color-border);
                padding: 12px 0;
                margin-top: 2px;
            }
            .navbar-esports .nav-link {
                padding: 10px 16px;
                font-size: 15px;
            }
            .btn-cta-nav {
                margin: 8px 16px;
            }
        }

        /* ========== MOBILE BOTTOM TAB ========== */
        .mobile-bottom-tab {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-bg);
            border-top: 1px solid var(--color-accent);
            z-index: 1051;
            padding: 6px 0;
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.5);
        }
        .mobile-bottom-tab .tab-list {
            display: flex;
            justify-content: space-around;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mobile-bottom-tab .tab-list a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: var(--color-text-muted);
            font-size: 10px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all var(--transition-fast);
            text-decoration: none;
            min-width: 48px;
        }
        .mobile-bottom-tab .tab-list a i {
            font-size: 18px;
            transition: all var(--transition-fast);
        }
        .mobile-bottom-tab .tab-list a.active {
            color: var(--color-accent);
        }
        .mobile-bottom-tab .tab-list a.active i {
            color: var(--color-accent);
            filter: drop-shadow(0 0 6px rgba(230, 57, 216, 0.6));
        }
        .mobile-bottom-tab .tab-list a:hover {
            color: var(--color-glow);
        }
        @media(max-width:991px) {
            .mobile-bottom-tab {
                display: block;
            }
            body {
                padding-bottom: 70px;
            }
        }

        /* ========== SECTION SPACING ========== */
        .section-padding {
            padding-top: var(--spacing-2xl);
            padding-bottom: var(--spacing-2xl);
        }
        @media(max-width:991px) {
            .section-padding {
                padding-top: var(--spacing-xl);
                padding-bottom: var(--spacing-xl);
            }
        }
        @media(max-width:575px) {
            .section-padding {
                padding-top: var(--spacing-lg);
                padding-bottom: var(--spacing-lg);
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            body {
                font-size: 14px;
                line-height: 1.6;
            }
        }

        /* ========== SECTION TITLE ========== */
        .section-title {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section-title h2 {
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 3px;
        }
        .section-title .subtitle {
            color: var(--color-text-muted);
            font-size: 15px;
            margin-top: 12px;
        }

        /* ========== HERO BANNER ========== */
        .hero-topic-banner {
            position: relative;
            background: var(--color-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card-lg);
            transition: all var(--transition-slow);
            margin-bottom: var(--spacing-xl);
        }
        .hero-topic-banner:hover {
            box-shadow: var(--shadow-glow);
            border-color: rgba(0, 240, 255, 0.3);
        }
        .hero-topic-banner .banner-img {
            flex: 0 0 48%;
            min-height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-topic-banner .banner-img .live-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--color-danger);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            animation: livePulse 1.6s infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .hero-topic-banner .banner-content {
            flex: 1;
            padding: var(--spacing-xl);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 280px;
        }
        .hero-topic-banner .banner-content .topic-tag {
            display: inline-block;
            background: var(--color-accent);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
            width: fit-content;
        }
        .hero-topic-banner .banner-content h1 {
            font-size: 36px;
            margin-bottom: 8px;
        }
        .hero-topic-banner .banner-content .banner-desc {
            color: var(--color-text-muted);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .hero-topic-banner .banner-content .btn-read {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: transparent;
            border: 2px solid var(--color-glow);
            color: var(--color-glow);
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition-normal);
            width: fit-content;
        }
        .hero-topic-banner .banner-content .btn-read:hover {
            background: var(--color-glow);
            color: #100C1A;
            box-shadow: var(--shadow-glow);
        }
        @media(max-width:767px) {
            .hero-topic-banner .banner-img {
                flex: 0 0 100%;
                min-height: 200px;
            }
            .hero-topic-banner .banner-content h1 {
                font-size: 26px;
            }
            .hero-topic-banner .banner-content {
                padding: var(--spacing-md);
            }
        }

        /* ========== TOPIC CARDS GRID ========== */
        .topic-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        @media(max-width:991px) {
            .topic-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:575px) {
            .topic-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .topic-card {
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card-lg);
            transition: all var(--transition-slow);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-glow);
            border-color: rgba(0, 240, 255, 0.35);
            transform: translateY(-3px);
        }
        .topic-card .card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
            background-color: #1F172B;
        }
        .topic-card .card-body {
            padding: var(--spacing-md);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .topic-card .card-body .card-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(230, 57, 216, 0.2);
            color: var(--color-accent);
            margin-bottom: 8px;
            width: fit-content;
            letter-spacing: 0.3px;
        }
        .topic-card .card-body h3 {
            font-size: 17px;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .topic-card .card-body .card-desc {
            color: var(--color-text-muted);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 0;
            flex: 1;
        }

        /* ========== NEWS LIST ========== */
        .news-list-item {
            display: flex;
            gap: var(--spacing-md);
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid var(--color-border);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .news-list-item:hover {
            background: var(--color-card-hover);
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: 8px;
        }
        .news-list-item .news-thumb {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border-radius: 8px;
            object-fit: cover;
            background-color: #1F172B;
        }
        .news-list-item .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .news-content h4 {
            font-size: 15px;
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .news-list-item .news-content .news-meta {
            font-size: 12px;
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }
        .news-list-item .news-content .news-summary {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .news-content .read-more {
            font-size: 12px;
            color: var(--color-glow);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-fast);
            margin-top: 4px;
        }
        .news-list-item .news-content .read-more:hover {
            gap: 8px;
            color: #fff;
        }
        @media(max-width:575px) {
            .news-list-item .news-thumb {
                width: 60px;
                height: 60px;
            }
            .news-list-item .news-content h4 {
                font-size: 14px;
            }
        }

        /* ========== DATA CARDS ROW ========== */
        .data-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-sm);
        }
        @media(max-width:991px) {
            .data-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:575px) {
            .data-cards-row {
                grid-template-columns: 1fr 1fr;
            }
        }
        .data-mini-card {
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .data-mini-card:hover {
            border-color: rgba(0, 240, 255, 0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .data-mini-card .data-label {
            font-size: 12px;
            color: var(--color-text-muted);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .data-mini-card .data-value {
            font-family: var(--font-mono);
            font-size: 34px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--color-text);
            line-height: 1;
        }
        .data-mini-card .data-trend {
            font-size: 12px;
            font-weight: 600;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .data-mini-card .data-trend.up {
            color: var(--color-success);
        }
        .data-mini-card .data-trend.down {
            color: var(--color-danger);
        }

        /* ========== HOT RANK LIST ========== */
        .hot-rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        @media(max-width:767px) {
            .hot-rank-list {
                grid-template-columns: 1fr;
            }
        }
        .hot-rank-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hot-rank-list li:hover {
            border-color: var(--color-glow);
            background: var(--color-card-hover);
        }
        .hot-rank-list .rank-num {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 20px;
            color: var(--color-accent);
            min-width: 32px;
            text-align: center;
        }
        .hot-rank-list .rank-info {
            flex: 1;
            min-width: 0;
        }
        .hot-rank-list .rank-name {
            font-weight: 600;
            font-size: 14px;
        }
        .hot-rank-list .rank-stat {
            font-size: 12px;
            color: var(--color-text-muted);
        }
        .hot-rank-list .rank-change {
            font-weight: 700;
            font-size: 13px;
            font-family: var(--font-mono);
        }

        /* ========== SERVICE CARDS ========== */
        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        @media(max-width:991px) {
            .service-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:575px) {
            .service-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .service-card {
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: var(--spacing-xl) var(--spacing-md);
            text-align: center;
            box-shadow: var(--shadow-card-lg);
            transition: all var(--transition-slow);
            cursor: pointer;
        }
        .service-card:hover {
            box-shadow: var(--shadow-glow);
            border-color: rgba(0, 240, 255, 0.35);
            transform: translateY(-3px);
        }
        .service-card .service-icon {
            font-size: 38px;
            color: var(--color-accent);
            margin-bottom: 12px;
            display: block;
        }
        .service-card h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }
        .service-card p {
            font-size: 13px;
            color: var(--color-text-muted);
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        @media(max-width:991px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:575px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }
        .testimonial-card {
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: var(--spacing-xl);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
        }
        .testimonial-card:hover {
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: var(--shadow-glow);
        }
        .testimonial-card .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-text);
            margin-bottom: 12px;
            font-style: italic;
        }
        .testimonial-card .testimonial-author {
            font-size: 12px;
            color: var(--color-accent);
            font-weight: 600;
        }
        .testimonial-card .testimonial-role {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        /* ========== FAQ ========== */
        .faq-list .faq-item {
            border-bottom: 1px solid var(--color-border);
            padding: 0;
        }
        .faq-list .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--color-text);
            font-size: 15px;
            font-weight: 600;
            padding: 18px 0;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all var(--transition-fast);
            font-family: var(--font-sans);
            line-height: 1.5;
        }
        .faq-list .faq-question:hover {
            color: var(--color-glow);
        }
        .faq-list .faq-question .faq-q-prefix {
            color: var(--color-accent);
            font-weight: 800;
            font-size: 18px;
            flex-shrink: 0;
        }
        .faq-list .faq-question .faq-arrow {
            margin-left: auto;
            transition: transform var(--transition-normal);
            font-size: 14px;
            color: var(--color-text-muted);
            flex-shrink: 0;
        }
        .faq-list .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--color-accent);
        }
        .faq-list .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            background: var(--color-card);
            border-left: 3px solid var(--color-accent);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0;
            padding: 0 16px;
        }
        .faq-list .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 16px;
            margin-bottom: 8px;
        }
        .faq-list .faq-answer p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-text-muted);
            margin-bottom: 0;
        }
        .faq-list .faq-answer p strong {
            color: var(--color-text);
        }

        /* ========== ECO TAGS ========== */
        .eco-tags-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .eco-tag {
            background: var(--color-card);
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 10px 18px;
            font-size: 13px;
            color: var(--color-text);
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }
        .eco-tag:hover {
            border-color: var(--color-accent);
            background: rgba(230, 57, 216, 0.1);
            color: var(--color-accent);
            box-shadow: var(--shadow-accent);
        }

        /* ========== CTA SUBSCRIBE ========== */
        .cta-subscribe-box {
            background: var(--color-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-lg);
            padding: var(--spacing-2xl);
            text-align: center;
            box-shadow: var(--shadow-card-lg);
            position: relative;
            overflow: hidden;
        }
        .cta-subscribe-box::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(230, 57, 216, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-subscribe-box h2 {
            position: relative;
            z-index: 1;
        }
        .cta-subscribe-box .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-subscribe-box .subscribe-form input {
            flex: 1;
            min-width: 220px;
            padding: 14px 18px;
            background: var(--color-bg);
            border: 2px solid var(--color-border);
            border-radius: var(--radius-btn);
            color: var(--color-text);
            font-size: 15px;
            transition: all var(--transition-normal);
            outline: none;
        }
        .cta-subscribe-box .subscribe-form input:focus {
            border-color: var(--color-glow);
            box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
        }
        .cta-subscribe-box .subscribe-form input::placeholder {
            color: var(--color-text-muted);
        }
        .btn-submit-glow {
            padding: 14px 28px;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-accent);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .btn-submit-glow:hover {
            background: var(--color-accent-hover);
            box-shadow: 0 6px 28px rgba(230, 57, 216, 0.5);
            transform: translateY(-2px);
        }
        .trust-signal {
            margin-top: 14px;
            font-size: 12px;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            position: relative;
            z-index: 1;
        }
        .trust-signal i {
            color: var(--color-success);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-bg);
            border-top: 1px solid var(--color-border);
            padding: var(--spacing-xl) 0;
            text-align: center;
            color: var(--color-text-muted);
            font-size: 13px;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 16px;
            margin-bottom: 10px;
            align-items: center;
        }
        .site-footer .footer-links a,
        .site-footer .footer-links span {
            color: var(--color-text-muted);
            font-size: 13px;
        }
        .site-footer .footer-links a:hover {
            color: var(--color-glow);
        }
        .footer-sep {
            color: var(--color-border);
            user-select: none;
        }
        .footer-rss-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 20px;
            border: 1px solid var(--color-border-light);
            border-radius: 24px;
            color: var(--color-text-muted);
            font-size: 13px;
            transition: all var(--transition-fast);
            margin-bottom: 10px;
        }
        .footer-rss-btn:hover {
            border-color: var(--color-glow);
            color: var(--color-glow);
        }
        .footer-beian p {
            margin: 2px 0;
            font-size: 12px;
            color: var(--color-text-muted);
        }

        /* Utility */
        .highlight-num {
            font-family: var(--font-mono);
            font-weight: 800;
            color: var(--color-glow);
        }
        .text-accent {
            color: var(--color-accent);
        }
        .badge-new {
            background: var(--color-danger);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            margin-left: 4px;
            vertical-align: middle;
        }
        .badge-hot {
            background: #FF8C00;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            margin-left: 4px;
            vertical-align: middle;
        }
        .badge-rec {
            background: var(--color-glow);
            color: #100C1A;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            margin-left: 4px;
            vertical-align: middle;
        }

/* roulang page: category4 */
:root {
            --bg-primary: #100C1A;
            --bg-card: #1A1325;
            --bg-card-hover: #1F172B;
            --accent-magenta: #E639D8;
            --accent-magenta-hover: #C720B4;
            --accent-cyan: #00F0FF;
            --accent-green: #0FEB9E;
            --accent-red: #FF4D6A;
            --text-primary: #E8E3F0;
            --text-secondary: #9B8EAD;
            --border-color: #2A1F3A;
            --border-glow: rgba(230, 57, 216, 0.3);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 50px;
            --shadow-card: 0 2px 10px rgba(230, 57, 216, 0.12);
            --shadow-card-hover: 0 6px 28px rgba(0, 240, 255, 0.22);
            --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.45);
            --font-mono: 'SF Mono', 'Roboto Mono', 'DIN Alternate', 'Menlo', 'Consolas', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --section-gap: 64px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --container-max: 1320px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.2s ease, text-decoration 0.2s ease;
        }
        a:hover {
            color: var(--accent-magenta);
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-sans);
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }

        input {
            font-family: var(--font-sans);
        }
        input:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 1px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.35;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 0;
        }
        h1 {
            font-size: 40px;
            letter-spacing: -0.5px;
            font-weight: 700;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 18px;
            font-weight: 600;
        }
        h4 {
            font-size: 16px;
            font-weight: 600;
        }

        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1200px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        /* ===== NAVBAR ===== */
        .navbar-esports {
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--accent-magenta);
            padding-top: 10px;
            padding-bottom: 10px;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 12px rgba(230, 57, 216, 0.18);
        }
        .navbar-esports .navbar-brand {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: -0.3px;
            transition: color 0.2s;
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--accent-cyan);
            text-decoration: none;
        }
        .navbar-esports .navbar-brand img {
            border-radius: 6px;
            flex-shrink: 0;
        }
        .navbar-esports .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 14px;
            border-radius: 6px;
            transition: color 0.2s, background-color 0.2s;
            position: relative;
        }
        .navbar-esports .nav-link:hover {
            color: var(--accent-cyan);
            background-color: rgba(0, 240, 255, 0.06);
        }
        .navbar-esports .nav-link.active {
            color: var(--accent-cyan);
            background-color: rgba(0, 240, 255, 0.08);
        }
        .navbar-esports .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
        }
        .btn-cta-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-magenta);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 20px;
            border-radius: var(--radius-xl);
            border: none;
            transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-cta-nav:hover {
            background: var(--accent-magenta-hover);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 4px 18px rgba(230, 57, 216, 0.4);
            transform: translateY(-1px);
        }
        .navbar-esports .navbar-toggler {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 6px 10px;
            background: var(--bg-card);
        }
        .navbar-esports .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8E3F0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ===== MOBILE BOTTOM TAB ===== */
        .mobile-bottom-tab {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 6px 0 env(safe-area-inset-bottom, 6px) 0;
            box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.5);
        }
        .mobile-bottom-tab .tab-row {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .mobile-bottom-tab .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: var(--text-secondary);
            font-size: 10px;
            font-weight: 500;
            text-decoration: none;
            padding: 4px 8px;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
            min-width: 48px;
        }
        .mobile-bottom-tab .tab-item i {
            font-size: 18px;
            transition: color 0.2s;
        }
        .mobile-bottom-tab .tab-item.active {
            color: var(--accent-magenta);
            background: rgba(230, 57, 216, 0.08);
        }
        .mobile-bottom-tab .tab-item:hover {
            color: var(--accent-cyan);
            text-decoration: none;
        }

        @media (max-width: 991.98px) {
            .mobile-bottom-tab {
                display: block;
            }
            body {
                padding-bottom: 70px;
            }
        }

        /* ===== SECTION SPACING ===== */
        .section {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }
        @media (max-width: 991.98px) {
            .section {
                padding-top: var(--section-gap-md);
                padding-bottom: var(--section-gap-md);
            }
        }
        @media (max-width: 575.98px) {
            .section {
                padding-top: var(--section-gap-sm);
                padding-bottom: var(--section-gap-sm);
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 21px;
            }
            h3 {
                font-size: 16px;
            }
            body {
                font-size: 14px;
                line-height: 1.6;
            }
        }

        /* ===== SECTION HEADER ===== */
        .section-header {
            margin-bottom: 32px;
            position: relative;
        }
        .section-header h2 {
            margin-bottom: 6px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-magenta);
            border-radius: 3px;
        }
        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 14px;
            margin-top: 8px;
        }

        /* ===== TAG PILLS ===== */
        .tag-pill {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }
        .tag-pill:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 240, 255, 0.06);
            text-decoration: none;
        }
        .tag-pill.active-tag {
            background: var(--accent-magenta);
            color: #fff;
            border-color: var(--accent-magenta);
        }
        .tag-pill.tag-hot {
            border-color: var(--accent-red);
            color: var(--accent-red);
        }
        .tag-pill.tag-new {
            border-color: var(--accent-green);
            color: var(--accent-green);
        }

        /* ===== BADGE CORNER ===== */
        .badge-corner {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 5;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .badge-corner.badge-hot {
            background: var(--accent-red);
            color: #fff;
        }
        .badge-corner.badge-new {
            background: var(--accent-green);
            color: #000;
        }
        .badge-corner.badge-featured {
            background: var(--accent-magenta);
            color: #fff;
        }

        /* ===== HERO NEWS AREA ===== */
        .hero-news-area {
            padding-top: 32px;
            padding-bottom: 24px;
            background: linear-gradient(180deg, rgba(26, 19, 37, 0.8) 0%, var(--bg-primary) 100%);
        }
        .hero-news-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            gap: 24px;
            align-items: start;
        }
        @media (max-width: 991.98px) {
            .hero-news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .hero-headline-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: box-shadow 0.3s, border-color 0.3s;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .hero-headline-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.35);
            text-decoration: none;
            color: inherit;
        }
        .hero-headline-card .headline-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }
        .hero-headline-card .headline-body {
            padding: 18px 20px;
        }
        .hero-headline-card .headline-body h3 {
            font-size: 20px;
            margin-bottom: 8px;
            line-height: 1.4;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .hero-headline-card:hover .headline-body h3 {
            color: var(--accent-cyan);
        }
        .hero-headline-card .headline-body .headline-excerpt {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hero-headline-card .headline-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }
        .hero-headline-card .headline-meta .meta-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-magenta);
            flex-shrink: 0;
        }
        .hero-side-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hero-side-item {
            display: flex;
            gap: 12px;
            padding: 10px 12px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid transparent;
            transition: all 0.25s;
            text-decoration: none;
            color: inherit;
            align-items: flex-start;
        }
        .hero-side-item:hover {
            border-color: var(--border-color);
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card);
            text-decoration: none;
            color: inherit;
        }
        .hero-side-item .side-thumb {
            width: 56px;
            height: 56px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .hero-side-item .side-info {
            flex: 1;
            min-width: 0;
        }
        .hero-side-item .side-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
            line-height: 1.4;
            color: var(--text-primary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s;
        }
        .hero-side-item:hover .side-info h4 {
            color: var(--accent-cyan);
        }
        .hero-side-item .side-info .side-date {
            font-size: 11px;
            color: var(--text-secondary);
        }

        /* ===== NEWS LIST CARD ===== */
        .news-list-card {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            transition: background 0.2s;
            text-decoration: none;
            color: inherit;
            align-items: flex-start;
        }
        .news-list-card:hover {
            background: rgba(26, 19, 37, 0.5);
            margin: 0 -12px;
            padding: 14px 12px;
            border-radius: 8px;
            text-decoration: none;
            color: inherit;
        }
        .news-list-card:last-child {
            border-bottom: none;
        }
        .news-list-card .nl-thumb {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-list-card .nl-body {
            flex: 1;
            min-width: 0;
        }
        .news-list-card .nl-body h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.4;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .news-list-card:hover .nl-body h4 {
            color: var(--accent-cyan);
        }
        .news-list-card .nl-body .nl-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .news-list-card .nl-body .nl-meta {
            font-size: 11px;
            color: var(--text-secondary);
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ===== RANKING LIST ===== */
        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        @media (max-width: 767.98px) {
            .ranking-list {
                grid-template-columns: 1fr;
            }
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: all 0.2s;
            text-decoration: none;
            color: inherit;
        }
        .ranking-item:hover {
            border-color: var(--border-color);
            box-shadow: var(--shadow-card);
            text-decoration: none;
            color: inherit;
        }
        .ranking-item .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
            background: var(--border-color);
            color: var(--text-secondary);
        }
        .ranking-item .rank-num.rank-top {
            background: var(--accent-magenta);
            color: #fff;
        }
        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .rank-info .rank-title {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-item .rank-info .rank-sub {
            font-size: 11px;
            color: var(--text-secondary);
        }
        .ranking-item .rank-value {
            font-weight: 700;
            font-size: 14px;
            font-family: var(--font-mono);
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .ranking-item .rank-trend-up {
            color: var(--accent-green);
            font-size: 12px;
            margin-left: 2px;
        }
        .ranking-item .rank-trend-down {
            color: var(--accent-red);
            font-size: 12px;
            margin-left: 2px;
        }

        /* ===== TOPIC CARD ===== */
        .topic-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            display: block;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.3);
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }
        .topic-card .topic-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .topic-card .topic-body {
            padding: 16px 18px;
        }
        .topic-card .topic-body h4 {
            font-size: 16px;
            margin-bottom: 6px;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .topic-card:hover .topic-body h4 {
            color: var(--accent-cyan);
        }
        .topic-card .topic-body .topic-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .topic-card .topic-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .topic-card .topic-tag {
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(0, 240, 255, 0.08);
            color: var(--accent-cyan);
            font-weight: 500;
        }

        /* ===== DATA STAT CARD ===== */
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 16px 18px;
            text-align: center;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            border-color: rgba(0, 240, 255, 0.35);
            box-shadow: 0 3px 16px rgba(0, 240, 255, 0.12);
            transform: translateY(-1px);
        }
        .stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
            font-weight: 500;
        }
        .stat-card .stat-trend {
            font-size: 12px;
            margin-top: 6px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .stat-trend-up {
            color: var(--accent-green);
        }
        .stat-trend-down {
            color: var(--accent-red);
        }
        .stat-card .stat-icon-mini {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 18px;
            color: var(--text-secondary);
            opacity: 0.5;
        }

        /* ===== EDITOR PICK CARD ===== */
        .editor-pick-card {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            padding: 16px;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            align-items: flex-start;
        }
        .editor-pick-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.3);
            text-decoration: none;
            color: inherit;
            transform: translateY(-1px);
        }
        .editor-pick-card .ep-thumb {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .editor-pick-card .ep-body h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .editor-pick-card:hover .ep-body h4 {
            color: var(--accent-cyan);
        }
        .editor-pick-card .ep-body .ep-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 6px;
        }
        @media (max-width: 575.98px) {
            .editor-pick-card {
                flex-direction: column;
            }
            .editor-pick-card .ep-thumb {
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9;
            }
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all 0.2s;
        }
        .faq-item:hover {
            border-color: rgba(230, 57, 216, 0.35);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1.4;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-question .faq-q-prefix {
            color: var(--accent-magenta);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .faq-question .faq-arrow {
            margin-left: auto;
            transition: transform 0.3s;
            color: var(--text-secondary);
            font-size: 13px;
        }
        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            background: rgba(26, 19, 37, 0.6);
            border-left: 3px solid var(--accent-magenta);
            margin-left: 18px;
            margin-right: 18px;
            border-radius: 0 6px 6px 0;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 14px 16px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .faq-answer-inner strong {
            color: var(--text-primary);
        }

        /* ===== TESTIMONIAL ===== */
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: all 0.25s;
            height: 100%;
            position: relative;
        }
        .testimonial-card:hover {
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: var(--shadow-card);
        }
        .testimonial-card .test-quote {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-primary);
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }
        .testimonial-card .test-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -4px;
            font-size: 28px;
            color: var(--accent-magenta);
            font-weight: 700;
            line-height: 1;
        }
        .testimonial-card .test-author {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .testimonial-card .test-author .test-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--accent-cyan);
        }

        /* ===== SUBSCRIBE ===== */
        .subscribe-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .subscribe-box::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(230, 57, 216, 0.08);
            pointer-events: none;
        }
        .subscribe-input-group {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .subscribe-input {
            flex: 1;
            min-width: 220px;
            padding: 12px 16px;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 14px;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .subscribe-input:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
        }
        .btn-subscribe {
            padding: 12px 28px;
            border-radius: var(--radius-xl);
            background: var(--accent-magenta);
            color: #fff;
            font-weight: 600;
            border: none;
            font-size: 14px;
            transition: all 0.25s;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-subscribe:hover {
            background: var(--accent-magenta-hover);
            box-shadow: 0 4px 20px rgba(230, 57, 216, 0.4);
            transform: translateY(-1px);
        }
        .trust-signal {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* ===== COLUMN NAV GRID ===== */
        .column-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 991.98px) {
            .column-nav-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575.98px) {
            .column-nav-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }
        .column-nav-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: all 0.25s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .column-nav-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-card);
            text-decoration: none;
            color: inherit;
            transform: translateY(-2px);
        }
        .column-nav-card .col-icon {
            font-size: 26px;
            color: var(--accent-magenta);
            margin-bottom: 8px;
        }
        .column-nav-card h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
        }
        .column-nav-card .col-count {
            font-size: 11px;
            color: var(--text-secondary);
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 32px 0 24px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            align-items: center;
            margin-bottom: 10px;
        }
        .site-footer .footer-links a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: color 0.2s;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-sep {
            color: var(--border-color);
            margin: 0 4px;
            user-select: none;
        }
        .footer-rss-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            border-radius: 20px;
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            font-size: 12px;
            font-weight: 500;
            transition: all 0.25s;
            text-decoration: none;
            margin-bottom: 8px;
        }
        .footer-rss-btn:hover {
            background: rgba(0, 240, 255, 0.08);
            color: var(--accent-cyan);
            text-decoration: none;
        }
        .footer-beian {
            margin-top: 12px;
            font-size: 11px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .footer-beian p {
            margin: 0;
        }

        /* ===== LIVE PULSE ===== */
        .live-pulse {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-red);
            animation: pulse-dot 1.4s infinite;
            margin-right: 4px;
            vertical-align: middle;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 77, 106, 0);
            }
        }

        /* ===== ARROW LINK ===== */
        .arrow-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            font-size: 13px;
            color: var(--accent-cyan);
            transition: gap 0.2s, color 0.2s;
        }
        .arrow-link:hover {
            gap: 8px;
            color: var(--accent-magenta);
        }
        .arrow-link i {
            font-size: 11px;
            transition: transform 0.2s;
        }
        .arrow-link:hover i {
            transform: translateX(3px);
        }

        /* ===== UTILITY ===== */
        .text-muted {
            color: var(--text-secondary) !important;
        }
        .bg-card {
            background: var(--bg-card);
        }
        .rounded-custom {
            border-radius: var(--radius-md);
        }
        .border-custom {
            border: 1px solid var(--border-color);
        }

/* roulang page: category5 */
:root {
            --bg-deep: #100C1A;
            --accent-magenta: #E639D8;
            --accent-cyan: #00F0FF;
            --success-green: #0FEB9E;
            --danger-red: #FF4D6A;
            --card-bg: #1A1325;
            --text-primary: #E8E3F0;
            --text-secondary: #9B8EAD;
            --border-color: #2A1F3A;
            --card-hover-bg: #1F172B;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-pill: 50px;
            --shadow-card: 0 2px 8px rgba(230, 57, 216, 0.15);
            --shadow-card-hover: 0 6px 28px rgba(0, 240, 255, 0.25);
            --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.4);
            --section-gap: 64px;
            --section-gap-tablet: 48px;
            --section-gap-mobile: 32px;
            --font-mono: 'DIN Alternate', 'Roboto Mono', 'SF Mono', 'Consolas', 'Courier New', monospace;
            --font-sans: 'Inter', 'SF Pro Text', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        @media(min-width:992px) {
            body {
                padding-bottom: 0;
            }
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-magenta);
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: 1320px;
            padding-left: 16px;
            padding-right: 16px;
        }
        @media(min-width:1200px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        .section-gap {
            padding: var(--section-gap) 0;
        }
        @media(max-width:991px) {
            .section-gap {
                padding: var(--section-gap-tablet) 0;
            }
        }
        @media(max-width:575px) {
            .section-gap {
                padding: var(--section-gap-mobile) 0;
            }
        }

        .navbar-esports {
            background-color: var(--bg-deep);
            border-bottom: 1px solid var(--accent-magenta);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 16px rgba(230, 57, 216, 0.18);
        }
        .navbar-esports .navbar-brand {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.3px;
            transition: color var(--transition-fast);
        }
        .navbar-esports .navbar-brand img {
            border-radius: 6px;
            width: 32px;
            height: 32px;
            object-fit: cover;
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .navbar-esports .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 14px;
            position: relative;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-esports .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent-cyan);
            transform: scaleX(0);
            transition: transform var(--transition-smooth);
            border-radius: 2px;
        }
        .navbar-esports .nav-link:hover {
            color: var(--accent-cyan);
        }
        .navbar-esports .nav-link:hover::after {
            transform: scaleX(1);
        }
        .navbar-esports .nav-link.active {
            color: var(--accent-magenta);
            font-weight: 700;
        }
        .navbar-esports .nav-link.active::after {
            background: var(--accent-magenta);
            transform: scaleX(1);
        }
        .navbar-esports .navbar-toggler {
            border-color: var(--border-color);
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            padding: 6px 10px;
        }
        .navbar-esports .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23E8E3F0' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
        .btn-cta-nav {
            display: inline-block;
            background: var(--accent-magenta);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            border: none;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            text-decoration: none;
        }
        .btn-cta-nav:hover {
            background: #C720B4;
            color: #fff;
            box-shadow: 0 4px 18px rgba(230, 57, 216, 0.45);
            transform: translateY(-1px);
        }

        .hero-service {
            background: linear-gradient(180deg, #100C1A 0%, #1A1325 40%, #1A1325 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 48px;
        }
        .hero-service::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230, 57, 216, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-service::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-service .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-service h1 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .hero-service h1 span {
            color: var(--accent-magenta);
        }
        @media(max-width:767px) {
            .hero-service h1 {
                font-size: 28px;
            }
            .hero-service {
                padding: 36px 0 32px;
            }
        }
        .hero-service .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-pill);
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .trust-badge i {
            color: var(--success-green);
            font-size: 14px;
        }
        .trust-badge .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success-green);
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(15, 235, 158, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(15, 235, 158, 0);
            }
        }
        .hero-service .hero-img-wrap {
            position: relative;
            z-index: 2;
        }
        .hero-service .hero-img-wrap img {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--border-color);
            width: 100%;
            object-fit: cover;
            max-height: 360px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .section-title span {
            color: var(--accent-magenta);
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
        }
        @media(max-width:767px) {
            .section-title {
                font-size: 22px;
            }
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: all var(--transition-smooth);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.3);
            transform: translateY(-3px);
            background: var(--card-hover-bg);
        }
        .service-card .service-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: rgba(230, 57, 216, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent-magenta);
        }
        .service-card .service-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .service-card .service-info p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }
        .service-card .card-tag {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 10px;
            font-weight: 700;
            background: var(--accent-magenta);
            color: #fff;
            padding: 3px 8px;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            height: 100%;
            transition: all var(--transition-smooth);
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.25);
        }
        .testimonial-card .testimonial-stars {
            color: #F5C518;
            font-size: 13px;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .testimonial-card .testimonial-text {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .testimonial-card .testimonial-author {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .testimonial-card .testimonial-author .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--accent-magenta);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media(max-width:991px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:575px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }
        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition-fast);
        }
        .stat-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 2px 8px rgba(230, 57, 216, 0.2);
        }
        .stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 40px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--accent-cyan);
            margin-bottom: 4px;
        }
        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        .stat-card .stat-trend {
            font-size: 12px;
            font-weight: 600;
        }
        .stat-trend.up {
            color: var(--success-green);
        }
        .stat-trend.down {
            color: var(--danger-red);
        }

        .case-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .case-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 240, 255, 0.3);
            transform: translateY(-3px);
        }
        .case-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 2px solid var(--border-color);
        }
        .case-card .case-body {
            padding: 18px 16px;
        }
        .case-card .case-body h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .case-card .case-body p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0 0 8px;
            line-height: 1.6;
        }
        .case-card .case-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(0, 240, 255, 0.1);
            color: var(--accent-cyan);
            margin-right: 4px;
        }

        .news-list-item {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            transition: background var(--transition-fast);
            align-items: flex-start;
        }
        .news-list-item:hover {
            background: var(--card-hover-bg);
            padding-left: 8px;
            padding-right: 8px;
            margin: 0 -8px;
            border-radius: var(--radius-sm);
        }
        .news-list-item img {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            border: 1px solid var(--border-color);
        }
        .news-list-item .news-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .news-list-item .news-info .news-meta {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        .news-list-item .news-info .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }
        .news-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 2px;
            margin-left: 4px;
            vertical-align: middle;
        }
        .news-badge.hot {
            background: var(--danger-red);
            color: #fff;
        }
        .news-badge.new {
            background: var(--accent-cyan);
            color: #100C1A;
        }
        .news-badge.rec {
            background: #F5C518;
            color: #100C1A;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(230, 57, 216, 0.3);
        }
        .faq-item .faq-question {
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
            user-select: none;
            gap: 12px;
        }
        .faq-item .faq-question .faq-q-prefix {
            color: var(--accent-magenta);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 18px;
        }
        .faq-item .faq-question .faq-arrow {
            transition: transform var(--transition-smooth);
            color: var(--text-secondary);
            font-size: 14px;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent-magenta);
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            border-left: 3px solid transparent;
            margin-left: 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 18px 20px;
            border-left-color: var(--accent-magenta);
        }
        .faq-item .faq-answer strong {
            color: var(--text-primary);
        }

        .eco-tag-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .eco-tag {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-pill);
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            transition: all var(--transition-fast);
            cursor: default;
        }
        .eco-tag:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 2px 10px rgba(0, 240, 255, 0.15);
        }

        .contact-card {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .contact-card:hover {
            border-color: var(--accent-magenta);
            box-shadow: var(--shadow-card-hover);
        }
        .contact-card .contact-icon {
            font-size: 40px;
            color: var(--accent-magenta);
            margin-bottom: 12px;
        }
        .contact-card h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .contact-card p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
        }

        .sitemap-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            justify-content: center;
        }
        .sitemap-links a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .sitemap-links a:hover {
            color: var(--accent-cyan);
        }

        .btn-primary-esports {
            display: inline-block;
            background: var(--accent-magenta);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            border: none;
            transition: all var(--transition-smooth);
            text-decoration: none;
        }
        .btn-primary-esports:hover {
            background: #C720B4;
            color: #fff;
            box-shadow: 0 6px 24px rgba(230, 57, 216, 0.4);
            transform: translateY(-2px);
        }
        .btn-outline-esports {
            display: inline-block;
            border: 2px solid var(--accent-cyan);
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            border-radius: var(--radius-pill);
            background: transparent;
            transition: all var(--transition-smooth);
            text-decoration: none;
        }
        .btn-outline-esports:hover {
            background: var(--accent-cyan);
            color: #100C1A;
            box-shadow: 0 4px 18px rgba(0, 240, 255, 0.35);
        }

        .form-control-esports {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: var(--radius-pill);
            padding: 12px 20px;
            font-size: 15px;
            transition: all var(--transition-fast);
        }
        .form-control-esports:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
            outline: none;
            background: #1F172B;
        }

        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-color);
            padding: 32px 0 24px;
            text-align: center;
        }
        .site-footer .footer-links {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 2px;
            margin-bottom: 10px;
        }
        .site-footer .footer-links a,
        .site-footer .footer-links span {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-sep {
            margin: 0 6px;
            color: var(--border-color);
        }
        .footer-rss-btn {
            display: inline-block;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            margin: 8px 0;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .footer-rss-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .footer-beian {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 12px;
            line-height: 1.8;
        }
        .footer-beian p {
            margin: 0;
        }

        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-deep);
            border-top: 1px solid var(--accent-magenta);
            z-index: 1060;
            padding: 6px 0 8px;
            box-shadow: 0 -2px 16px rgba(230, 57, 216, 0.2);
        }
        @media(max-width:991px) {
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
                align-items: center;
            }
            body {
                padding-bottom: 72px;
            }
        }
        .mobile-bottom-nav .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 4px 8px;
            transition: color var(--transition-fast);
            min-width: 48px;
        }
        .mobile-bottom-nav .tab-item i {
            font-size: 18px;
        }
        .mobile-bottom-nav .tab-item.active {
            color: var(--accent-magenta);
        }
        .mobile-bottom-nav .tab-item:hover {
            color: var(--accent-cyan);
        }

        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), var(--accent-magenta), var(--border-color), transparent);
            margin: 0;
            border: none;
        }
