/* roulang page: index */
:root {
            --bg: #f4f7fb;
            --card-bg: #ffffff;
            --data-bg: #eef2f8;
            --dark-bg: #1a2b3d;
            --primary: #00b884;
            --primary-hover: #009a6d;
            --primary-light: #e6f7f1;
            --accent-blue: #2c5ea0;
            --accent-gold: #f0a030;
            --danger-red: #e53e3e;
            --text-dark: #1a2b3c;
            --text-secondary: #3d4f60;
            --text-muted: #5f7180;
            --text-weak: #8899aa;
            --border: #e2e8f0;
            --border-light: #e8ecf1;
            --radius-sm: 8px;
            --radius-md: 10px;
            --radius-lg: 12px;
            --radius-btn: 24px;
            --shadow-card: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(26, 43, 60, 0.12);
            --shadow-data: 0 4px 20px rgba(26, 43, 60, 0.08);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            --font-mono: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
            --nav-height: 64px;
            --nav-height-mobile: 56px;
            --container-max: 1200px;
            --section-gap: 100px;
            --section-gap-mobile: 56px;
            --card-pad: 24px;
            --card-pad-sm: 20px;
            --grid-gap: 24px;
            --grid-gap-sm: 16px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --transition-slow: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-secondary);
            background-color: var(--bg);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
        }

        .section {
            padding: var(--section-gap) 0;
        }
        @media (max-width: 768px) {
            .section {
                padding: var(--section-gap-mobile) 0;
            }
        }

        .section__header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section__header--left {
            text-align: left;
        }
        .section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .section__title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }
        .section__desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section__title {
                font-size: 22px;
            }
            .section__desc {
                font-size: 14px;
            }
        }

        /* ========== NAVIGATION ========== */
        .nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition-fast);
        }
        .nav.scrolled {
            box-shadow: 0 2px 12px rgba(26, 43, 60, 0.07);
        }
        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
        }
        .nav__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav__logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .nav__links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
        }
        .nav__links a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            white-space: nowrap;
            position: relative;
            transition: color var(--transition-fast), background var(--transition-fast);
        }
        .nav__links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav__links a.active {
            color: var(--primary);
            font-weight: 600;
        }
        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        .nav__cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            border-radius: var(--radius-btn);
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        .nav__cta:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(0, 184, 132, 0.3);
        }
        .nav__hamburger {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 22px;
            color: var(--text-dark);
            background: transparent;
            flex-shrink: 0;
        }
        .nav__hamburger:hover {
            background: var(--bg);
        }
        @media (max-width: 992px) {
            .nav__links {
                gap: 2px;
            }
            .nav__links a {
                padding: 8px 10px;
                font-size: 13.5px;
            }
            .nav__cta {
                padding: 8px 15px;
                font-size: 13px;
            }
        }
        @media (max-width: 768px) {
            .nav__links {
                display: none;
                position: fixed;
                top: var(--nav-height-mobile);
                left: 0;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px;
                gap: 0;
                border-bottom: 2px solid var(--border-light);
                box-shadow: 0 8px 24px rgba(26, 43, 60, 0.10);
                z-index: 999;
                border-radius: 0 0 12px 12px;
            }
            .nav__links.open {
                display: flex;
            }
            .nav__links a {
                display: block;
                padding: 13px 16px;
                font-size: 15px;
                border-radius: 8px;
                text-align: left;
            }
            .nav__links a.active::after {
                display: none;
            }
            .nav__links a.active {
                background: var(--primary-light);
                border-radius: 8px;
            }
            .nav__hamburger {
                display: flex;
            }
            .nav__cta {
                display: none;
            }
            .nav {
                height: var(--nav-height-mobile);
            }
        }
        @media (max-width: 480px) {
            .nav__inner {
                padding: 0 14px;
            }
            .nav__logo {
                font-size: 17px;
                gap: 7px;
            }
            .nav__logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 15px;
                border-radius: 6px;
            }
        }

        /* ========== MOBILE NAV OVERLAY ========== */
        .nav__overlay {
            display: none;
            position: fixed;
            top: var(--nav-height-mobile);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 43, 60, 0.35);
            z-index: 998;
            opacity: 0;
            transition: opacity var(--transition-smooth);
            pointer-events: none;
        }
        .nav__overlay.open {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }
        @media (min-width: 769px) {
            .nav__overlay {
                display: none !important;
            }
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            background: linear-gradient(160deg, #f4f7fb 0%, #eaf0f7 40%, #e0ebf5 100%);
            min-height: 540px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }
        .hero__inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 60px 24px;
        }
        .hero__text {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hero__badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hero__badge {
            display: inline-block;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--primary);
            background: var(--primary-light);
            border-radius: 20px;
            white-space: nowrap;
        }
        .hero__title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            line-height: 1.25;
        }
        .hero__title .highlight {
            color: var(--primary);
        }
        .hero__subtitle {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 440px;
        }
        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 8px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
        }
        .btn--primary {
            background: var(--primary);
            color: #fff;
            border: 2px solid var(--primary);
        }
        .btn--primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 184, 132, 0.3);
        }
        .btn--outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn--outline:hover {
            background: var(--primary-light);
            color: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        .btn--sm {
            padding: 7px 16px;
            font-size: 13px;
            border-radius: 8px;
            font-weight: 500;
        }
        .btn--text {
            color: var(--accent-blue);
            font-weight: 500;
            padding: 4px 0;
            border-radius: 0;
            border-bottom: 1.5px solid transparent;
        }
        .btn--text:hover {
            border-bottom-color: var(--accent-blue);
            color: #1e4a80;
            transform: none;
            box-shadow: none;
        }
        .hero__data-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .hero__data-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-data);
            transition: all var(--transition-smooth);
        }
        .hero__data-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .hero__data-value {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1.1;
        }
        .hero__data-value--live {
            color: var(--danger-red);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .hero__data-value--live .dot {
            width: 8px;
            height: 8px;
            background: var(--danger-red);
            border-radius: 50%;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.7);
            }
        }
        .hero__data-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        @media (max-width: 992px) {
            .hero__inner {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 44px 24px;
            }
            .hero__title {
                font-size: 26px;
            }
            .hero__subtitle {
                font-size: 15px;
                max-width: 100%;
            }
            .hero__data-cards {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero {
                min-height: auto;
            }
        }
        @media (max-width: 520px) {
            .hero__data-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .hero__data-value {
                font-size: 24px;
            }
            .hero__title {
                font-size: 22px;
            }
            .hero__inner {
                padding: 32px 16px;
                gap: 24px;
            }
            .hero {
                min-height: auto;
            }
        }

        /* ========== STATS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .stat-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: var(--card-pad-sm);
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .stat-card__icon {
            font-size: 26px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-card__value {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
        }
        .stat-card__value--gold {
            color: var(--accent-gold);
        }
        .stat-card__label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        @media (max-width: 992px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap-sm);
            }
        }
        @media (max-width: 480px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card__value {
                font-size: 22px;
            }
            .stat-card__icon {
                font-size: 22px;
            }
        }

        /* ========== LIVE SCORE TABLE ========== */
        .score-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .score-row {
            display: grid;
            grid-template-columns: 36px 1fr 100px 110px 1fr 80px 40px;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: #fff;
            transition: background var(--transition-fast);
            cursor: default;
            font-size: 14px;
        }
        .score-row:hover {
            background: #f7fafd;
        }
        .score-row--live {
            border-left: 3px solid var(--danger-red);
            background: #fffbfb;
        }
        .score-row__game-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--data-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
            flex-shrink: 0;
            overflow: hidden;
        }
        .score-row__game-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .score-row__event {
            font-weight: 500;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .score-row__time {
            color: var(--text-muted);
            font-size: 13px;
            white-space: nowrap;
        }
        .score-row__team {
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .score-row__score {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-gold);
            text-align: center;
            letter-spacing: 1px;
        }
        .score-row--live .score-row__score {
            animation: score-blink 1.6s ease-in-out infinite;
            color: var(--danger-red);
        }
        @keyframes score-blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }
        .score-row__status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            text-align: center;
            white-space: nowrap;
        }
        .score-row__status--live {
            background: #fff0f0;
            color: var(--danger-red);
        }
        .score-row__status--done {
            background: #f0f4f8;
            color: var(--text-muted);
        }
        .score-row__status--upcoming {
            background: #fff8e8;
            color: #c07a10;
        }
        .score-row__link {
            text-align: center;
            font-size: 16px;
            color: var(--accent-blue);
            transition: color var(--transition-fast);
        }
        .score-row__link:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .score-row {
                grid-template-columns: 28px 1fr 60px 70px 1fr 50px 30px;
                gap: 6px;
                padding: 11px 10px;
                font-size: 12px;
            }
            .score-row__score {
                font-size: 17px;
            }
            .score-row__game-icon {
                width: 24px;
                height: 24px;
                font-size: 11px;
            }
            .score-row__event {
                display: none;
            }
            .score-row__status {
                font-size: 10px;
                padding: 3px 7px;
            }
        }
        @media (max-width: 520px) {
            .score-row {
                grid-template-columns: 24px 55px 55px 30px;
                gap: 4px;
                padding: 10px 8px;
            }
            .score-row__event,
            .score-row__link,
            .score-row__game-icon {
                display: none;
            }
            .score-row__time {
                font-size: 11px;
            }
            .score-row__team {
                font-size: 11px;
            }
            .score-row__score {
                font-size: 15px;
            }
            .score-row__status {
                font-size: 10px;
                padding: 2px 6px;
            }
        }

        /* ========== GAME GRID ========== */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .game-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 28px 20px 22px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-card-hover);
        }
        .game-card__img {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            margin: 0 auto 14px;
            object-fit: cover;
            background: var(--data-bg);
            transition: transform var(--transition-smooth);
        }
        .game-card:hover .game-card__img {
            transform: scale(1.06);
        }
        .game-card__name {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .game-card__desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .game-card__badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            white-space: nowrap;
        }
        @media (max-width: 992px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap-sm);
            }
        }
        @media (max-width: 480px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .game-card {
                padding: 20px 14px 16px;
            }
            .game-card__img {
                width: 48px;
                height: 48px;
                border-radius: 12px;
            }
            .game-card__name {
                font-size: 15px;
            }
        }

        /* ========== RANKING LIST ========== */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .ranking-item {
            display: grid;
            grid-template-columns: 44px 1fr 80px 100px 60px;
            align-items: center;
            gap: 10px;
            padding: 13px 18px;
            background: #fff;
            transition: all var(--transition-fast);
            cursor: default;
            font-size: 14px;
        }
        .ranking-item:hover {
            background: #f8fcf9;
        }
        .ranking-item--top {
            background: #fffef8;
            border-left: 3px solid var(--accent-gold);
        }
        .ranking-item--top .ranking-item__rank {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .ranking-item__rank {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }
        .ranking-item__team {
            font-weight: 500;
            color: var(--text-dark);
        }
        .ranking-item__region {
            font-size: 12px;
            color: var(--text-muted);
            background: var(--data-bg);
            padding: 3px 10px;
            border-radius: 10px;
            text-align: center;
        }
        .ranking-item__winrate {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--accent-gold);
            text-align: center;
        }
        @media (max-width: 768px) {
            .ranking-item {
                grid-template-columns: 36px 1fr 55px 65px 45px;
                gap: 6px;
                padding: 10px 12px;
                font-size: 12px;
            }
            .ranking-item__rank {
                font-size: 15px;
            }
            .ranking-item__region {
                font-size: 10px;
                padding: 2px 7px;
            }
        }
        @media (max-width: 520px) {
            .ranking-item {
                grid-template-columns: 30px 1fr 55px 50px;
                gap: 4px;
                padding: 9px 8px;
            }
            .ranking-item__region {
                display: none;
            }
        }

        /* ========== HOT LIST ========== */
        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hot-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 15px 18px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .hot-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-card-hover);
        }
        .hot-item__rank {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-muted);
            width: 32px;
            text-align: center;
            flex-shrink: 0;
        }
        .hot-item--fire .hot-item__rank {
            color: var(--danger-red);
        }
        .hot-item__info {
            flex: 1;
            min-width: 0;
        }
        .hot-item__name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 15px;
        }
        .hot-item__meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .hot-item__heat {
            font-size: 13px;
            font-weight: 600;
            color: var(--danger-red);
            white-space: nowrap;
        }
        @media (max-width: 520px) {
            .hot-item {
                padding: 11px 12px;
                gap: 8px;
            }
            .hot-item__rank {
                font-size: 16px;
                width: 24px;
            }
            .hot-item__name {
                font-size: 13px;
            }
        }

        /* ========== PLAYER CARDS ========== */
        .player-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .player-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .player-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .player-card__avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--data-bg);
            margin: 0 auto 12px;
            object-fit: cover;
            border: 3px solid var(--primary-light);
        }
        .player-card__name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
        }
        .player-card__team {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .player-card__stats {
            display: flex;
            justify-content: center;
            gap: 16px;
        }
        .player-card__stat {
            text-align: center;
        }
        .player-card__stat-val {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-gold);
        }
        .player-card__stat-lbl {
            font-size: 11px;
            color: var(--text-weak);
        }
        @media (max-width: 992px) {
            .player-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap-sm);
            }
        }
        @media (max-width: 480px) {
            .player-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .player-card {
                padding: 16px 12px;
            }
            .player-card__avatar {
                width: 44px;
                height: 44px;
            }
        }

        /* ========== NEWS LIST ========== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .news-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .news-card__img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: var(--data-bg);
        }
        .news-card__body {
            padding: 18px;
        }
        .news-card__tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            margin-bottom: 8px;
        }
        .news-card__title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card__excerpt {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card__time {
            font-size: 11px;
            color: var(--text-weak);
            margin-top: 8px;
        }
        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap-sm);
            }
        }
        @media (max-width: 520px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .news-card__img {
                height: 160px;
            }
        }

        /* ========== LIVE CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, #1a2b3d 0%, #1e384f 50%, #1a2b3d 100%);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: 0 8px 32px rgba(26, 43, 60, 0.18);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-banner__info {
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 220px;
        }
        .cta-banner__label {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 600;
            color: var(--danger-red);
            margin-bottom: 8px;
        }
        .cta-banner__label .dot {
            width: 7px;
            height: 7px;
            background: var(--danger-red);
            border-radius: 50%;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        .cta-banner__title {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        .cta-banner__desc {
            font-size: 14px;
            color: #bcc8d4;
            position: relative;
            z-index: 1;
        }
        .cta-banner__matches {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .cta-banner__match {
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            text-align: center;
            min-width: 120px;
            backdrop-filter: blur(4px);
        }
        .cta-banner__match-teams {
            font-size: 13px;
            color: #dde4ec;
            font-weight: 500;
        }
        .cta-banner__match-time {
            font-size: 11px;
            color: #8899aa;
            margin-top: 3px;
        }
        .cta-banner__btn {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .cta-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 20px;
                gap: 18px;
            }
            .cta-banner__matches {
                justify-content: center;
            }
            .cta-banner__title {
                font-size: 19px;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .review-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card--featured {
            grid-column: 2;
            border: 2px solid var(--primary-light);
            background: #fafffd;
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card__avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--data-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .review-card__name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }
        .review-card__tag {
            font-size: 11px;
            color: var(--primary);
            background: var(--primary-light);
            padding: 2px 8px;
            border-radius: 8px;
            margin-left: 6px;
        }
        .review-card__stars {
            color: #f0a030;
            font-size: 12px;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }
        .review-card__text {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-card__time {
            font-size: 11px;
            color: var(--text-weak);
        }
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap-sm);
            }
            .review-card--featured {
                grid-column: auto;
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        /* ========== FAQ ========== */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
        }
        .faq-item.active {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-card-hover);
        }
        .faq-item__question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 500;
            font-size: 15px;
            color: var(--text-dark);
            background: transparent;
            width: 100%;
            text-align: left;
            transition: all var(--transition-fast);
        }
        .faq-item__question:hover {
            color: var(--primary);
            background: #fafdfc;
        }
        .faq-item__q-badge {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
        }
        .faq-item__icon {
            flex-shrink: 0;
            font-size: 16px;
            color: var(--text-muted);
            transition: transform var(--transition-fast);
        }
        .faq-item.active .faq-item__icon {
            transform: rotate(45deg);
            color: var(--primary);
        }
        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            background: #f8fafb;
            padding: 0 20px 0 52px;
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.active .faq-item__answer {
            max-height: 300px;
            padding: 0 20px 18px 52px;
        }
        @media (max-width: 520px) {
            .faq-item__question {
                padding: 13px 14px;
                font-size: 14px;
            }
            .faq-item.active .faq-item__answer {
                padding: 0 14px 14px 40px;
                font-size: 13px;
            }
            .faq-item__answer {
                padding: 0 14px 0 40px;
            }
            .faq-item__q-badge {
                width: 24px;
                height: 24px;
                font-size: 11px;
            }
        }

        /* ========== UPDATE BAR ========== */
        .update-bar {
            background: var(--dark-bg);
            color: #bcc8d4;
            font-size: 13px;
            text-align: center;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            letter-spacing: 0.3px;
        }
        .update-bar .pulse-icon {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        .update-bar strong {
            color: #fff;
            font-family: var(--font-mono);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark-bg);
            color: #c0c9d3;
            padding: 50px 0 0;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 36px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .footer__brand-desc {
            font-size: 13px;
            color: #8a99a6;
            line-height: 1.6;
            margin-bottom: 14px;
        }
        .footer__col-title {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer__col a {
            display: block;
            font-size: 13px;
            color: #8a99a6;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            text-align: center;
            padding: 20px 0;
            font-size: 12px;
            color: #6b7a88;
            line-height: 2;
        }
        .footer__bottom a {
            color: #8a99a6;
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer__bottom a:hover {
            color: var(--primary);
        }
        .footer__bottom .sep {
            margin: 0 4px;
            color: #4a5568;
        }
        @media (max-width: 768px) {
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer__brand-desc {
                grid-column: 1 / -1;
            }
            .footer {
                padding: 36px 0 0;
            }
        }
        @media (max-width: 480px) {
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer__brand-desc {
                grid-column: auto;
            }
        }

        /* ========== UTILITY ========== */
        .text-center {
            text-align: center;
        }
        .text-right {
            text-align: right;
        }
        .mt-sm {
            margin-top: 12px;
        }
        .mt-md {
            margin-top: 24px;
        }
        .mt-lg {
            margin-top: 40px;
        }
        .mb-sm {
            margin-bottom: 12px;
        }
        .mb-md {
            margin-bottom: 24px;
        }
        .hidden-desktop {
            display: none;
        }
        @media (max-width: 768px) {
            .hidden-mobile {
                display: none;
            }
            .hidden-desktop {
                display: block;
            }
        }

        /* ========== SECTION BG VARIANTS ========== */
        .bg-white {
            background: #ffffff;
        }
        .bg-data {
            background: var(--data-bg);
        }

        /* Focus visible global */
        :focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* Smooth scroll offset for sticky nav */
        section[id] {
            scroll-margin-top: 80px;
        }
        @media (max-width: 768px) {
            section[id] {
                scroll-margin-top: 64px;
            }
        }

/* roulang page: category1 */
:root {
            --bg: #f4f7fb;
            --bg-card: #ffffff;
            --bg-data: #eef2f8;
            --bg-dark: #1a2b3d;
            --brand: #00b884;
            --brand-hover: #009a6d;
            --brand-light: #e6f7f1;
            --accent-blue: #2c5ea0;
            --accent-blue-hover: #1f4478;
            --gold: #f0a030;
            --red: #e53e3e;
            --red-light: #fef2f2;
            --text-primary: #1a2b3c;
            --text-secondary: #3d4f60;
            --text-muted: #5f7180;
            --text-weak: #8899aa;
            --border: #e2e8f0;
            --border-light: #e8ecf1;
            --shadow-sm: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-md: 0 4px 20px rgba(26, 43, 60, 0.08);
            --shadow-lg: 0 8px 28px rgba(26, 43, 60, 0.12);
            --radius-xs: 6px;
            --radius-sm: 8px;
            --radius-md: 10px;
            --radius-lg: 12px;
            --radius-xl: 24px;
            --nav-h: 64px;
            --container: 1200px;
            --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            --font-mono: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
            --transition: 0.25s ease;
            --transition-fast: 0.18s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            background: var(--bg);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            background: none;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER / NAV ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-h);
            transition: box-shadow var(--transition-fast);
        }
        .header.scrolled {
            box-shadow: 0 2px 12px rgba(26, 43, 60, 0.07);
        }
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .logo__icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .logo__icon svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        .nav__links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav__links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            position: relative;
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
        }
        .nav__links a:hover {
            color: var(--brand);
            background: var(--brand-light);
        }
        .nav__links a.active {
            color: var(--brand);
            font-weight: 600;
        }
        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--brand);
            border-radius: 3px 3px 0 0;
        }
        .nav__cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--brand);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--radius-xl);
            white-space: nowrap;
            flex-shrink: 0;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .nav__cta:hover {
            background: var(--brand-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(0, 184, 132, 0.3);
            color: #fff;
        }
        .nav__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 28px;
            cursor: pointer;
            flex-shrink: 0;
            z-index: 1010;
        }
        .nav__hamburger span {
            display: block;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }
        .nav__hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav__hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav__hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(26, 43, 60, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition);
        }
        .mobile-menu-overlay.show {
            display: block;
            opacity: 1;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: #fff;
            z-index: 1005;
            padding: 80px 28px 40px;
            flex-direction: column;
            gap: 4px;
            transition: right var(--transition);
            box-shadow: -4px 0 24px rgba(26, 43, 60, 0.15);
            overflow-y: auto;
        }
        .mobile-menu.open {
            right: 0;
        }
        .mobile-menu a {
            display: block;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--brand);
            background: var(--brand-light);
        }
        .mobile-menu a.active {
            font-weight: 600;
        }
        .mobile-menu .nav__cta {
            margin-top: 12px;
            text-align: center;
            justify-content: center;
        }

        /* ========== HERO ========== */
        .hero {
            background: linear-gradient(160deg, #f4f7fb 0%, #eaf0f7 40%, #e0eaf5 100%);
            position: relative;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
            padding: 48px 0;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero__inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero__text h1 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .hero__text .hero__subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 440px;
        }
        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .hero__tags span {
            display: inline-block;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--brand);
            background: var(--brand-light);
            border-radius: 20px;
            white-space: nowrap;
        }
        .hero__btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-xl);
            transition: all var(--transition);
            white-space: nowrap;
            cursor: pointer;
            border: none;
        }
        .btn--primary {
            background: var(--brand);
            color: #fff;
        }
        .btn--primary:hover {
            background: var(--brand-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 184, 132, 0.3);
        }
        .btn--outline {
            background: transparent;
            color: var(--brand);
            border: 2px solid var(--brand);
        }
        .btn--outline:hover {
            background: var(--brand-light);
            transform: translateY(-2px);
        }
        .btn--sm {
            padding: 6px 14px;
            font-size: 13px;
            border-radius: var(--radius-sm);
        }
        .btn--accent {
            background: var(--accent-blue);
            color: #fff;
        }
        .btn--accent:hover {
            background: var(--accent-blue-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(44, 94, 160, 0.3);
        }
        .hero__data-cards {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-data-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
            min-width: 110px;
            flex: 1;
            text-align: center;
            transition: all var(--transition);
        }
        .hero-data-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .hero-data-card__num {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }
        .hero-data-card__num.live {
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .hero-data-card__num.live .pulse-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--red);
            animation: pulse-dot 1.2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.7);
            }
        }
        .hero-data-card__label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .hero-data-card__time {
            font-size: 12px;
            color: var(--text-weak);
            margin-top: 2px;
        }

        /* ========== MAIN SECTIONS ========== */
        main {
            padding-bottom: 0;
        }
        .section {
            padding: 72px 0;
        }
        .section--tight {
            padding: 48px 0;
        }
        .section__header {
            margin-bottom: 36px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }
        .section__title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            position: relative;
            padding-left: 16px;
        }
        .section__title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--brand);
            border-radius: 2px;
        }
        .section__more {
            font-size: 14px;
            color: var(--accent-blue);
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .section__more:hover {
            color: var(--accent-blue-hover);
            text-decoration: underline;
        }

        /* ========== DATA INDICATORS ROW ========== */
        .indicators-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .indicator-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px 18px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all var(--transition);
            cursor: default;
        }
        .indicator-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .indicator-card__icon {
            font-size: 24px;
            margin-bottom: 8px;
            display: block;
        }
        .indicator-card__num {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--brand);
            line-height: 1;
            margin-bottom: 4px;
        }
        .indicator-card__num.gold {
            color: var(--gold);
        }
        .indicator-card__label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ========== FILTER TABS ========== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 28px;
            padding: 16px 20px;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }
        .filter-bar__tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .filter-tab {
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 20px;
            color: var(--text-secondary);
            background: #f8fafc;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-tab:hover {
            color: var(--brand);
            background: var(--brand-light);
            border-color: var(--brand);
        }
        .filter-tab.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
            font-weight: 600;
        }
        .filter-bar__game-filters {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-left: auto;
        }
        .game-filter-chip {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 16px;
            border: 1px solid var(--border);
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            background: #fff;
        }
        .game-filter-chip:hover,
        .game-filter-chip.active {
            border-color: var(--brand);
            color: var(--brand);
            background: var(--brand-light);
        }
        .game-filter-chip.active {
            font-weight: 600;
        }

        /* ========== TOURNAMENT CARDS LIST ========== */
        .tournament-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .tournament-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: 36px 1fr 140px 1fr 110px 70px;
            gap: 14px;
            align-items: center;
            transition: all var(--transition);
            border-left: 4px solid transparent;
            position: relative;
            cursor: default;
        }
        .tournament-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .tournament-card--live {
            border-left-color: var(--red);
            background: #fffdfd;
        }
        .tournament-card--live .tournament-card__score {
            color: var(--gold);
            animation: score-glow 2s infinite;
        }
        @keyframes score-glow {
            0%,
            100% {
                text-shadow: 0 0 0 transparent;
            }
            50% {
                text-shadow: 0 0 12px rgba(240, 160, 48, 0.4);
            }
        }
        .tournament-card--finished {
            opacity: 0.82;
        }
        .tournament-card__game-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 11px;
            color: #fff;
            flex-shrink: 0;
        }
        .gi-lol {
            background: #c8a846;
        }
        .gi-kpl {
            background: #d94e3c;
        }
        .gi-dota {
            background: #e87a2a;
        }
        .gi-cs2 {
            background: #4a5568;
        }
        .gi-val {
            background: #b8405c;
        }
        .gi-pubg {
            background: #e0a020;
        }
        .tournament-card__info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }
        .tournament-card__name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .tournament-card__time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .tournament-card__teams {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            min-width: 0;
        }
        .tournament-card__team {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100px;
            text-align: center;
        }
        .tournament-card__vs {
            font-size: 12px;
            color: var(--text-weak);
            font-weight: 500;
            flex-shrink: 0;
        }
        .tournament-card__score {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            flex-shrink: 0;
            min-width: 50px;
        }
        .tournament-card__score.pending {
            color: var(--text-weak);
            font-size: 13px;
            font-family: var(--font-body);
            font-weight: 500;
        }
        .tournament-card__status {
            text-align: center;
            flex-shrink: 0;
        }
        .status-badge {
            display: inline-block;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 14px;
            white-space: nowrap;
        }
        .status-badge--live {
            background: #fef2f2;
            color: var(--red);
            border: 1px solid #fecaca;
        }
        .status-badge--finished {
            background: #f8fafc;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }
        .status-badge--upcoming {
            background: #eff6ff;
            color: var(--accent-blue);
            border: 1px solid #bfdbfe;
        }
        .tournament-card__action {
            flex-shrink: 0;
            text-align: center;
        }

        /* ========== HOT TOURNAMENT RANKING ========== */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            counter-reset: rank;
        }
        .ranking-item {
            display: grid;
            grid-template-columns: 44px 1fr 100px 90px 80px;
            gap: 12px;
            align-items: center;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 14px 18px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: default;
        }
        .ranking-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: #fdfefd;
        }
        .ranking-item__rank {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-muted);
            text-align: center;
        }
        .ranking-item:nth-child(1) .ranking-item__rank {
            color: #c9a830;
            font-size: 22px;
        }
        .ranking-item:nth-child(2) .ranking-item__rank {
            color: #9ca3af;
            font-size: 20px;
        }
        .ranking-item:nth-child(3) .ranking-item__rank {
            color: #b87a3a;
            font-size: 19px;
        }
        .ranking-item__name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-item__heat {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .ranking-item__heat-bar {
            width: 60px;
            height: 6px;
            border-radius: 3px;
            background: #e8ecf1;
            overflow: hidden;
            flex-shrink: 0;
        }
        .ranking-item__heat-fill {
            height: 100%;
            border-radius: 3px;
            background: var(--brand);
            transition: width var(--transition);
        }

        /* ========== COMMENTS ========== */
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .comment-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition);
        }
        .comment-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .comment-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-card__avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #e8ecf1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .comment-card__name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .comment-card__tag {
            font-size: 11px;
            background: var(--brand-light);
            color: var(--brand);
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 500;
        }
        .comment-card__stars {
            color: #e8b820;
            font-size: 13px;
            letter-spacing: 1px;
        }
        .comment-card__body {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .comment-card__time {
            font-size: 12px;
            color: var(--text-weak);
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item__q {
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-item__q:hover {
            background: #fafcfd;
        }
        .faq-item__q-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--brand-light);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            transition: all var(--transition-fast);
        }
        .faq-item.open .faq-item__q-icon {
            background: var(--brand);
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-item__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            background: #fafcfd;
            border-top: 1px solid transparent;
        }
        .faq-item.open .faq-item__a {
            max-height: 300px;
            border-top-color: var(--border-light);
        }
        .faq-item__a-inner {
            padding: 16px 20px 18px 48px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: var(--bg-dark);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(0, 184, 132, 0.15);
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }
        .cta-banner p {
            font-size: 15px;
            color: #bcc5cf;
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-banner .btn {
            position: relative;
            z-index: 2;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--bg-dark);
            color: #c5cdd6;
            padding: 48px 0 28px;
            font-size: 14px;
            line-height: 1.8;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer__brand-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer__brand-desc {
            font-size: 13px;
            color: #9aa5b2;
            max-width: 280px;
            line-height: 1.6;
        }
        .footer__col-title {
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .footer__col a {
            display: block;
            color: #9aa5b2;
            font-size: 13px;
            padding: 2px 0;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--brand);
        }
        .footer__bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 12px;
            color: #7a8899;
        }
        .footer__bottom .sep {
            margin: 0 8px;
            color: #4a5568;
        }
        .footer__bottom a {
            color: #9aa5b2;
            transition: color var(--transition-fast);
        }
        .footer__bottom a:hover {
            color: var(--brand);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199px) {
            .hero__inner {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .indicators-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .tournament-card {
                grid-template-columns: 30px 1fr 110px 1fr 90px 50px;
                gap: 10px;
                padding: 14px 16px;
            }
            .tournament-card__score {
                font-size: 17px;
                min-width: 40px;
            }
            .tournament-card__team {
                font-size: 13px;
                max-width: 70px;
            }
        }
        @media (max-width: 991px) {
            .nav__links {
                display: none;
            }
            .nav__hamburger {
                display: flex;
            }
            .mobile-menu {
                display: flex;
            }
            .nav__cta.desktop-only {
                display: none;
            }
            .hero__inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero__data-cards {
                justify-content: center;
            }
            .hero {
                min-height: auto;
                padding: 36px 0;
            }
            .hero__text h1 {
                font-size: 26px;
            }
            .indicators-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .tournament-card {
                grid-template-columns: 28px 1fr 100px 1fr 80px;
                gap: 8px;
                padding: 12px 14px;
                font-size: 12px;
            }
            .tournament-card__action {
                display: none;
            }
            .tournament-card__score {
                font-size: 16px;
                min-width: 36px;
            }
            .ranking-item {
                grid-template-columns: 36px 1fr 80px 70px;
                gap: 8px;
                padding: 12px 14px;
                font-size: 13px;
            }
            .ranking-item__action {
                display: none;
            }
            .comments-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
            }
            .filter-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .filter-bar__game-filters {
                margin-left: 0;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .section {
                padding: 48px 0;
            }
            .section--tight {
                padding: 32px 0;
            }
            .hero__text h1 {
                font-size: 22px;
            }
            .hero__data-cards {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
            }
            .hero-data-card {
                min-width: 80px;
                padding: 14px 12px;
            }
            .hero-data-card__num {
                font-size: 22px;
            }
            .indicators-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .tournament-card {
                grid-template-columns: 24px 1fr 70px 1fr 60px;
                gap: 6px;
                padding: 10px 12px;
                font-size: 11px;
                border-left-width: 3px;
            }
            .tournament-card__name {
                font-size: 11px;
            }
            .tournament-card__team {
                font-size: 11px;
                max-width: 50px;
            }
            .tournament-card__score {
                font-size: 14px;
                min-width: 30px;
            }
            .tournament-card__score.pending {
                font-size: 10px;
            }
            .tournament-card__game-icon {
                width: 24px;
                height: 24px;
                font-size: 9px;
            }
            .status-badge {
                font-size: 10px;
                padding: 3px 8px;
            }
            .ranking-item {
                grid-template-columns: 30px 1fr 60px 50px;
                gap: 6px;
                padding: 10px 12px;
                font-size: 12px;
            }
            .ranking-item__heat-bar {
                width: 40px;
            }
            .comments-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .hero__text h1 {
                font-size: 20px;
            }
            .hero__subtitle {
                font-size: 14px;
            }
            .indicators-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .indicator-card {
                padding: 14px 10px;
            }
            .indicator-card__num {
                font-size: 20px;
            }
            .tournament-card {
                grid-template-columns: 20px 1fr 55px;
                gap: 4px;
                padding: 8px 10px;
            }
            .tournament-card__info,
            .tournament-card__status {
                display: none;
            }
            .tournament-card__team {
                font-size: 10px;
                max-width: 45px;
            }
            .tournament-card__score {
                font-size: 13px;
                min-width: 26px;
            }
            .section__title {
                font-size: 18px;
            }
            .filter-tab {
                padding: 6px 14px;
                font-size: 12px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-page: #f4f7fb;
            --bg-card: #ffffff;
            --bg-data-section: #eef2f8;
            --bg-dark: #1a2b3d;
            --color-primary: #00b884;
            --color-primary-hover: #009a6d;
            --color-primary-light: #e6f7f1;
            --color-accent-blue: #2c5ea0;
            --color-accent-gold: #f0a030;
            --color-danger: #e53e3e;
            --color-text-main: #1a2b3c;
            --color-text-secondary: #3d4f60;
            --color-text-aux: #5f7180;
            --color-text-weak: #8899aa;
            --color-border: #e2e8f0;
            --color-border-light: #e8ecf1;
            --color-table-stripe: #fafcfd;
            --color-hover-row: #f7fafd;
            --radius-card: 12px;
            --radius-card-sm: 10px;
            --radius-tag: 8px;
            --radius-btn: 24px;
            --radius-btn-sm: 8px;
            --shadow-card: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(26, 43, 60, 0.12);
            --shadow-data: 0 4px 20px rgba(26, 43, 60, 0.08);
            --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            --font-data: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
            --nav-height: 64px;
            --nav-height-mobile: 56px;
            --container-max: 1200px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --transition-expand: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text-secondary);
            background-color: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--color-accent-blue);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: #1e4070;
            text-decoration: underline;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
            font-size: 15px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
            background: #fff;
        }

        input:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(0, 184, 132, 0.1);
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header / Nav */
        .header {
            background: #ffffff;
            border-bottom: 1px solid var(--color-border-light);
            height: var(--nav-height);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .header__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-main);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: -0.3px;
        }

        .header__logo:hover {
            text-decoration: none;
            color: var(--color-primary);
        }

        .header__logo-icon {
            width: 34px;
            height: 34px;
            background: var(--color-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav__links a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 14px;
            color: var(--color-text-secondary);
            text-decoration: none;
            border-radius: 6px;
            transition: color var(--transition-fast), background var(--transition-fast);
            white-space: nowrap;
            font-weight: 500;
            position: relative;
        }

        .nav__links a:hover {
            color: var(--color-primary);
            text-decoration: none;
            background: var(--color-primary-light);
        }

        .nav__links a.active {
            color: var(--color-primary);
            font-weight: 600;
            background: var(--color-primary-light);
        }

        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--color-primary);
            border-radius: 3px 3px 0 0;
        }

        .header__actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--color-primary);
            border-radius: var(--radius-btn);
            text-decoration: none;
            transition: background var(--transition-fast), transform var(--transition-fast);
            white-space: nowrap;
        }

        .btn-nav-cta:hover {
            background: var(--color-primary-hover);
            text-decoration: none;
            color: #fff;
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-text-main);
            border-radius: 2px;
            transition: transform var(--transition-fast), opacity var(--transition-fast);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile nav overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 80px 20px 40px;
        }

        .mobile-nav-overlay.active {
            display: flex;
        }

        .mobile-nav-overlay a {
            font-size: 18px;
            color: var(--color-text-secondary);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            transition: color var(--transition-fast), background var(--transition-fast);
            font-weight: 500;
        }

        .mobile-nav-overlay a.active {
            color: var(--color-primary);
            font-weight: 600;
            background: var(--color-primary-light);
        }

        .mobile-nav-overlay a:hover {
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        /* Main */
        main {
            flex: 1;
        }

        /* Section spacing */
        .section {
            padding: 60px 0;
        }

        .section--alt {
            background: var(--bg-data-section);
        }

        .section__header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section__title {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .section__subtitle {
            font-size: 15px;
            color: var(--color-text-aux);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Hero */
        .hero {
            background: linear-gradient(160deg, #f4f7fb 0%, #eaf0f7 40%, #e8f5f0 100%);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero__text h1 {
            font-size: 30px;
            font-weight: 700;
            color: var(--color-text-main);
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .hero__text h1 .highlight {
            color: var(--color-primary);
        }

        .hero__text .hero__desc {
            font-size: 16px;
            color: var(--color-text-aux);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .hero__tags span {
            display: inline-block;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 500;
            color: #1a6e4e;
            background: #d4f5e8;
            border-radius: var(--radius-tag);
            white-space: nowrap;
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: var(--color-primary);
            border-radius: var(--radius-btn);
            text-decoration: none;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--color-primary-hover);
            text-decoration: none;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 184, 132, 0.25);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            color: var(--color-primary);
            background: transparent;
            border: 2px solid var(--color-primary);
            border-radius: var(--radius-btn);
            text-decoration: none;
            transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: #e6f7f1;
            text-decoration: none;
            color: var(--color-primary-hover);
            transform: translateY(-2px);
        }

        .hero__data-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero__data-card .featured-player {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .featured-player__avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8f5f0, #c8f0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--color-primary);
            flex-shrink: 0;
        }

        .featured-player__info .fp-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text-main);
        }

        .featured-player__info .fp-team {
            font-size: 13px;
            color: var(--color-text-aux);
        }

        .hero__data-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .hero__data-item {
            text-align: center;
            background: #f9fbfd;
            border-radius: var(--radius-tag);
            padding: 12px 8px;
        }

        .hero__data-item .data-value {
            font-family: var(--font-data);
            font-size: 22px;
            font-weight: 700;
            color: var(--color-accent-gold);
            line-height: 1;
        }

        .hero__data-item .data-value.green {
            color: var(--color-primary);
        }

        .hero__data-item .data-label {
            font-size: 12px;
            color: var(--color-text-weak);
            margin-top: 4px;
        }

        /* Search bar */
        .search-bar-wrap {
            display: flex;
            gap: 0;
            max-width: 500px;
        }

        .search-bar-wrap input {
            flex: 1;
            border-radius: var(--radius-btn) 0 0 var(--radius-btn);
            border-right: none;
        }

        .search-bar-wrap button {
            padding: 10px 20px;
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
            transition: background var(--transition-fast);
            white-space: nowrap;
        }

        .search-bar-wrap button:hover {
            background: var(--color-primary-hover);
        }

        /* Filter tabs */
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .filter-tab {
            padding: 7px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: #fff;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .filter-tab:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .filter-tab.active {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
            font-weight: 600;
        }

        /* Player cards grid */
        .player-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .player-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-card);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .player-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .player-card__top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .player-card__avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e0eff9, #c8ddf5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--color-accent-blue);
            flex-shrink: 0;
        }

        .player-card__avatar.lol {
            background: linear-gradient(135deg, #e8f5f0, #c8f0e0);
            color: #00b884;
        }

        .player-card__avatar.dota {
            background: linear-gradient(135deg, #fdf2e0, #f8e0c0);
            color: #f0a030;
        }

        .player-card__avatar.cs {
            background: linear-gradient(135deg, #e8eef5, #cdd8e8);
            color: #2c5ea0;
        }

        .player-card__info .pc-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-text-main);
        }

        .player-card__info .pc-role {
            font-size: 12px;
            color: var(--color-text-weak);
            margin-top: 2px;
        }

        .player-card__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            background: #f9fbfd;
            border-radius: var(--radius-tag);
            padding: 10px;
        }

        .player-card__stats .stat-item {
            text-align: center;
        }

        .stat-item .stat-val {
            font-family: var(--font-data);
            font-size: 18px;
            font-weight: 700;
            color: var(--color-accent-gold);
            line-height: 1;
        }

        .stat-item .stat-val.kda-high {
            color: var(--color-primary);
        }

        .stat-item .stat-lbl {
            font-size: 11px;
            color: var(--color-text-weak);
            margin-top: 2px;
        }

        .player-card__heroes {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .player-card__heroes span {
            font-size: 11px;
            padding: 3px 10px;
            background: #f0f4f8;
            border-radius: 12px;
            color: var(--color-text-aux);
            white-space: nowrap;
        }

        .player-card__team {
            font-size: 13px;
            color: var(--color-accent-blue);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .player-card__team .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-primary);
            display: inline-block;
        }

        /* Ranking list */
        .ranking-list {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .ranking-list__header {
            display: grid;
            grid-template-columns: 50px 1fr 100px 120px 90px;
            gap: 10px;
            padding: 14px 20px;
            background: #f8fafc;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-text-aux);
            border-bottom: 2px solid var(--color-border-light);
        }

        .ranking-list__row {
            display: grid;
            grid-template-columns: 50px 1fr 100px 120px 90px;
            gap: 10px;
            padding: 14px 20px;
            align-items: center;
            border-bottom: 1px solid var(--color-border-light);
            transition: background var(--transition-fast);
            font-size: 14px;
        }

        .ranking-list__row:hover {
            background: var(--color-hover-row);
        }

        .ranking-list__row:last-child {
            border-bottom: none;
        }

        .rank-num {
            font-family: var(--font-data);
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text-weak);
            text-align: center;
        }

        .rank-num.top1 {
            color: #f0a030;
            font-size: 22px;
        }

        .rank-num.top2 {
            color: #b0b8c0;
            font-size: 20px;
        }

        .rank-num.top3 {
            color: #c8946c;
            font-size: 20px;
        }

        .rank-player {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rank-player .rp-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #eef2f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--color-accent-blue);
            flex-shrink: 0;
        }

        .rank-player .rp-name {
            font-weight: 600;
            color: var(--color-text-main);
        }

        .rank-kda {
            font-family: var(--font-data);
            font-weight: 700;
            color: var(--color-accent-gold);
            text-align: center;
            font-size: 15px;
        }

        .rank-team {
            color: var(--color-text-aux);
            font-size: 13px;
            text-align: center;
        }

        .rank-game {
            font-size: 12px;
            text-align: center;
        }

        .rank-game span {
            display: inline-block;
            padding: 3px 10px;
            background: #f0f4f8;
            border-radius: 12px;
            color: var(--color-text-aux);
        }

        /* Comparison module */
        .compare-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .compare-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
        }

        .compare-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .compare-card.featured {
            border: 2px solid var(--color-primary);
            position: relative;
        }

        .compare-card.featured::before {
            content: 'TOP';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent-gold);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: 10px;
            letter-spacing: 1px;
        }

        .compare-card__avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 12px;
            background: linear-gradient(135deg, #e8f5f0, #c8f0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--color-primary);
        }

        .compare-card__name {
            font-size: 17px;
            font-weight: 700;
            color: var(--color-text-main);
        }

        .compare-card__team {
            font-size: 13px;
            color: var(--color-text-aux);
            margin-bottom: 14px;
        }

        .compare-card__metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            text-align: center;
        }

        .compare-card__metrics .cm-item {
            background: #f9fbfd;
            border-radius: 6px;
            padding: 10px 6px;
        }

        .cm-item .cm-val {
            font-family: var(--font-data);
            font-size: 18px;
            font-weight: 700;
            color: var(--color-accent-gold);
            line-height: 1;
        }

        .cm-item .cm-lbl {
            font-size: 11px;
            color: var(--color-text-weak);
            margin-top: 3px;
        }

        /* Data dimension cards */
        .dimension-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .dimension-card {
            background: #fff;
            border-radius: var(--radius-card-sm);
            padding: 20px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: transform var(--transition-smooth);
        }

        .dimension-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .dimension-card__icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .dimension-card__icon.green {
            background: #e6f7f1;
            color: #00b884;
        }

        .dimension-card__icon.blue {
            background: #e8f0fa;
            color: #2c5ea0;
        }

        .dimension-card__icon.gold {
            background: #fef6e8;
            color: #f0a030;
        }

        .dimension-card__icon.red {
            background: #fdeaea;
            color: #e53e3e;
        }

        .dimension-card__title {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-main);
            margin-bottom: 4px;
        }

        .dimension-card__desc {
            font-size: 12px;
            color: var(--color-text-weak);
            line-height: 1.5;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .review-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .review-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-card__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #eef2f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: var(--color-accent-blue);
            flex-shrink: 0;
        }

        .review-card__user .ru-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-main);
        }

        .review-card__user .ru-tag {
            font-size: 11px;
            color: #1a6e4e;
            background: #d4f5e8;
            padding: 2px 8px;
            border-radius: 10px;
            display: inline-block;
            margin-top: 2px;
        }

        .review-card__stars {
            color: #f0a030;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .review-card__text {
            font-size: 13px;
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .review-card__time {
            font-size: 11px;
            color: var(--color-text-weak);
        }

        .review-card--highlight {
            grid-column: 1 / -1;
            max-width: 500px;
            margin: 0 auto;
            border: 1px solid var(--color-primary);
            background: #fafffd;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card-sm);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .faq-item__question {
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-main);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background var(--transition-fast);
            user-select: none;
        }

        .faq-item__question:hover {
            background: #f9fbfd;
        }

        .faq-item__question .q-badge {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--color-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .faq-item__question .q-text {
            flex: 1;
        }

        .faq-item__question .q-toggle {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text-weak);
            transition: transform var(--transition-expand);
            flex-shrink: 0;
        }

        .faq-item.open .faq-item__question .q-toggle {
            transform: rotate(45deg);
            color: var(--color-primary);
        }

        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-expand), padding var(--transition-expand);
            background: #f8fafb;
        }

        .faq-item.open .faq-item__answer {
            max-height: 300px;
            padding: 16px 20px 16px 60px;
        }

        .faq-item__answer p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a2b3d 0%, #1e3a52 60%, #1a2b3d 100%);
            padding: 56px 0;
            text-align: center;
            color: #fff;
        }

        .cta-section .section__title {
            color: #fff;
            font-size: 26px;
        }

        .cta-section .section__subtitle {
            color: #c0ccd8;
        }

        .cta-section .btn-primary {
            margin-top: 20px;
            font-size: 16px;
            padding: 14px 36px;
        }

        /* Footer */
        .footer {
            background: var(--bg-dark);
            color: #c0ccd8;
            padding: 48px 0 24px;
            font-size: 14px;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer__brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: #a0b0c0;
        }

        .footer__col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer__col a {
            display: block;
            color: #a0b0c0;
            text-decoration: none;
            padding: 4px 0;
            font-size: 13px;
            transition: color var(--transition-fast);
        }

        .footer__col a:hover {
            color: #fff;
            text-decoration: none;
        }

        .footer__bottom {
            border-top: 1px solid #2d4055;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #8899aa;
            line-height: 2;
        }

        .footer__bottom .sep {
            margin: 0 8px;
            color: #3d5065;
        }

        .footer__bottom a {
            color: #8899aa;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer__bottom a:hover {
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hero__text h1 {
                font-size: 26px;
            }

            .player-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .compare-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .compare-card:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }

            .dimension-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ranking-list__header,
            .ranking-list__row {
                grid-template-columns: 40px 1fr 80px 90px 70px;
                font-size: 13px;
                padding: 10px 12px;
            }
        }

        @media (max-width: 768px) {
            .nav__links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header__actions .btn-nav-cta {
                display: none;
            }

            .hero {
                padding: 40px 0;
            }

            .hero__text h1 {
                font-size: 24px;
            }

            .hero__data-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .hero__data-item .data-value {
                font-size: 18px;
            }

            .section {
                padding: 40px 0;
            }

            .section__title {
                font-size: 20px;
            }

            .player-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .player-card {
                padding: 16px;
            }

            .player-card__stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 4px;
                padding: 8px;
            }

            .stat-item .stat-val {
                font-size: 15px;
            }

            .compare-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .compare-card:nth-child(3) {
                max-width: 100%;
            }

            .dimension-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .review-card--highlight {
                max-width: 100%;
            }

            .ranking-list__header {
                display: none;
            }

            .ranking-list__row {
                grid-template-columns: 36px 1fr 70px;
                gap: 6px;
                padding: 12px;
                flex-wrap: wrap;
                position: relative;
            }

            .ranking-list__row .rank-team,
            .ranking-list__row .rank-game {
                display: none;
            }

            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .filter-tabs {
                gap: 5px;
            }

            .filter-tab {
                padding: 6px 13px;
                font-size: 12px;
            }

            .search-bar-wrap {
                max-width: 100%;
            }
        }

        @media (max-width: 520px) {
            .hero__text h1 {
                font-size: 22px;
            }

            .hero__data-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .player-grid {
                grid-template-columns: 1fr;
            }

            .player-card {
                flex-direction: column;
            }

            .dimension-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .dimension-card {
                padding: 14px;
            }

            .ranking-list__row {
                grid-template-columns: 30px 1fr 60px;
                font-size: 12px;
                padding: 10px;
            }

            .rank-num {
                font-size: 15px;
            }

            .rank-num.top1 {
                font-size: 18px;
            }

            .hero__actions {
                flex-direction: column;
            }

            .btn-primary,
            .btn-outline {
                justify-content: center;
                text-align: center;
            }

            .footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #00b884;
            --primary-hover: #009a6d;
            --primary-light: #e6f7f1;
            --blue: #2c5ea0;
            --blue-hover: #234d85;
            --gold: #f0a030;
            --gold-light: #fef8ed;
            --red: #e53e3e;
            --red-light: #fef2f2;
            --bg: #f4f7fb;
            --bg-alt: #eef2f8;
            --card-bg: #ffffff;
            --text-dark: #1a2b3c;
            --text-body: #3d4f60;
            --text-muted: #5f7180;
            --text-light: #8899aa;
            --border: #e2e8f0;
            --border-light: #e8ecf1;
            --shadow: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-md: 0 4px 20px rgba(26, 43, 60, 0.08);
            --shadow-hover: 0 8px 28px rgba(26, 43, 60, 0.12);
            --radius: 10px;
            --radius-sm: 8px;
            --radius-xs: 6px;
            --radius-pill: 24px;
            --radius-card: 12px;
            --nav-height: 64px;
            --nav-height-mobile: 56px;
            --container-max: 1200px;
            --section-gap: 80px;
            --section-gap-mobile: 48px;
            --card-padding: 24px;
            --grid-gap: 24px;
            --grid-gap-tablet: 16px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --font-data: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-body);
            background-color: var(--bg);
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        input {
            font-family: inherit;
            outline: none;
            border: none;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4 {
            color: var(--text-dark);
            line-height: 1.3;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER / NAV ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition-fast);
        }
        .header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 43, 60, 0.08);
        }
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .header__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .header__logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .nav__links {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav__links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 15px;
            color: var(--text-body);
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
            position: relative;
            font-weight: 500;
        }
        .nav__links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav__links a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--primary-light);
        }
        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        .header__cta {
            flex-shrink: 0;
            margin-left: 12px;
        }
        .btn-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }
        .btn-nav:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 24px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height-mobile);
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 999;
            padding: 24px;
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
        }
        .mobile-menu-overlay.active {
            display: flex;
        }
        .mobile-menu-overlay a {
            display: block;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-body);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .mobile-menu-overlay a:hover,
        .mobile-menu-overlay a.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .nav__links a {
                padding: 7px 12px;
                font-size: 14px;
            }
            .nav__links {
                gap: 2px;
            }
        }
        @media (max-width: 860px) {
            .nav__links {
                display: none;
            }
            .header__cta {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header {
                height: var(--nav-height-mobile);
            }
        }

        /* ========== HERO ========== */
        .hero {
            background: linear-gradient(175deg, #f4f7fb 0%, #eaf0f7 40%, #e4ecf5 100%);
            padding: 56px 0 52px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -60px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(44, 94, 160, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero__inner {
            display: flex;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero__text {
            flex: 1;
        }
        .hero__badge {
            display: inline-block;
            padding: 5px 14px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .hero__title {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .hero__title span {
            color: var(--primary);
        }
        .hero__subtitle {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .hero__tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .hero__tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .hero__tag--hot {
            background: #fef8ed;
            border-color: #f0d080;
            color: #c07a1a;
        }
        .hero__tag-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .hero__search-wrap {
            display: flex;
            gap: 0;
            max-width: 440px;
        }
        .hero__search-input {
            flex: 1;
            padding: 13px 18px;
            font-size: 15px;
            border: 2px solid var(--border);
            border-right: none;
            border-radius: var(--radius-pill) 0 0 var(--radius-pill);
            background: #fff;
            color: var(--text-dark);
            transition: border-color var(--transition-fast);
        }
        .hero__search-input:focus {
            border-color: var(--primary);
        }
        .hero__search-input::placeholder {
            color: var(--text-light);
        }
        .hero__search-btn {
            padding: 13px 22px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
            white-space: nowrap;
            transition: background var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero__search-btn:hover {
            background: var(--primary-hover);
        }
        .hero__visual {
            flex: 0 0 380px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            align-items: center;
        }
        .hero__stat-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px 18px;
            text-align: center;
            box-shadow: var(--shadow);
            width: 110px;
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .hero__stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .hero__stat-card--wide {
            width: 160px;
        }
        .hero__stat-num {
            font-family: var(--font-data);
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }
        .hero__stat-num--green {
            color: var(--primary);
        }
        .hero__stat-num--blue {
            color: var(--blue);
        }
        .hero__stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
            line-height: 1.3;
        }

        @media (max-width: 900px) {
            .hero__inner {
                flex-direction: column;
                gap: 32px;
            }
            .hero__visual {
                flex: 0 0 auto;
                width: 100%;
            }
            .hero__stat-card {
                width: 90px;
                padding: 14px 10px;
            }
            .hero__stat-card--wide {
                width: 130px;
            }
            .hero__stat-num {
                font-size: 22px;
            }
            .hero__title {
                font-size: 24px;
            }
            .hero__subtitle {
                font-size: 15px;
            }
            .hero__search-wrap {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 36px 0 32px;
            }
            .hero__title {
                font-size: 21px;
            }
            .hero__visual {
                gap: 8px;
            }
            .hero__stat-card {
                width: 75px;
                padding: 12px 8px;
                border-radius: var(--radius-sm);
            }
            .hero__stat-card--wide {
                width: 110px;
            }
            .hero__stat-num {
                font-size: 18px;
            }
            .hero__stat-label {
                font-size: 11px;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section--alt {
            background: var(--bg-alt);
        }
        .section__header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section__header--left {
            text-align: left;
        }
        .section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section__title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .section__desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-gap-mobile) 0;
            }
            .section__title {
                font-size: 20px;
            }
            .section__header {
                margin-bottom: 28px;
            }
        }

        /* ========== STATS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-top: -28px;
            position: relative;
            z-index: 2;
        }
        .stat-mini-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 18px 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all var(--transition-smooth);
        }
        .stat-mini-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .stat-mini-card__icon {
            font-size: 22px;
            margin-bottom: 6px;
        }
        .stat-mini-card__num {
            font-family: var(--font-data);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1;
        }
        .stat-mini-card__num--accent {
            color: var(--primary);
        }
        .stat-mini-card__num--gold {
            color: var(--gold);
        }
        .stat-mini-card__label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        @media (max-width: 1024px) {
            .stats-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-mini-card {
                padding: 14px 10px;
            }
            .stat-mini-card__num {
                font-size: 20px;
            }
        }

        /* ========== TEAM CARDS GRID ========== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .team-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: var(--card-padding);
            box-shadow: var(--shadow);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .team-card__badge {
            position: absolute;
            top: 14px;
            right: 14px;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
            background: var(--primary-light);
            color: var(--primary);
        }
        .team-card__badge--hot {
            background: #fef8ed;
            color: #c07a1a;
        }
        .team-card__badge--new {
            background: #eef4ff;
            color: var(--blue);
        }
        .team-card__logo {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 14px;
            border: 3px solid var(--border-light);
            background: #f9fafb;
        }
        .team-card__name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .team-card__region {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .team-card__region-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }
        .team-card__region-dot--lpl {
            background: #e53e3e;
        }
        .team-card__region-dot--lck {
            background: #2c5ea0;
        }
        .team-card__region-dot--lec {
            background: #f0a030;
        }
        .team-card__region-dot--cn {
            background: #e53e3e;
        }
        .team-card__region-dot--eu {
            background: #5f7180;
        }
        .team-card__region-dot--kpl {
            background: #f0a030;
        }
        .team-card__winrate {
            width: 100%;
            margin-bottom: 10px;
        }
        .team-card__winrate-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .team-card__winrate-bar {
            height: 6px;
            background: #e8ecf1;
            border-radius: 3px;
            overflow: hidden;
        }
        .team-card__winrate-fill {
            height: 100%;
            border-radius: 3px;
            background: var(--primary);
            transition: width 0.6s ease;
        }
        .team-card__winrate-fill--high {
            background: var(--primary);
        }
        .team-card__winrate-fill--mid {
            background: var(--gold);
        }
        .team-card__winrate-fill--low {
            background: #8899aa;
        }
        .team-card__players {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .team-card__players strong {
            color: var(--text-body);
            font-weight: 500;
        }
        .team-card__game-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-xs);
            font-size: 11px;
            font-weight: 500;
            background: #eef4ff;
            color: var(--blue);
            margin-top: 10px;
        }
        .team-card__game-tag--lol {
            background: #fef2f2;
            color: #c53030;
        }
        .team-card__game-tag--kog {
            background: #fef8ed;
            color: #c07a1a;
        }
        .team-card__game-tag--dota {
            background: #eef4ff;
            color: #2c5ea0;
        }
        .team-card__game-tag--cs2 {
            background: #f0f4f8;
            color: #5f7180;
        }
        .team-card__game-tag--val {
            background: #e6f7f1;
            color: #009a6d;
        }

        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: var(--grid-gap-tablet);
            }
            .team-card {
                flex-direction: row;
                text-align: left;
                gap: 16px;
                align-items: flex-start;
                padding: 18px;
            }
            .team-card__logo {
                width: 48px;
                height: 48px;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            .team-card__badge {
                top: 10px;
                right: 10px;
                font-size: 10px;
            }
            .team-card__info-wrap {
                flex: 1;
                min-width: 0;
            }
            .team-card__winrate {
                margin-bottom: 6px;
            }
        }

        /* ========== RANKING LIST ========== */
        .ranking-list {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .ranking-list__header {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: #fafcfd;
            border-bottom: 1px solid var(--border-light);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .ranking-list__header-rank {
            width: 56px;
            text-align: center;
        }
        .ranking-list__header-team {
            flex: 1;
        }
        .ranking-list__header-region {
            width: 100px;
            text-align: center;
        }
        .ranking-list__header-winrate {
            width: 120px;
            text-align: center;
        }
        .ranking-list__header-hot {
            width: 80px;
            text-align: center;
        }
        .ranking-row {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .ranking-row:last-child {
            border-bottom: none;
        }
        .ranking-row:hover {
            background: #f7fafd;
        }
        .ranking-row--top {
            background: #fffdf7;
        }
        .ranking-row--top:hover {
            background: #fef9eb;
        }
        .ranking-row__rank {
            width: 56px;
            text-align: center;
            font-family: var(--font-data);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-muted);
        }
        .ranking-row__rank--gold {
            color: #d4a017;
            font-size: 22px;
        }
        .ranking-row__rank--silver {
            color: #8a8a8a;
            font-size: 20px;
        }
        .ranking-row__rank--bronze {
            color: #b87333;
            font-size: 20px;
        }
        .ranking-row__team-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }
        .ranking-row__team-logo {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background: #f9fafb;
            border: 2px solid var(--border-light);
        }
        .ranking-row__team-name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-row__region {
            width: 100px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        .ranking-row__winrate {
            width: 120px;
            text-align: center;
            font-family: var(--font-data);
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }
        .ranking-row__winrate--high {
            color: var(--primary);
        }
        .ranking-row__hot {
            width: 80px;
            text-align: center;
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
        }
        .ranking-row__hot-icon {
            display: inline-block;
            margin-right: 2px;
        }

        @media (max-width: 768px) {
            .ranking-list__header-region,
            .ranking-row__region {
                display: none;
            }
            .ranking-list__header-hot,
            .ranking-row__hot {
                width: 60px;
                font-size: 11px;
            }
            .ranking-list__header-winrate,
            .ranking-row__winrate {
                width: 80px;
                font-size: 12px;
            }
            .ranking-list__header-rank,
            .ranking-row__rank {
                width: 40px;
                font-size: 15px;
            }
            .ranking-row {
                padding: 12px 14px;
            }
            .ranking-row__team-name {
                font-size: 13px;
            }
            .ranking-row__team-logo {
                width: 28px;
                height: 28px;
            }
        }
        @media (max-width: 480px) {
            .ranking-list__header-winrate,
            .ranking-row__winrate {
                display: none;
            }
            .ranking-row__team-info {
                gap: 8px;
            }
        }

        /* ========== REGION DISTRIBUTION ========== */
        .region-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .region-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
        }
        .region-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .region-card--lpl {
            border-left-color: #e53e3e;
        }
        .region-card--lck {
            border-left-color: #2c5ea0;
        }
        .region-card--lec {
            border-left-color: #f0a030;
        }
        .region-card--kpl {
            border-left-color: #f0a030;
        }
        .region-card--cn {
            border-left-color: #e53e3e;
        }
        .region-card--eu {
            border-left-color: #5f7180;
        }
        .region-card--intl {
            border-left-color: #00b884;
        }
        .region-card--sea {
            border-left-color: #8b5cf6;
        }
        .region-card__name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .region-card__count {
            font-family: var(--font-data);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .region-card__desc {
            font-size: 13px;
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .region-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .region-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .region-card {
                padding: 16px;
            }
            .region-card__count {
                font-size: 24px;
            }
            .region-card__name {
                font-size: 14px;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .review-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow);
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .review-card__header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .review-card__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e8ecf1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .review-card__name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }
        .review-card__tag {
            font-size: 11px;
            color: var(--primary);
            background: var(--primary-light);
            padding: 2px 8px;
            border-radius: var(--radius-xs);
            display: inline-block;
            margin-top: 2px;
        }
        .review-card__stars {
            color: #f0a030;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .review-card__text {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 8px;
        }
        .review-card__time {
            font-size: 12px;
            color: var(--text-light);
        }

        @media (max-width: 900px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: border-color var(--transition-fast);
        }
        .faq-item.open {
            border-color: var(--primary);
        }
        .faq-item__question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: none;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            text-align: left;
            cursor: pointer;
            gap: 12px;
        }
        .faq-item__q-badge {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: var(--radius-xs);
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .faq-item__question-text {
            flex: 1;
            min-width: 0;
        }
        .faq-item__icon {
            flex-shrink: 0;
            font-size: 18px;
            color: var(--text-light);
            transition: transform var(--transition-fast);
        }
        .faq-item.open .faq-item__icon {
            transform: rotate(45deg);
            color: var(--primary);
        }
        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-item__answer {
            max-height: 300px;
        }
        .faq-item__answer-inner {
            padding: 0 20px 18px 60px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            background: #fafcfd;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #1a2b3d 0%, #1e3348 100%);
            padding: 56px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section__title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-section__desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .cta-section__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-pill);
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1;
        }
        .cta-section__btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0, 184, 132, 0.35);
        }
        .cta-section__btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-pill);
            border: 2px solid rgba(255, 255, 255, 0.4);
            margin-left: 12px;
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1;
        }
        .cta-section__btn-secondary:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        @media (max-width: 520px) {
            .cta-section {
                padding: 40px 0;
            }
            .cta-section__title {
                font-size: 21px;
            }
            .cta-section__btn-secondary {
                margin-left: 0;
                margin-top: 10px;
                display: block;
                max-width: 220px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #1a2b3d;
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 28px;
            font-size: 14px;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 32px;
        }
        .footer__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .footer__brand-desc {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.55);
            max-width: 280px;
        }
        .footer__col-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer__col a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            margin-bottom: 8px;
            transition: color var(--transition-fast);
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 2;
        }
        .footer__bottom a {
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition-fast);
        }
        .footer__bottom a:hover {
            color: var(--primary);
        }
        .footer__bottom .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 860px) {
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 520px) {
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .footer__brand-desc {
                max-width: 100%;
            }
        }

        /* ========== UTILITY ========== */
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-24 {
            margin-bottom: 24px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        @media (max-width: 860px) {
            .hide-mobile {
                display: none !important;
            }
        }
        @media (min-width: 861px) {
            .show-mobile-only {
                display: none !important;
            }
        }

/* roulang page: category5 */
/* 设计变量 */
    :root {
      --primary: #00b884;
      --primary-dark: #009a6d;
      --primary-light: #e6f7f1;
      --blue: #2c5ea0;
      --gold: #f0a030;
      --red: #e53e3e;
      --bg: #f4f7fb;
      --card-bg: #ffffff;
      --dark-bg: #1a2b3d;
      --text-dark: #1a2b3c;
      --text-mid: #3d4f60;
      --text-light: #5f7180;
      --text-weak: #8899aa;
      --border: #e2e8f0;
      --border-light: #e8ecf1;
      --shadow-sm: 0 2px 16px rgba(26, 43, 60, 0.06);
      --shadow-md: 0 6px 24px rgba(26, 43, 60, 0.10);
      --shadow-lg: 0 8px 28px rgba(26, 43, 60, 0.12);
      --radius-card: 12px;
      --radius-btn: 24px;
      --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
      --font-mono: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
    }

    /* 基础重置 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border: 0 solid var(--border);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-sans);
      background-color: var(--bg);
      color: var(--text-mid);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 导航栏 */
    .header {
      background: #ffffff;
      border-bottom: 1px solid var(--border-light);
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      white-space: nowrap;
    }

    .nav__logo span {
      color: var(--primary);
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav__links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-mid);
      position: relative;
      padding: 8px 0;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav__links a:hover {
      color: var(--primary);
    }

    .nav__links a.active {
      color: var(--primary);
      border-bottom: 3px solid var(--primary);
    }

    .nav__cta {
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: var(--radius-btn);
      transition: background 0.2s, transform 0.2s;
    }

    .nav__cta:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    /* 移动端菜单 */
    .nav__toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav__toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-dark);
      margin: 5px 0;
      transition: 0.3s;
    }

    @media (max-width: 1024px) {
      .nav__links {
        gap: 24px;
      }
      .nav__links a {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .nav__links {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-md);
        z-index: 999;
      }
      .nav__links.active {
        transform: translateY(0);
      }
      .nav__toggle {
        display: block;
      }
      .nav__cta {
        display: none;
      }
    }

    /* 板块通用 */
    .section {
      padding: 80px 0;
    }

    .section__header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section__title {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }

    .section__subtitle {
      font-size: 16px;
      color: var(--text-light);
      max-width: 640px;
      margin: 0 auto;
    }

    /* 卡片 */
    .card {
      background: var(--card-bg);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    /* 标签 */
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
    }

    .badge--red {
      background: #fef2f2;
      color: #dc2626;
    }

    .badge--gold {
      background: #fffbeb;
      color: #d97706;
    }

    .badge--green {
      background: var(--primary-light);
      color: var(--primary);
    }

    .badge--blue {
      background: #eff6ff;
      color: var(--blue);
    }

    /* 按钮 */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 15px;
      transition: all 0.2s;
      cursor: pointer;
      gap: 8px;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--primary);
      color: #fff;
    }

    .btn--primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn--outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn--outline:hover {
      background: var(--primary-light);
    }

    .btn--sm {
      padding: 6px 16px;
      font-size: 13px;
      border-radius: 8px;
    }

    /* 直播脉冲动画 */
    @keyframes pulse-live {
      0% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.2); }
      100% { opacity: 1; transform: scale(1); }
    }

    .live-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ef4444;
      border-radius: 50%;
      margin-right: 6px;
      animation: pulse-live 1.5s infinite;
    }

    /* 页脚 */
    .footer {
      background: var(--dark-bg);
      color: #cbd5e1;
      padding: 60px 0 20px;
      font-size: 14px;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer__brand-name {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer__brand-desc {
      line-height: 1.7;
      color: #94a3b8;
    }

    .footer__col-title {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer__col a {
      display: block;
      margin-bottom: 10px;
      color: #94a3b8;
      transition: color 0.2s;
    }

    .footer__col a:hover {
      color: var(--primary);
    }

    .footer__bottom {
      border-top: 1px solid #334155;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      color: #64748b;
      font-size: 13px;
    }

    .footer__bottom a {
      color: #94a3b8;
      margin: 0 6px;
    }

    .sep {
      margin: 0 8px;
    }

    @media (max-width: 768px) {
      .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .section {
        padding: 60px 0;
      }
      .section__title {
        font-size: 22px;
      }
    }

    @media (max-width: 480px) {
      .section {
        padding: 40px 0;
      }
    }

/* roulang page: category4 */
:root {
            --bg: #f4f7fb;
            --card-bg: #ffffff;
            --data-bg: #eef2f8;
            --dark-bg: #1a2b3d;
            --primary: #00b884;
            --primary-hover: #009a6d;
            --primary-light: #e6f7f1;
            --accent-blue: #2c5ea0;
            --accent-gold: #f0a030;
            --accent-red: #e53e3e;
            --text-dark: #1a2b3c;
            --text-body: #3d4f60;
            --text-muted: #5f7180;
            --text-weak: #8899aa;
            --border: #e2e8f0;
            --border-light: #e8ecf1;
            --radius-sm: 8px;
            --radius: 10px;
            --radius-lg: 12px;
            --radius-btn: 24px;
            --shadow-card: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-hover: 0 8px 28px rgba(26, 43, 60, 0.12);
            --shadow-data: 0 4px 20px rgba(26, 43, 60, 0.08);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            --font-mono: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
            --nav-height: 64px;
            --nav-height-mobile: 56px;
            --container-max: 1200px;
            --section-gap: 80px;
            --section-gap-mobile: 48px;
            --card-pad: 24px;
            --card-pad-sm: 20px;
            --grid-gap: 24px;
            --grid-gap-sm: 16px;
            --transition: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-body);
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        button {
            cursor: pointer;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--text-dark);
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition);
        }

        .header--scrolled {
            box-shadow: 0 1px 8px rgba(26, 43, 60, 0.06);
        }

        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }

        .header__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.3px;
            flex-shrink: 0;
            text-decoration: none;
            white-space: nowrap;
        }

        .header__logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: nowrap;
        }

        .nav__links a {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 8px 14px;
            border-radius: 6px;
            position: relative;
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
            text-decoration: none;
        }

        .nav__links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav__links a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 3px;
            border-radius: 3px;
            background: var(--primary);
        }

        .header__cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
            text-decoration: none;
        }

        .header__cta-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(0, 184, 132, 0.3);
        }

        .header__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
        }

        .header__hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        @media (max-width: 991px) {
            .nav__links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 28px 28px;
                gap: 4px;
                box-shadow: -4px 0 24px rgba(26, 43, 60, 0.12);
                transition: right var(--transition);
                z-index: 999;
            }

            .nav__links--open {
                right: 0;
            }

            .nav__links a {
                width: 100%;
                padding: 12px 16px;
                font-size: 15px;
            }

            .nav__links a.active::after {
                display: none;
            }

            .nav__links a.active {
                background: var(--primary-light);
                border-radius: 8px;
            }

            .header__hamburger {
                display: flex;
            }

            .header__cta-btn {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

        @media (max-width: 640px) {
            .header {
                height: var(--nav-height-mobile);
            }

            .header__logo {
                font-size: 17px;
                gap: 6px;
            }

            .header__logo-icon {
                width: 28px;
                height: 28px;
                font-size: 15px;
                border-radius: 6px;
            }

            .header__cta-btn {
                font-size: 12px;
                padding: 7px 12px;
                border-radius: 20px;
            }

            .nav__links {
                width: 260px;
                padding: 70px 20px 20px;
            }
        }

        /* ========== MAIN ========== */
        .main {
            flex: 1;
        }

        /* ========== HERO ========== */
        .hero {
            background: linear-gradient(175deg, #f4f7fb 0%, #eaf0f7 50%, #e2ebf5 100%);
            padding: 64px 0 56px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -120px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -80px;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(44, 94, 160, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero__inner {
            display: flex;
            align-items: center;
            gap: 48px;
            position: relative;
            z-index: 1;
        }

        .hero__text {
            flex: 1;
            min-width: 0;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .hero__badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }

        .hero__title {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            line-height: 1.25;
        }

        .hero__subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 20px;
            max-width: 460px;
            line-height: 1.6;
        }

        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .hero__tag {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-blue);
            background: #eef3fa;
            padding: 6px 14px;
            border-radius: 20px;
            transition: background var(--transition), color var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }

        .hero__tag:hover {
            background: #dce6f2;
            color: #1e4478;
        }

        .hero__btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero__visual {
            flex-shrink: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 380px;
        }

        .hero__mini-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: transform var(--transition), box-shadow var(--transition);
            cursor: default;
        }

        .hero__mini-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .hero__mini-icon {
            font-size: 28px;
            margin-bottom: 6px;
        }

        .hero__mini-num {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .hero__mini-label {
            font-size: 12px;
            color: var(--text-weak);
            margin-top: 2px;
        }

        @media (max-width: 991px) {
            .hero__inner {
                flex-direction: column;
                gap: 28px;
                text-align: center;
            }
            .hero__subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero__tags {
                justify-content: center;
            }
            .hero__btns {
                justify-content: center;
            }
            .hero__visual {
                width: 100%;
                max-width: 400px;
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }
            .hero__mini-card {
                padding: 12px 8px;
            }
            .hero__mini-icon {
                font-size: 22px;
            }
            .hero__mini-num {
                font-size: 17px;
            }
            .hero__mini-label {
                font-size: 11px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 40px 0 36px;
            }
            .hero__title {
                font-size: 24px;
            }
            .hero__subtitle {
                font-size: 14px;
            }
            .hero__visual {
                grid-template-columns: repeat(2, 1fr);
                max-width: 280px;
                gap: 6px;
            }
            .hero__mini-card {
                padding: 10px 6px;
            }
            .hero__mini-num {
                font-size: 16px;
            }
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            padding: 11px 24px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            text-decoration: none;
            white-space: nowrap;
        }

        .btn--primary {
            background: var(--primary);
            color: #fff;
        }
        .btn--primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 184, 132, 0.28);
        }
        .btn--outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn--outline:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        .btn--sm {
            padding: 7px 16px;
            font-size: 13px;
            border-radius: 20px;
        }

        @media (max-width: 480px) {
            .btn {
                padding: 10px 18px;
                font-size: 13px;
                border-radius: 20px;
            }
        }

        /* ========== SECTION ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section--alt {
            background: #fff;
        }
        .section--tinted {
            background: #f8fafc;
        }
        .section__header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section__title {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .section__desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-gap-mobile) 0;
            }
            .section__header {
                margin-bottom: 28px;
            }
            .section__title {
                font-size: 20px;
            }
            .section__desc {
                font-size: 14px;
            }
        }

        /* ========== GAME TOPIC CARDS ========== */
        .game-topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }

        .game-topic-card {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform var(--transition), box-shadow var(--transition);
            border: 1px solid var(--border-light);
        }

        .game-topic-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: #d0dbe8;
        }

        .game-topic-card__cover {
            position: relative;
            height: 180px;
            overflow: hidden;
            background: #e8ecf2;
        }
        .game-topic-card__cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .game-topic-card:hover .game-topic-card__cover img {
            transform: scale(1.04);
        }
        .game-topic-card__badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            letter-spacing: 0.3px;
        }

        .game-topic-card__body {
            padding: var(--card-pad);
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .game-topic-card__icon-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2px;
        }
        .game-topic-card__icon-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .game-topic-card__icon-dot--lol {
            background: #d4a843;
        }
        .game-topic-card__icon-dot--wzry {
            background: #e85d3a;
        }
        .game-topic-card__icon-dot--dota {
            background: #c23e2e;
        }
        .game-topic-card__icon-dot--cs2 {
            background: #e89b30;
        }
        .game-topic-card__icon-dot--val {
            background: #ff4655;
        }
        .game-topic-card__icon-dot--pubg {
            background: #f0a030;
        }
        .game-topic-card__icon-dot--hpjy {
            background: #f5a623;
        }

        .game-topic-card__title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: -0.2px;
        }
        .game-topic-card__desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .game-topic-card__stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .game-topic-card__stat {
            font-size: 13px;
            color: var(--text-body);
        }
        .game-topic-card__stat strong {
            color: var(--accent-gold);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
        }
        .game-topic-card__teams {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 2px;
        }
        .game-topic-card__team-tag {
            font-size: 11px;
            font-weight: 500;
            color: var(--accent-blue);
            background: #eef3fa;
            padding: 3px 10px;
            border-radius: 12px;
            white-space: nowrap;
        }
        .game-topic-card__link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-top: auto;
            padding-top: 6px;
            transition: gap var(--transition);
            text-decoration: none;
        }
        .game-topic-card__link:hover {
            gap: 8px;
            color: var(--primary-hover);
        }

        @media (max-width: 991px) {
            .game-topics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .game-topics-grid {
                grid-template-columns: 1fr;
                gap: var(--grid-gap-sm);
            }
            .game-topic-card__cover {
                height: 160px;
            }
            .game-topic-card__body {
                padding: 18px;
            }
            .game-topic-card__title {
                font-size: 16px;
            }
        }

        /* ========== FEATURE BANNER ========== */
        .feature-banner {
            background: var(--dark-bg);
            color: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            gap: 32px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        .feature-banner::after {
            content: '';
            position: absolute;
            right: -30px;
            top: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(0, 184, 132, 0.1);
            pointer-events: none;
        }
        .feature-banner__text {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        .feature-banner__label {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .feature-banner__title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .feature-banner__desc {
            font-size: 14px;
            color: #bcc5d0;
            line-height: 1.6;
            max-width: 460px;
        }
        .feature-banner__btn {
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .feature-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
                gap: 18px;
                margin-top: 28px;
            }
            .feature-banner__desc {
                max-width: 100%;
            }
            .feature-banner__title {
                font-size: 19px;
            }
        }

        /* ========== GAME NEWS MINI LIST ========== */
        .game-news-mini-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .game-news-mini {
            background: #fff;
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: transform var(--transition), box-shadow var(--transition);
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .game-news-mini:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .game-news-mini__meta {
            font-size: 11px;
            color: var(--text-weak);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .game-news-mini__tag {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            white-space: nowrap;
        }
        .game-news-mini__title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .game-news-mini__excerpt {
            font-size: 12px;
            color: var(--text-weak);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 991px) {
            .game-news-mini-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .game-news-mini-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius);
            margin-bottom: 10px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: box-shadow var(--transition);
        }
        .faq-item--open {
            box-shadow: var(--shadow-card);
        }
        .faq-item__q {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            transition: background var(--transition);
            user-select: none;
        }
        .faq-item__q:hover {
            background: #fafcfd;
        }
        .faq-item__q-icon {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }
        .faq-item__q-arrow {
            margin-left: auto;
            font-size: 16px;
            color: var(--text-weak);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item--open .faq-item__q-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-item__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item--open .faq-item__a {
            max-height: 240px;
        }
        .faq-item__a-inner {
            padding: 0 20px 16px 58px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            background: #f8fafb;
        }

        @media (max-width: 640px) {
            .faq-item__q {
                padding: 14px 16px;
                font-size: 14px;
                gap: 8px;
            }
            .faq-item__a-inner {
                padding: 0 16px 14px 46px;
                font-size: 13px;
            }
            .faq-item__q-icon {
                width: 22px;
                height: 22px;
                font-size: 12px;
                border-radius: 5px;
            }
        }

        /* ========== CTA BAND ========== */
        .cta-band {
            background: linear-gradient(135deg, #1a2b3d 0%, #1f3548 100%);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 184, 132, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-band__title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.3px;
        }
        .cta-band__desc {
            font-size: 14px;
            color: #bcc5d0;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .cta-band__btn {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 640px) {
            .cta-band {
                padding: 32px 20px;
                border-radius: var(--radius);
            }
            .cta-band__title {
                font-size: 18px;
            }
            .cta-band__desc {
                font-size: 13px;
            }
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark-bg);
            color: #bcc5d0;
            padding: 48px 0 28px;
            margin-top: auto;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .footer__brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: #8a98a8;
            max-width: 280px;
        }
        .footer__col-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.2px;
        }
        .footer__col a {
            display: block;
            font-size: 13px;
            color: #8a98a8;
            padding: 5px 0;
            transition: color var(--transition);
            text-decoration: none;
        }
        .footer__col a:hover {
            color: var(--primary);
        }
        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #6a7888;
            line-height: 1.8;
        }
        .footer__bottom a {
            color: #8a98a8;
            transition: color var(--transition);
            text-decoration: none;
        }
        .footer__bottom a:hover {
            color: var(--primary);
        }
        .footer__bottom .sep {
            margin: 0 8px;
            color: #4a5568;
        }

        @media (max-width: 768px) {
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer__brand-desc {
                max-width: 100%;
            }
        }
        @media (max-width: 520px) {
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer {
                padding: 32px 0 20px;
            }
        }

        /* ========== MOBILE NAV OVERLAY ========== */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 43, 60, 0.4);
            z-index: 998;
        }
        .nav-overlay--visible {
            display: block;
        }

        @media (min-width: 992px) {
            .nav-overlay--visible {
                display: none;
            }
        }

/* roulang page: category6 */
:root {
            --brand: #00b884;
            --brand-hover: #009a6d;
            --brand-light: #e6f7f1;
            --navy: #1a2b3d;
            --navy-light: #1a2b3c;
            --slate: #3d4f60;
            --muted: #5f7180;
            --soft: #8899aa;
            --gold: #f0a030;
            --alert: #e53e3e;
            --bg-page: #f4f7fb;
            --bg-card: #ffffff;
            --bg-section: #eef2f8;
            --border-light: #e2e8f0;
            --border-subtle: #e8ecf1;
            --link-blue: #2c5ea0;
            --radius-card: 12px;
            --radius-card-sm: 10px;
            --radius-tag: 8px;
            --radius-btn: 24px;
            --radius-btn-sm: 8px;
            --shadow-card: 0 2px 16px rgba(26, 43, 60, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(26, 43, 60, 0.12);
            --shadow-data: 0 4px 20px rgba(26, 43, 60, 0.08);
            --nav-height: 64px;
            --nav-height-mobile: 56px;
            --container-max: 1200px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --transition-slow: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--slate);
            background-color: var(--bg-page);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input,
        select,
        textarea {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== NAVIGATION ========== */
        .nav-bar {
            background: #ffffff;
            height: var(--nav-height);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition-fast);
        }

        .nav-bar.scrolled {
            box-shadow: 0 2px 12px rgba(26, 43, 60, 0.08);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--navy-light);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav__logo-icon {
            width: 36px;
            height: 36px;
            background: var(--brand);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav__links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 14px;
            color: var(--slate);
            border-radius: 6px;
            position: relative;
            transition: all var(--transition-fast);
            white-space: nowrap;
            font-weight: 500;
        }

        .nav__links a:hover {
            color: var(--brand);
            background: var(--brand-light);
        }

        .nav__links a.active {
            color: var(--brand);
            font-weight: 600;
        }

        .nav__links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 3px;
            background: var(--brand);
            border-radius: 3px;
        }

        .nav__cta {
            background: var(--brand);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .nav__cta:hover {
            background: var(--brand-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 184, 132, 0.3);
        }

        .nav__hamburger {
            display: none;
            background: none;
            font-size: 24px;
            color: var(--navy-light);
            padding: 8px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }

        .nav__hamburger:hover {
            background: var(--brand-light);
        }

        /* Mobile nav overlay */
        .nav__mobile-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height-mobile);
            left: 0;
            right: 0;
            bottom: 0;
            background: #ffffff;
            z-index: 999;
            flex-direction: column;
            padding: 20px;
            overflow-y: auto;
            gap: 4px;
        }

        .nav__mobile-overlay.open {
            display: flex;
        }

        .nav__mobile-overlay a {
            display: block;
            padding: 14px 18px;
            font-size: 16px;
            color: var(--slate);
            border-radius: 8px;
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .nav__mobile-overlay a:hover,
        .nav__mobile-overlay a.active {
            background: var(--brand-light);
            color: var(--brand);
            font-weight: 600;
        }

        /* ========== HERO ========== */
        .hero-news {
            position: relative;
            background: linear-gradient(180deg, #f4f7fb 0%, #eaf0f7 60%, #e2ebf4 100%);
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-news__bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: radial-gradient(circle at 20% 50%, var(--brand) 1px, transparent 1px),
                radial-gradient(circle at 80% 30%, var(--link-blue) 1px, transparent 1px),
                radial-gradient(circle at 60% 70%, var(--brand) 1px, transparent 1px);
            background-size: 60px 60px, 80px 80px, 50px 50px;
            pointer-events: none;
        }

        .hero-news__content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            width: 100%;
        }

        .hero-news__text {
            flex: 1;
            min-width: 280px;
        }

        .hero-news__badge {
            display: inline-block;
            background: var(--brand-light);
            color: var(--brand);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .hero-news__text h1 {
            font-size: 30px;
            font-weight: 700;
            color: var(--navy-light);
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .hero-news__text p {
            font-size: 16px;
            color: var(--slate);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 480px;
        }

        .hero-news__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-news__tags span {
            display: inline-block;
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid var(--border-light);
            background: #fff;
            color: var(--slate);
        }

        .hero-news__tags span:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: var(--brand-light);
        }

        .hero-news__tags span.active-tag {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
        }

        .hero-news__image {
            flex: 0 0 380px;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-data);
            min-width: 280px;
        }

        .hero-news__image img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
        }

        /* ========== DATA STRIP ========== */
        .data-strip {
            background: #fff;
            border-bottom: 1px solid var(--border-subtle);
            padding: 20px 0;
        }

        .data-strip__grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
        }

        .data-strip__item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: var(--bg-page);
            border-radius: var(--radius-tag);
            flex: 1;
            min-width: 130px;
            justify-content: center;
        }

        .data-strip__icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            background: var(--brand-light);
            color: var(--brand);
        }

        .data-strip__val {
            font-family: "SF Mono", "Menlo", "Consolas", "DIN Alternate", monospace;
            font-size: 22px;
            font-weight: 700;
            color: var(--navy-light);
            line-height: 1;
        }

        .data-strip__label {
            font-size: 12px;
            color: var(--muted);
            margin-top: 2px;
        }

        /* ========== MAIN LAYOUT ========== */
        .main-layout {
            display: flex;
            gap: 32px;
            padding: 48px 0 64px;
            align-items: flex-start;
        }

        .main-layout__content {
            flex: 1;
            min-width: 0;
        }

        .main-layout__sidebar {
            flex: 0 0 320px;
            position: sticky;
            top: calc(var(--nav-height) + 32px);
            align-self: flex-start;
            max-height: calc(100vh - var(--nav-height) - 64px);
            overflow-y: auto;
        }

        /* ========== NEWS LIST ========== */
        .section-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--navy-light);
            margin-bottom: 6px;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
        }

        .news-card {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            border-radius: var(--radius-card);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-subtle);
        }

        .news-card__thumb {
            flex: 0 0 200px;
            border-radius: var(--radius-card-sm);
            overflow: hidden;
            height: 140px;
            flex-shrink: 0;
        }

        .news-card__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .news-card:hover .news-card__thumb img {
            transform: scale(1.04);
        }

        .news-card__body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .news-card__meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .news-card__tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .tag-version {
            background: #e6f7f1;
            color: #00b884;
        }
        .tag-review {
            background: #e8f0fa;
            color: #2c5ea0;
        }
        .tag-guide {
            background: #fef6e8;
            color: #f0a030;
        }
        .tag-team {
            background: #fce8ec;
            color: #c0392b;
        }
        .tag-hero {
            background: #f3e8fc;
            color: #7c3aed;
        }
        .tag-gear {
            background: #fff0e6;
            color: #e67e22;
        }

        .news-card__date {
            font-size: 12px;
            color: var(--soft);
        }

        .news-card__title {
            font-size: 17px;
            font-weight: 600;
            color: var(--navy-light);
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-fast);
        }

        .news-card:hover .news-card__title {
            color: var(--brand);
        }

        .news-card__excerpt {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-card__footer-row {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
            color: var(--soft);
            margin-top: auto;
        }

        .news-card__footer-row i {
            font-size: 13px;
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            padding: 22px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
        }

        .sidebar-card__title {
            font-size: 17px;
            font-weight: 600;
            color: var(--navy-light);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--brand-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card__title i {
            color: var(--brand);
            font-size: 16px;
        }

        .hot-list {
            list-style: none;
        }

        .hot-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 14px;
            color: var(--slate);
            line-height: 1.5;
        }

        .hot-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hot-list li:hover {
            color: var(--brand);
        }

        .hot-list__rank {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            background: #f0f3f7;
            color: var(--muted);
            line-height: 1;
        }

        .hot-list li:nth-child(1) .hot-list__rank {
            background: #ffeaa7;
            color: #c79100;
        }
        .hot-list li:nth-child(2) .hot-list__rank {
            background: #dfe6e9;
            color: #636e72;
        }
        .hot-list li:nth-child(3) .hot-list__rank {
            background: #ffe0cc;
            color: #b87333;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud a {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            background: var(--bg-page);
            color: var(--slate);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .tag-cloud a:hover {
            background: var(--brand-light);
            color: var(--brand);
            border-color: var(--brand);
        }

        /* ========== TIMELINE ========== */
        .timeline-section {
            background: #fff;
            padding: 56px 0;
            border-top: 1px solid var(--border-subtle);
        }

        .timeline {
            position: relative;
            padding-left: 32px;
            margin-top: 24px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--brand) 0%, var(--brand-light) 100%);
            border-radius: 3px;
        }

        .timeline__item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 24px;
        }

        .timeline__item:last-child {
            margin-bottom: 0;
        }

        .timeline__dot {
            position: absolute;
            left: -26px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--brand);
            z-index: 2;
        }

        .timeline__item:first-child .timeline__dot {
            background: var(--brand);
            box-shadow: 0 0 0 6px rgba(0, 184, 132, 0.15);
        }

        .timeline__date {
            font-size: 13px;
            color: var(--brand);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .timeline__title {
            font-size: 16px;
            font-weight: 600;
            color: var(--navy-light);
            margin-bottom: 4px;
        }

        .timeline__desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ========== COMMENT SECTION ========== */
        .comments-section {
            padding: 56px 0;
            background: var(--bg-page);
        }

        .comments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .comment-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-subtle);
        }

        .comment-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .comment-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .comment-card__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e8f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            color: var(--link-blue);
            flex-shrink: 0;
        }

        .comment-card__name {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-light);
        }

        .comment-card__tag {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 10px;
            background: var(--brand-light);
            color: var(--brand);
            font-weight: 500;
        }

        .comment-card__stars {
            color: #f0a030;
            font-size: 13px;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }

        .comment-card__text {
            font-size: 14px;
            color: var(--slate);
            line-height: 1.6;
        }

        .comment-card__time {
            font-size: 12px;
            color: var(--soft);
            margin-top: 8px;
        }

        .comment-featured {
            max-width: 600px;
            margin: 0 auto;
            grid-column: 1 / -1;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 56px 0;
            background: #fff;
            border-top: 1px solid var(--border-subtle);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card-sm);
            margin-bottom: 10px;
            overflow: hidden;
            background: #fff;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: #d0d8e0;
        }

        .faq-question {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 18px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            color: var(--navy-light);
            transition: color var(--transition-fast);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--brand);
        }

        .faq-q-badge {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--brand);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
        }

        .faq-toggle {
            margin-left: auto;
            flex-shrink: 0;
            font-size: 18px;
            color: var(--soft);
            transition: transform var(--transition-slow);
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
            color: var(--brand);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            background: #f8fafb;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 20px 18px 60px;
            font-size: 15px;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--navy) 0%, #1e3548 100%);
            padding: 48px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 184, 132, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(44, 94, 160, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-banner__content {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .cta-banner p {
            font-size: 16px;
            color: #c0d0dd;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-banner__btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand);
            color: #fff;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--brand-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 184, 132, 0.35);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #1a2b3d;
            color: #c0d0dd;
            padding: 48px 0 24px;
            font-size: 14px;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .footer__brand-desc {
            font-size: 13px;
            color: #889aaa;
            line-height: 1.6;
            max-width: 320px;
        }

        .footer__col-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer__col a,
        .footer a {
            display: block;
            color: #889aaa;
            font-size: 13px;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }

        .footer__col a:hover,
        .footer a:hover {
            color: var(--brand);
        }

        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #6a7d8e;
            line-height: 1.8;
        }

        .footer__bottom .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.2);
        }

        .footer__bottom a {
            display: inline;
            color: #889aaa;
            font-size: 12px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199px) {
            .main-layout__sidebar {
                flex: 0 0 280px;
            }
            .news-card__thumb {
                flex: 0 0 160px;
                height: 120px;
            }
            .hero-news__image {
                flex: 0 0 300px;
            }
            .hero-news__image img {
                height: 210px;
            }
        }

        @media (max-width: 991px) {
            .main-layout {
                flex-direction: column;
                gap: 24px;
            }
            .main-layout__sidebar {
                flex: 1 1 auto;
                position: static;
                max-height: none;
                width: 100%;
            }
            .news-card__thumb {
                flex: 0 0 140px;
                height: 110px;
            }
            .hero-news__image {
                flex: 0 0 260px;
            }
            .hero-news__image img {
                height: 180px;
            }
            .hero-news__text h1 {
                font-size: 26px;
            }
            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .data-strip__grid {
                gap: 10px;
            }
            .data-strip__item {
                min-width: 100px;
                padding: 8px 12px;
            }
            .data-strip__val {
                font-size: 18px;
            }
            .nav__links {
                display: none;
            }
            .nav__cta {
                display: none;
            }
            .nav__hamburger {
                display: block;
            }
            .nav-bar {
                height: var(--nav-height-mobile);
            }
        }

        @media (max-width: 767px) {
            .hero-news {
                min-height: auto;
                padding: 40px 0;
            }
            .hero-news__content {
                flex-direction: column;
                gap: 24px;
            }
            .hero-news__image {
                flex: 1 1 auto;
                width: 100%;
                min-width: auto;
            }
            .hero-news__image img {
                height: 200px;
                width: 100%;
            }
            .hero-news__text h1 {
                font-size: 24px;
            }
            .hero-news__text p {
                font-size: 15px;
            }
            .news-card {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }
            .news-card__thumb {
                flex: 1 1 auto;
                width: 100%;
                height: 180px;
            }
            .news-card__title {
                font-size: 15px;
            }
            .section-title {
                font-size: 20px;
            }
            .comments-grid {
                grid-template-columns: 1fr;
            }
            .comment-featured {
                grid-column: 1;
            }
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .data-strip__grid {
                flex-wrap: wrap;
                gap: 8px;
            }
            .data-strip__item {
                flex: 1 1 45%;
                min-width: 100px;
            }
            .timeline {
                padding-left: 24px;
            }
            .timeline__item {
                padding-left: 16px;
            }
            .timeline__dot {
                left: -20px;
                width: 14px;
                height: 14px;
            }
            .timeline::before {
                left: 8px;
                width: 2px;
            }
            .cta-banner h2 {
                font-size: 22px;
            }
            .faq-question {
                font-size: 15px;
                padding: 14px 16px;
            }
            .faq-answer-inner {
                padding: 0 14px 16px 48px;
                font-size: 14px;
            }
            .sidebar-card {
                padding: 16px;
            }
            .hot-list li {
                font-size: 13px;
                padding: 8px 0;
            }
            .tag-cloud a {
                font-size: 12px;
                padding: 5px 10px;
            }
        }

        @media (max-width: 520px) {
            .hero-news__text h1 {
                font-size: 22px;
            }
            .hero-news__image img {
                height: 160px;
            }
            .news-card__thumb {
                height: 150px;
            }
            .data-strip__item {
                flex: 1 1 44%;
            }
            .data-strip__val {
                font-size: 16px;
            }
            .section-title {
                font-size: 18px;
            }
            .cta-banner h2 {
                font-size: 20px;
            }
            .btn-primary,
            .btn-outline-light {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
