/* roulang page: index */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .bg-soft {
            background-color: var(--bg-soft);
        }

        .text-cyan {
            color: var(--cyan) !important;
        }

        .text-orange {
            color: var(--orange) !important;
        }

        .text-muted-custom {
            color: var(--muted) !important;
        }

        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .fw-bold-custom {
            font-weight: 700;
        }

        .section-pad {
            padding: 72px 0;
        }

        @media (max-width: 768px) {
            .section-pad {
                padding: 48px 0;
            }
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }

        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }

        .brand-logo:hover {
            color: var(--text);
        }

        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }

        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }

        .site-header.scrolled .header-nav-row {
            padding: 4px 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .main-nav li {
            margin: 0;
        }

        .main-nav .nav-link {
            display: inline-block;
            padding: 9px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all var(--transition);
            border: 1px solid transparent;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .main-nav .nav-link:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            border-color: rgba(22, 214, 199, 0.25);
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 24px;
            padding: 6px 16px;
            transition: all var(--transition);
            min-width: 180px;
        }

        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        .nav-search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text);
            font-size: 0.85rem;
            width: 100%;
        }

        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        .nav-search-box .search-icon {
            color: var(--muted);
            font-size: 0.85rem;
        }

        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.2rem;
            transition: all var(--transition);
            display: none;
            cursor: pointer;
        }

        .navbar-toggler-custom:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        @media (max-width: 991px) {
            .header-nav-row {
                flex-wrap: wrap;
            }

            .navbar-toggler-custom {
                display: flex;
            }

            .main-nav-wrapper {
                display: none;
                width: 100%;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            .main-nav-wrapper.open {
                display: block;
            }

            .main-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }

            .main-nav .nav-link {
                display: block;
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: 10px;
            }

            .nav-search-box {
                min-width: auto;
                margin-top: 8px;
                width: 100%;
            }

            .header-top-row {
                flex-wrap: wrap;
                gap: 8px;
            }
        }

        @media (max-width: 768px) {
            .brand-logo {
                font-size: 1.1rem;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
                border-radius: 8px;
            }
            .brand-version-tag {
                font-size: 0.62rem;
                padding: 2px 6px;
            }
            .header-user-actions .login-link {
                font-size: 0.78rem;
                padding: 4px 10px;
            }
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: flex-end;
            padding: 120px 0 56px;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.6) 0%, rgba(11, 14, 20, 0.75) 40%, var(--bg) 100%), url('/assets/images/9a9a00956f2a9376.webp') center / cover no-repeat;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 70% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 20% 75%, rgba(22, 214, 199, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            letter-spacing: 0.04em;
            border: 1px solid;
        }

        .hero-badge.cyan {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: rgba(22, 214, 199, 0.4);
        }

        .hero-badge.orange {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
            border-color: rgba(249, 115, 22, 0.4);
        }

        .hero-badge.purple {
            background: var(--purple-soft);
            color: var(--purple);
            border-color: rgba(168, 85, 247, 0.4);
        }

        .hero-title {
            font-size: clamp(2rem, 4.2vw, 3.6rem);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 2px 30px rgba(22, 214, 199, 0.25);
        }

        .hero-title .highlight {
            color: var(--cyan);
            position: relative;
        }

        .hero-desc {
            font-size: 1.08rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.85;
            margin-bottom: 28px;
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 26px;
            border-radius: 10px;
            border: none;
            transition: all var(--transition);
            cursor: pointer;
            letter-spacing: 0.02em;
            text-decoration: none;
            line-height: 1.4;
        }

        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
        }

        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
            transform: translateY(-1px);
        }

        .btn-custom-secondary {
            background: transparent;
            color: var(--cyan);
            border: 1.5px solid var(--cyan-border);
        }

        .btn-custom-secondary:hover {
            background: rgba(22, 214, 199, 0.15);
            color: var(--cyan);
            border-color: var(--cyan);
            transform: translateY(-1px);
        }

        .hero-metrics {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .hero-metric-item {
            display: flex;
            flex-direction: column;
        }

        .hero-metric-item .metric-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
        }

        .hero-metric-item .metric-label {
            font-size: 0.82rem;
            color: var(--muted);
        }

        .hero-visual-panel {
            position: relative;
            background: rgba(21, 28, 36, 0.85);
            border: 1px solid rgba(42, 52, 65, 0.8);
            border-radius: var(--radius-lg);
            padding: 24px;
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
            z-index: 2;
        }

        .hero-visual-panel .panel-label {
            font-size: 0.75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }

        .hero-event-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hero-event-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            gap: 12px;
        }

        .hero-event-list li:last-child {
            border-bottom: none;
        }

        .hero-event-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
        }

        .hero-event-status {
            font-size: 0.72rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;
        }

        .hero-event-status.live {
            background: rgba(249, 115, 22, 0.2);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.4);
        }

        .hero-event-status.upcoming {
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 100px 0 40px;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .hero-metrics {
                gap: 18px;
            }
            .hero-metric-item .metric-value {
                font-size: 1.3rem;
            }
            .btn-custom {
                font-size: 0.88rem;
                padding: 10px 20px;
            }
        }

        /* ===== Section Titles ===== */
        .section-title {
            font-size: clamp(1.5rem, 2.5vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

        .section-lead {
            font-size: 1rem;
            color: var(--muted);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .section-header-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .section-link-more {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--cyan);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }

        .section-link-more:hover {
            color: var(--orange);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.4rem;
            }
            .section-lead {
                font-size: 0.92rem;
            }
        }

        /* ===== Event Speed Strip ===== */
        .event-speed-strip {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            border-bottom: 1px solid var(--surface-border);
            padding: 20px 0;
            overflow: hidden;
        }

        .event-scroll-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 8px 4px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .event-scroll-row::-webkit-scrollbar {
            height: 4px;
        }

        .event-scroll-row::-webkit-scrollbar-track {
            background: var(--surface);
            border-radius: 4px;
        }

        .event-scroll-row::-webkit-scrollbar-thumb {
            background: var(--surface-border);
            border-radius: 4px;
        }

        .event-mini-card {
            min-width: 260px;
            max-width: 300px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            scroll-snap-align: start;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .event-mini-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .event-mini-card .event-date {
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 6px;
        }

        .event-mini-card .event-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .event-mini-card .event-teams {
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .event-mini-card .event-status-tag {
            display: inline-block;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 8px;
        }

        /* ===== Cards / Grid ===== */
        .card-custom {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
            height: 100%;
        }

        .card-custom:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .card-custom .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: var(--surface-light);
        }

        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-custom:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .card-custom .card-body-custom {
            padding: 20px 22px 22px;
        }

        .card-custom .card-title-custom {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.45;
        }

        .card-custom .card-text-custom {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .card-custom .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.75rem;
            color: var(--muted-dark);
            flex-wrap: wrap;
        }

        .tag-chip {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            border: 1px solid transparent;
            white-space: nowrap;
        }

        .tag-chip.cyan {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: rgba(22, 214, 199, 0.35);
        }

        .tag-chip.orange {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
            border-color: rgba(249, 115, 22, 0.35);
        }

        .tag-chip.purple {
            background: var(--purple-soft);
            color: var(--purple);
            border-color: rgba(168, 85, 247, 0.35);
        }

        /* ===== Team Matrix ===== */
        .team-scroller {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding: 8px 4px 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .team-scroller::-webkit-scrollbar {
            height: 4px;
        }
        .team-scroller::-webkit-scrollbar-track {
            background: var(--surface);
            border-radius: 4px;
        }
        .team-scroller::-webkit-scrollbar-thumb {
            background: var(--surface-border);
            border-radius: 4px;
        }

        .team-card {
            min-width: 220px;
            max-width: 240px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            scroll-snap-align: start;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .team-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .team-logo-placeholder {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(22, 214, 199, 0.2), rgba(168, 85, 247, 0.2));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--cyan);
            margin-bottom: 14px;
            border: 1px solid rgba(22, 214, 199, 0.3);
        }

        .team-card .team-name {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .team-card .team-record {
            font-size: 0.82rem;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .team-card .team-core {
            font-size: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ===== Data Highlights ===== */
        .data-highlight-band {
            background: linear-gradient(135deg, var(--bg-soft) 0%, #131A22 50%, var(--bg-soft) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
        }

        .data-stat-item {
            text-align: center;
            padding: 8px 12px;
        }

        .data-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .data-stat-label {
            font-size: 0.82rem;
            color: var(--muted);
        }

        @media (max-width: 768px) {
            .data-highlight-band {
                padding: 20px 16px;
            }
            .data-stat-value {
                font-size: 1.5rem;
            }
            .data-stat-label {
                font-size: 0.75rem;
            }
        }

        /* ===== Core Entry Panels ===== */
        .core-entry-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .core-entry-panel {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 28px 30px;
            transition: all var(--transition);
            display: flex;
            gap: 18px;
            align-items: flex-start;
            text-decoration: none;
            color: inherit;
        }

        .core-entry-panel:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            color: inherit;
        }

        .core-entry-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .core-entry-icon.cyan-bg {
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.3);
        }

        .core-entry-icon.orange-bg {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .core-entry-icon.purple-bg {
            background: var(--purple-soft);
            color: var(--purple);
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .core-entry-panel .core-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .core-entry-panel .core-desc {
            font-size: 0.87rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .core-entry-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .core-entry-panel {
                padding: 20px;
                gap: 14px;
            }
        }

        /* ===== Guide Featured ===== */
        .guide-featured-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 20px;
        }

        .guide-main-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--surface-border);
            background: var(--surface);
            min-height: 320px;
            display: flex;
            align-items: flex-end;
            transition: all var(--transition);
        }

        .guide-main-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
        }

        .guide-main-card .guide-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .guide-main-card .guide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.85) 70%);
        }

        .guide-main-card .guide-content {
            position: relative;
            z-index: 2;
            padding: 28px 30px;
            width: 100%;
        }

        .guide-main-card .guide-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .guide-main-card .guide-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .guide-side-cards {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .guide-side-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            gap: 14px;
            align-items: center;
            transition: all var(--transition);
            text-decoration: none;
            color: inherit;
            flex: 1;
        }

        .guide-side-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            color: inherit;
        }

        .guide-side-card .side-img {
            width: 64px;
            height: 64px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .guide-side-card .side-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .guide-side-card .side-desc {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .guide-featured-layout {
                grid-template-columns: 1fr;
            }
            .guide-main-card {
                min-height: 260px;
            }
        }

        /* ===== Player Highlight ===== */
        .player-scroller {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 8px 4px 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .player-scroller::-webkit-scrollbar {
            height: 4px;
        }
        .player-scroller::-webkit-scrollbar-track {
            background: var(--surface);
            border-radius: 4px;
        }
        .player-scroller::-webkit-scrollbar-thumb {
            background: var(--surface-border);
            border-radius: 4px;
        }

        .player-card {
            min-width: 200px;
            max-width: 220px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            scroll-snap-align: start;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .player-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .player-card .player-avatar {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            background: var(--surface-light);
        }

        .player-card .player-info {
            padding: 14px 16px 16px;
        }

        .player-card .player-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .player-card .player-team {
            font-size: 0.78rem;
            color: var(--cyan);
            margin-bottom: 6px;
        }

        .player-card .player-stats {
            font-size: 0.75rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ===== Schedule Table ===== */
        .schedule-wrap {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
        }

        .schedule-table th {
            background: var(--bg-soft);
            color: var(--muted);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--surface-border);
        }

        .schedule-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(42, 52, 65, 0.4);
            color: var(--text-secondary);
            vertical-align: middle;
        }

        .schedule-table tr:last-child td {
            border-bottom: none;
        }

        .schedule-table tr:hover td {
            background: rgba(22, 214, 199, 0.03);
        }

        .schedule-table .matchup-cell {
            font-weight: 600;
            color: var(--text);
        }

        .schedule-table .live-badge {
            display: inline-block;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            background: rgba(249, 115, 22, 0.2);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.4);
            font-weight: 600;
        }

        .schedule-table .upcoming-badge {
            display: inline-block;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            font-weight: 600;
        }

        .schedule-scroll-x {
            overflow-x: auto;
        }

        /* ===== Tactic Tabs ===== */
        .tactic-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tactic-tab-btn {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.88rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .tactic-tab-btn:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .tactic-tab-btn.active {
            background: var(--cyan-soft);
            border-color: rgba(22, 214, 199, 0.5);
            color: var(--cyan);
            font-weight: 600;
        }

        .tactic-panel {
            display: none;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 24px 26px;
        }

        .tactic-panel.active {
            display: block;
        }

        .tactic-panel .tactic-panel-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .tactic-panel .tactic-panel-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .tactic-panel .tactic-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* ===== Community List ===== */
        .community-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .community-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
            flex-wrap: wrap;
        }

        .community-list li:first-child {
            border-top: 1px solid rgba(42, 52, 65, 0.5);
        }

        .community-list li:hover {
            background: rgba(22, 214, 199, 0.04);
        }

        .community-topic {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
        }

        .community-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--muted);
            flex-shrink: 0;
        }

        .community-meta .heat-tag {
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.72rem;
        }

        /* ===== FAQ ===== */
        .faq-accordion .accordion-item {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-accordion .accordion-button {
            background: var(--surface);
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 18px 22px;
            box-shadow: none;
            border: none;
            transition: all var(--transition);
        }

        .faq-accordion .accordion-button::after {
            filter: invert(70%) sepia(50%) saturate(600%) hue-rotate(130deg);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--bg-soft);
            color: var(--cyan);
            box-shadow: none;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.15);
            border-color: var(--cyan-border);
        }

        .faq-accordion .accordion-body {
            background: var(--surface);
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.8;
            padding: 18px 22px 22px;
        }

        /* ===== Brand Intro ===== */
        .brand-intro-block {
            background: linear-gradient(160deg, var(--bg-soft) 0%, #10161E 60%, var(--bg) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 40px 44px;
            position: relative;
            overflow: hidden;
        }

        .brand-intro-block::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 50%;
            height: 180%;
            background: radial-gradient(ellipse, rgba(22, 214, 199, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .brand-intro-block .brand-intro-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
        }

        .brand-intro-block .brand-intro-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.9;
            position: relative;
            max-width: 900px;
        }

        @media (max-width: 768px) {
            .brand-intro-block {
                padding: 24px 20px;
            }
            .brand-intro-block .brand-intro-title {
                font-size: 1.2rem;
            }
            .brand-intro-block .brand-intro-text {
                font-size: 0.88rem;
            }
        }

        /* ===== Partner Grid ===== */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .partner-slot {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 24px 16px;
            text-align: center;
            transition: all var(--transition);
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .partner-slot:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
        }

        .partner-slot .partner-logo-placeholder {
            width: 48px;
            height: 48px;
            background: var(--bg-soft);
            border: 1px dashed var(--surface-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--muted-dark);
        }

        .partner-slot .partner-name {
            font-size: 0.82rem;
            color: var(--muted);
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .partner-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .partner-slot {
                padding: 16px 10px;
                min-height: 80px;
            }
        }

        /* ===== Service Guarantee Bar ===== */
        .service-bar {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: space-between;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
        }

        .service-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 200px;
        }

        .service-bar-item .service-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .service-bar-item .service-label {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
        }

        .service-bar-item .service-sub {
            font-size: 0.78rem;
            color: var(--muted);
        }

        /* ===== CTA Form ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(22, 214, 199, 0.08) 0%, rgba(168, 85, 247, 0.06) 50%, rgba(249, 115, 22, 0.05) 100%);
            border: 1px solid rgba(42, 52, 65, 0.7);
            border-radius: var(--radius-lg);
            padding: 40px 44px;
        }

        .cta-form .form-control-custom {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 0.9rem;
            transition: all var(--transition);
            width: 100%;
        }

        .cta-form .form-control-custom:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.12);
        }

        .cta-form .form-control-custom::placeholder {
            color: var(--muted-dark);
        }

        .cta-form .btn-submit {
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }

        .cta-form .btn-submit:hover {
            background: var(--orange-hover);
            box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
        }

        .cta-privacy-note {
            font-size: 0.75rem;
            color: var(--muted-dark);
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 24px 20px;
            }
            .service-bar {
                padding: 18px 16px;
                gap: 14px;
            }
        }

        /* ===== Archive Strip ===== */
        .archive-strip {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .archive-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--muted);
            background: var(--surface);
            border: 1px solid var(--surface-border);
            padding: 8px 16px;
            border-radius: 8px;
            transition: all var(--transition);
        }

        .archive-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 56px 0 24px;
            margin-top: 0;
        }

        .footer-brand-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.8;
            max-width: 280px;
        }

        .footer-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-size: 0.84rem;
            color: var(--muted);
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-subscribe-input {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 0.85rem;
            width: 100%;
            transition: all var(--transition);
        }

        .footer-subscribe-input:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.12);
        }

        .footer-bottom {
            border-top: 1px solid rgba(42, 52, 65, 0.5);
            margin-top: 36px;
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--muted-dark);
        }

        .footer-bottom a {
            color: var(--muted-dark);
            transition: all var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--cyan);
        }

        .footer-legal-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 36px 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-legal-links {
                justify-content: center;
            }
        }

        /* ===== Utility Spacing ===== */
        .mb-32 {
            margin-bottom: 32px;
        }
        .mb-24 {
            margin-bottom: 24px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .gap-12 {
            gap: 12px;
        }

        @media (max-width: 576px) {
            .hero-event-list li {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .community-list li {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .community-meta {
                flex-wrap: wrap;
            }
        }

/* roulang page: category1 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 110px;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-orange {
            color: var(--orange) !important;
        }
        .text-muted-custom {
            color: var(--muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .section-pad {
            padding: 48px 0;
        }

        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-32 {
            margin-bottom: 32px;
        }
        .gap-12 {
            gap: 12px;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }

        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }

        .brand-logo:hover {
            color: var(--text);
        }

        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }

        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }

        .site-header.scrolled .header-nav-row {
            padding: 4px 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav .nav-link {
            display: block;
            padding: 8px 16px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .main-nav .nav-link:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            border-bottom: 2px solid var(--cyan);
            border-radius: 0;
        }

        .navbar-toggler-custom {
            display: none;
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--text);
            font-size: 1.2rem;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
        }

        .navbar-toggler-custom:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            padding: 6px 16px;
            min-width: 220px;
        }

        .nav-search-box .search-icon {
            color: var(--muted);
            font-size: 0.85rem;
        }

        .nav-search-box input {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
            width: 100%;
        }

        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Page Header / Category Hero ===== */
        .page-header {
            position: relative;
            padding: 80px 0 48px;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.55) 0%, var(--bg) 100%), url('/assets/images/9a9a00956f2a9376.webp') center/cover no-repeat;
            min-height: 300px;
            display: flex;
            align-items: center;
        }

        .page-header .page-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.4) 0%, rgba(11, 14, 20, 0.9) 100%);
            pointer-events: none;
        }

        .page-header .container {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: 0.01em;
        }

        .page-header .page-header-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 700px;
            line-height: 1.8;
        }

        .page-header .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            padding: 5px 14px;
            background: var(--purple-soft);
            color: var(--purple);
            border: 1px solid rgba(168, 85, 247, 0.4);
            border-radius: 20px;
            margin-bottom: 16px;
            font-weight: 500;
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            border-bottom: 1px solid var(--surface-border);
            padding: 10px 0;
        }

        .breadcrumb-wrapper .breadcrumb {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
            content: "/";
            color: var(--muted-dark);
            margin-right: 8px;
        }

        .breadcrumb-wrapper .breadcrumb a {
            color: var(--muted);
        }

        .breadcrumb-wrapper .breadcrumb a:hover {
            color: var(--cyan);
        }

        .breadcrumb-wrapper .breadcrumb .active {
            color: var(--text-secondary);
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-bar .filter-label {
            font-size: 0.85rem;
            color: var(--muted);
            font-weight: 500;
            white-space: nowrap;
        }

        .filter-pill {
            font-size: 0.82rem;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--surface-border);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-pill:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .filter-pill.active {
            background: var(--cyan-soft);
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .filter-select {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 0.82rem;
            outline: none;
            cursor: pointer;
            margin-left: auto;
        }

        .filter-select:focus {
            border-color: var(--cyan-border);
        }

        /* ===== Featured Event Card ===== */
        .featured-event-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            min-height: 300px;
            display: flex;
            align-items: flex-end;
        }

        .featured-event-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--cyan-border);
            transform: translateY(-3px);
        }

        .featured-event-card .featured-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
        }

        .featured-event-card .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.15) 0%, rgba(11, 14, 20, 0.93) 85%);
        }

        .featured-event-card .featured-content {
            position: relative;
            z-index: 1;
            padding: 32px;
            width: 100%;
        }

        .featured-event-card .event-label {
            display: inline-block;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            background: var(--orange);
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        .featured-event-card .event-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .featured-event-card .event-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* ===== Event List Cards ===== */
        .event-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .event-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
            transform: translateX(4px);
        }

        .event-card .event-status {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 16px;
            font-weight: 600;
            white-space: nowrap;
            min-width: 52px;
            text-align: center;
        }

        .event-status.live {
            background: rgba(249, 115, 22, 0.2);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.4);
        }

        .event-status.upcoming {
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
        }

        .event-status.finished {
            background: rgba(107, 122, 141, 0.2);
            color: var(--muted);
            border: 1px solid rgba(107, 122, 141, 0.4);
        }

        .event-card .event-teams {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            min-width: 160px;
        }

        .event-card .event-info {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .event-card .btn-outline-event {
            font-size: 0.78rem;
            padding: 6px 14px;
            border: 1px solid var(--cyan-border);
            border-radius: 8px;
            color: var(--cyan);
            background: transparent;
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
            margin-left: auto;
        }

        .event-card .btn-outline-event:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
        }

        /* ===== Stats Snapshot ===== */
        .stats-snapshot {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }

        .stats-snapshot .stat-item {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }

        .stats-snapshot .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
        }

        .stats-snapshot .stat-label {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 4px;
        }

        /* ===== Schedule Table ===== */
        .schedule-wrapper {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
        }

        .schedule-table thead th {
            background: var(--surface-light);
            color: var(--text-secondary);
            font-weight: 600;
            padding: 14px 16px;
            border-bottom: 1px solid var(--surface-border);
            text-align: left;
            font-size: 0.8rem;
            letter-spacing: 0.03em;
        }

        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            color: var(--text-secondary);
            vertical-align: middle;
        }

        .schedule-table tbody tr:hover {
            background: var(--cyan-soft);
        }

        .schedule-table tbody tr:last-child td {
            border-bottom: none;
        }

        .schedule-table .team-name {
            font-weight: 600;
            color: var(--text);
        }

        .stream-link {
            font-size: 0.78rem;
            color: var(--orange);
            font-weight: 500;
            white-space: nowrap;
        }

        .stream-link:hover {
            color: var(--orange-hover);
        }

        /* ===== Hot Tags ===== */
        .hot-tags-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
        }

        .hot-tags-card .tags-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
        }

        .hot-tag {
            display: inline-block;
            font-size: 0.78rem;
            padding: 5px 14px;
            border-radius: 16px;
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            margin: 0 6px 8px 0;
            transition: all var(--transition);
            cursor: pointer;
        }

        .hot-tag:hover {
            border-color: var(--purple);
            color: var(--purple);
            background: var(--purple-soft);
        }

        /* ===== CTA Section ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(22, 214, 199, 0.08) 0%, rgba(249, 115, 22, 0.06) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
        }

        .cta-section .cta-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .cta-section .cta-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        /* ===== Related Channels ===== */
        .channel-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 14px;
            height: 100%;
        }

        .channel-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .channel-card .channel-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--cyan-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .channel-card .channel-name {
            font-weight: 600;
            color: var(--text);
            font-size: 0.92rem;
        }

        .channel-card .channel-desc {
            font-size: 0.78rem;
            color: var(--muted);
        }

        /* ===== FAQ Accordion ===== */
        .faq-accordion .accordion-item {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .faq-accordion .accordion-button {
            background: var(--surface);
            color: var(--text);
            font-weight: 500;
            padding: 16px 20px;
            font-size: 0.92rem;
            box-shadow: none;
            border: none;
            border-radius: var(--radius-md) !important;
            transition: all var(--transition);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--surface-light);
            color: var(--cyan);
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            filter: brightness(0) invert(1);
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            filter: brightness(0) saturate(100%) invert(75%) sepia(50%) saturate(400%) hue-rotate(120deg);
        }

        .faq-accordion .accordion-body {
            background: var(--surface);
            color: var(--text-secondary);
            font-size: 0.88rem;
            padding: 16px 20px;
            line-height: 1.8;
        }

        /* ===== Buttons ===== */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 10px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
        }

        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
        }

        .btn-custom-outline {
            background: transparent;
            border: 1.5px solid var(--cyan-border);
            color: var(--cyan);
        }

        .btn-custom-outline:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
        }

        /* ===== Section Title ===== */
        .section-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .section-subtitle {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 24px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 48px 0 20px;
            margin-top: 48px;
        }

        .site-footer .footer-title {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .site-footer .footer-brand-desc {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-size: 0.82rem;
            color: var(--muted);
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-subscribe-input {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 0.82rem;
            outline: none;
            flex: 1;
            min-width: 0;
        }

        .footer-subscribe-input:focus {
            border-color: var(--cyan-border);
        }

        .footer-bottom {
            margin-top: 32px;
            padding-top: 16px;
            border-top: 1px solid rgba(42, 52, 65, 0.5);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--muted-dark);
            align-items: center;
            justify-content: space-between;
        }

        .footer-legal-links {
            display: flex;
            gap: 16px;
        }

        .footer-legal-links a {
            color: var(--muted-dark);
            font-size: 0.78rem;
        }

        .footer-legal-links a:hover {
            color: var(--cyan);
        }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            body {
                padding-top: 100px;
            }
            .nav-search-box {
                min-width: 160px;
            }
            .main-nav .nav-link {
                padding: 8px 10px;
                font-size: 0.85rem;
            }
            .header-user-actions .login-link {
                font-size: 0.8rem;
                padding: 5px 10px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 90px;
            }
            .header-top-row {
                padding: 8px 0;
            }
            .brand-logo {
                font-size: 1.1rem;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }
            .brand-version-tag {
                font-size: 0.65rem;
                padding: 2px 6px;
            }
            .header-user-actions .icon-btn {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .header-user-actions .login-link {
                display: none;
            }
            .navbar-toggler-custom {
                display: flex;
            }
            .main-nav-wrapper {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--header-bg);
                backdrop-filter: blur(12px);
                border-bottom: 1px solid var(--surface-border);
            }
            .main-nav-wrapper.open {
                display: block;
            }
            .main-nav {
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px;
                gap: 2px;
            }
            .main-nav .nav-link {
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: 8px;
            }
            .main-nav .nav-link.active {
                border-bottom: none;
                background: var(--cyan-soft);
                border-radius: 8px;
            }
            .nav-search-box {
                display: none !important;
            }
            .page-header {
                padding: 60px 0 32px;
                min-height: 200px;
            }
            .page-header h1 {
                font-size: 1.6rem;
            }
            .page-header .page-header-desc {
                font-size: 0.88rem;
            }
            .event-card {
                flex-wrap: wrap;
                gap: 10px;
            }
            .event-card .event-teams {
                min-width: 100%;
            }
            .event-card .btn-outline-event {
                margin-left: 0;
            }
            .stats-snapshot .stat-number {
                font-size: 1.3rem;
            }
            .schedule-table {
                font-size: 0.78rem;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 10px 8px;
            }
            .featured-event-card .featured-content {
                padding: 20px;
            }
            .featured-event-card .event-title {
                font-size: 1.15rem;
            }
            .cta-section {
                padding: 28px 16px;
            }
            .cta-section .cta-title {
                font-size: 1.1rem;
            }
            .filter-bar {
                padding: 12px 14px;
                gap: 8px;
            }
            .filter-pill {
                font-size: 0.75rem;
                padding: 5px 12px;
            }
            .filter-select {
                margin-left: 0;
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            body {
                padding-top: 80px;
            }
            .brand-logo {
                font-size: 1rem;
                gap: 6px;
            }
            .brand-version-tag {
                display: none;
            }
            .header-top-row {
                padding: 6px 0;
            }
            .header-user-actions {
                gap: 6px;
            }
            .page-header {
                padding: 44px 0 24px;
                min-height: 160px;
            }
            .page-header h1 {
                font-size: 1.3rem;
            }
            .stats-snapshot .stat-item {
                min-width: 45%;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

/* roulang page: category2 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 76px;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-orange {
            color: var(--orange) !important;
        }
        .text-muted-custom {
            color: var(--muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .section-pad {
            padding: 56px 0;
        }

        .bg-soft-zone {
            background: var(--bg-soft);
        }

        .mb-16 {
            margin-bottom: 16px !important;
        }
        .mb-24 {
            margin-bottom: 24px !important;
        }
        .mb-32 {
            margin-bottom: 32px !important;
        }
        .gap-12 {
            gap: 12px !important;
        }
        .gap-16 {
            gap: 16px !important;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }

        .site-header.scrolled .header-top-row {
            padding: 4px 0;
            border-bottom-color: transparent;
            height: 0;
            overflow: hidden;
            opacity: 0;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }

        .brand-logo:hover {
            color: var(--text);
        }

        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }

        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }

        .site-header.scrolled .header-nav-row {
            padding: 8px 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav .nav-link {
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .main-nav .nav-link:hover {
            color: var(--text);
            background: var(--cyan-soft);
        }

        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            border: 1px solid rgba(22, 214, 199, 0.25);
        }

        .navbar-toggler-custom {
            display: none;
            background: transparent;
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1.2rem;
            padding: 8px 12px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .navbar-toggler-custom:hover {
            background: var(--cyan-soft);
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            padding: 6px 12px;
            gap: 8px;
            min-width: 220px;
            transition: all var(--transition);
        }

        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 12px rgba(22, 214, 199, 0.15);
        }

        .nav-search-box .search-icon {
            color: var(--muted-dark);
            font-size: 0.9rem;
        }

        .nav-search-box input {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
            width: 100%;
        }

        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-custom {
            background: transparent;
            padding: 18px 0 0 0;
            margin-bottom: 0;
            font-size: 0.85rem;
        }
        .breadcrumb-custom a {
            color: var(--muted-dark);
        }
        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }
        .breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
            color: var(--muted-dark);
            content: "›";
            padding: 0 8px;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--cyan);
        }

        /* ===== Category Hero (small, not homepage hero) ===== */
        .category-hero {
            padding: 24px 0 32px;
            border-bottom: 1px solid var(--surface-border);
            margin-bottom: 32px;
        }
        .category-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .category-hero h1 .highlight {
            color: var(--cyan);
        }
        .category-hero .lead {
            font-size: 1.05rem;
            color: var(--muted);
            max-width: 760px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ===== Stats Snap ===== */
        .stats-snap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }
        .stats-snap .stat-item {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: all var(--transition);
        }
        .stats-snap .stat-item:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
        }
        .stats-snap .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
            display: block;
        }
        .stats-snap .stat-label {
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 4px;
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            margin-bottom: 32px;
        }
        .filter-bar .filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--muted);
            margin-right: 4px;
            white-space: nowrap;
        }
        .filter-bar .filter-btn {
            background: transparent;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            color: var(--muted);
            font-size: 0.82rem;
            padding: 6px 14px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .filter-bar .filter-btn:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }
        .filter-bar .filter-btn.active {
            background: var(--cyan-soft);
            border-color: var(--cyan-border);
            color: var(--cyan);
        }
        .filter-bar .sort-select {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            padding: 6px 12px;
            outline: none;
            cursor: pointer;
            transition: all var(--transition);
        }
        .filter-bar .sort-select:focus {
            border-color: var(--cyan-border);
        }
        .filter-bar .sort-select option {
            background: var(--surface);
            color: var(--text);
        }

        /* ===== Team Cards Grid ===== */
        .team-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 20px;
            margin-bottom: 28px;
        }
        .team-grid .team-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: all var(--transition);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .team-grid .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            opacity: 0;
            transition: opacity var(--transition);
        }
        .team-grid .team-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .team-grid .team-card:hover::before {
            opacity: 1;
        }
        .team-grid .team-card .card-top {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .team-grid .team-card .team-logo {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--surface-border);
        }
        .team-grid .team-card .team-info {
            flex: 1;
            min-width: 0;
        }
        .team-grid .team-card .team-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .team-grid .team-card .game-tag {
            display: inline-block;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 12px;
            background: var(--purple-soft);
            color: var(--purple);
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .team-grid .team-card .status-tag {
            display: inline-block;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-left: 6px;
        }
        .status-tag.up {
            background: rgba(22, 214, 199, 0.15);
            color: var(--cyan);
        }
        .status-tag.stable {
            background: rgba(168, 85, 247, 0.15);
            color: var(--purple);
        }
        .status-tag.watch {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
        }
        .team-grid .team-card .team-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.82rem;
            color: var(--muted);
        }
        .team-grid .team-card .team-metrics .metric-value {
            font-weight: 700;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .team-grid .team-card .core-players {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.6;
        }
        .team-grid .team-card .core-players strong {
            color: var(--text-secondary);
            font-weight: 600;
        }
        .team-grid .team-card .rating-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--muted);
        }
        .team-grid .team-card .rating-bar {
            flex: 1;
            height: 6px;
            background: var(--surface-light);
            border-radius: 3px;
            overflow: hidden;
        }
        .team-grid .team-card .rating-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            border-radius: 3px;
        }

        .team-row-secondary {
            display: grid;
            grid-template-columns: 5fr 4fr 3fr;
            gap: 20px;
            margin-bottom: 28px;
        }
        .team-row-secondary .team-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .team-row-secondary .team-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
        }
        .team-row-secondary .team-card .card-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .team-row-secondary .team-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--surface-border);
        }
        .team-row-secondary .team-name {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }
        .team-row-secondary .team-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.78rem;
            color: var(--muted);
        }
        .team-row-secondary .metric-value {
            font-weight: 700;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .team-row-secondary .rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            color: var(--muted);
        }
        .team-row-secondary .rating-bar {
            flex: 1;
            height: 5px;
            background: var(--surface-light);
            border-radius: 3px;
            overflow: hidden;
        }
        .team-row-secondary .rating-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            border-radius: 3px;
        }

        .team-wide-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            margin-bottom: 28px;
        }
        .team-wide-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
        }
        .team-wide-card .team-logo-lg {
            width: 72px;
            height: 72px;
            border-radius: 14px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--surface-border);
        }
        .team-wide-card .team-name-lg {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
        .team-wide-card .team-detail-text {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }
        .team-wide-card .metrics-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 8px;
        }
        .team-wide-card .metrics-inline .m-value {
            font-weight: 700;
            color: var(--cyan);
            font-size: 1.1rem;
        }

        /* ===== Recent Updates ===== */
        .updates-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .updates-list li {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
        }
        .updates-list li:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
        }
        .updates-list .update-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        .updates-list .update-text {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .updates-list .update-time {
            font-size: 0.78rem;
            color: var(--muted-dark);
            white-space: nowrap;
            margin-left: auto;
        }

        /* ===== Sidebar ===== */
        .sidebar-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            margin-bottom: 20px;
        }
        .sidebar-card .sidebar-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card .sidebar-title i {
            color: var(--cyan);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud .tag-item {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            border-radius: 16px;
            padding: 4px 12px;
            font-size: 0.78rem;
            color: var(--muted);
            transition: all var(--transition);
            cursor: default;
        }
        .tag-cloud .tag-item:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .cross-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cross-links li {
            margin-bottom: 8px;
        }
        .cross-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            padding: 8px 10px;
            border-radius: 6px;
            transition: all var(--transition);
        }
        .cross-links a:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
        }
        .cross-links a i {
            font-size: 0.75rem;
            color: var(--cyan);
        }

        /* ===== CTA Section ===== */
        .cta-box {
            background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            transition: all var(--transition);
        }
        .cta-box:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
        }
        .cta-box .cta-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .cta-box .cta-sub {
            font-size: 0.9rem;
            color: var(--muted);
            max-width: 420px;
        }
        .cta-box .cta-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .cta-box .cta-input {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            padding: 10px 16px;
            color: var(--text);
            font-size: 0.9rem;
            outline: none;
            min-width: 260px;
            transition: all var(--transition);
        }
        .cta-box .cta-input:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 12px rgba(22, 214, 199, 0.15);
        }
        .cta-box .cta-input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Buttons ===== */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 22px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.5;
        }
        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
        }
        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
            transform: translateY(-1px);
        }
        .btn-custom-outline {
            background: transparent;
            color: var(--cyan);
            border: 1.5px solid var(--cyan-border);
        }
        .btn-custom-outline:hover {
            background: rgba(22, 214, 199, 0.1);
            color: var(--cyan);
            border-color: var(--cyan);
            box-shadow: 0 4px 16px rgba(22, 214, 199, 0.25);
        }
        .btn-custom-sm {
            padding: 8px 16px;
            font-size: 0.82rem;
            border-radius: 8px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--muted);
            font-size: 0.85rem;
            transition: all var(--transition);
        }
        .footer-links a:hover {
            color: var(--cyan);
        }
        .footer-subscribe-input {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            padding: 10px 14px;
            color: var(--text);
            font-size: 0.88rem;
            outline: none;
            flex: 1;
            min-width: 180px;
            transition: all var(--transition);
        }
        .footer-subscribe-input:focus {
            border-color: var(--cyan-border);
        }
        .footer-subscribe-input::placeholder {
            color: var(--muted-dark);
        }
        .footer-bottom {
            border-top: 1px solid var(--surface-border);
            padding-top: 20px;
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--muted-dark);
        }
        .footer-legal-links {
            display: flex;
            gap: 16px;
        }
        .footer-legal-links a {
            color: var(--muted-dark);
            font-size: 0.78rem;
            transition: all var(--transition);
        }
        .footer-legal-links a:hover {
            color: var(--cyan);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .container {
                max-width: 960px;
            }
            .team-grid {
                grid-template-columns: 6fr 6fr;
            }
            .team-row-secondary {
                grid-template-columns: 1fr 1fr;
            }
            .team-row-secondary .team-card:last-child {
                grid-column: span 2;
            }
            .stats-snap {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
            .header-top-row {
                padding: 6px 0;
            }
            .brand-logo {
                font-size: 1.1rem;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
                border-radius: 8px;
            }
            .brand-version-tag {
                display: none;
            }
            .header-user-actions .login-link {
                display: none;
            }
            .navbar-toggler-custom {
                display: flex;
                align-items: center;
            }
            .main-nav-wrapper {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-soft);
                border-bottom: 1px solid var(--surface-border);
                padding: 12px 16px;
                z-index: 1001;
            }
            .main-nav-wrapper.show {
                display: block;
            }
            .main-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
            }
            .main-nav .nav-link {
                display: block;
                width: 100%;
                padding: 12px 14px;
                font-size: 0.95rem;
            }
            .nav-search-box {
                display: none !important;
            }
            .category-hero h1 {
                font-size: 1.6rem;
            }
            .stats-snap {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stats-snap .stat-item {
                padding: 14px 16px;
            }
            .stats-snap .stat-num {
                font-size: 1.5rem;
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            .team-row-secondary {
                grid-template-columns: 1fr;
            }
            .team-row-secondary .team-card:last-child {
                grid-column: auto;
            }
            .team-wide-card {
                flex-direction: column;
            }
            .cta-box {
                padding: 24px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-box .cta-form {
                width: 100%;
                flex-direction: column;
            }
            .cta-box .cta-input {
                min-width: auto;
                width: 100%;
            }
            .filter-bar {
                padding: 10px 12px;
                gap: 8px;
            }
            .filter-bar .filter-btn {
                font-size: 0.75rem;
                padding: 5px 10px;
            }
            .section-pad {
                padding: 36px 0;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            body {
                padding-top: 56px;
            }
            .category-hero h1 {
                font-size: 1.3rem;
            }
            .category-hero .lead {
                font-size: 0.88rem;
            }
            .stats-snap {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .team-grid .team-card {
                padding: 14px;
            }
            .team-grid .team-card .team-logo {
                width: 44px;
                height: 44px;
            }
            .team-grid .team-card .team-name {
                font-size: 0.95rem;
            }
            .team-row-secondary .team-card {
                padding: 14px;
            }
            .team-wide-card {
                padding: 14px;
            }
            .cta-box .cta-title {
                font-size: 1.15rem;
            }
            .footer-brand-desc {
                font-size: 0.78rem;
            }
            .updates-list li {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .updates-list .update-time {
                margin-left: 0;
            }
        }

/* roulang page: category3 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--orange);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }
        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-orange {
            color: var(--orange) !important;
        }
        .text-muted-custom {
            color: var(--muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }
        .section-pad {
            padding: 72px 0;
        }
        @media (max-width: 768px) {
            .section-pad {
                padding: 48px 0;
            }
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }
        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }
        .brand-logo:hover {
            color: var(--text);
        }
        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }
        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }
        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }
        .site-header.scrolled .header-nav-row {
            padding: 4px 0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav .nav-link {
            color: var(--muted);
            font-size: 0.92rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            font-weight: 700;
        }
        .main-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 2px;
            background: var(--cyan);
            border-radius: 2px;
        }
        .navbar-toggler-custom {
            display: none;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--text);
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            font-size: 1.3rem;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
        }
        .navbar-toggler-custom:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 30px;
            padding: 6px 14px;
            min-width: 220px;
            transition: all var(--transition);
        }
        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px var(--cyan-soft);
        }
        .nav-search-box .search-icon {
            color: var(--muted-dark);
            font-size: 0.85rem;
        }
        .nav-search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text);
            font-size: 0.85rem;
            width: 100%;
        }
        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        @media (max-width: 991px) {
            .header-top-row {
                padding: 8px 0;
            }
            .navbar-toggler-custom {
                display: flex;
            }
            .main-nav-wrapper {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--header-bg);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid var(--header-border);
                padding: 12px 16px;
                z-index: 1001;
            }
            .main-nav-wrapper.open {
                display: block;
            }
            .main-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
            }
            .main-nav .nav-link {
                display: block;
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 1rem;
            }
            .nav-search-box {
                display: none;
            }
        }
        @media (min-width: 992px) {
            .main-nav-wrapper {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .brand-logo {
                font-size: 1.05rem;
            }
            .brand-version-tag {
                font-size: 0.6rem;
                padding: 2px 6px;
            }
            .header-user-actions .login-link {
                font-size: 0.75rem;
                padding: 4px 10px;
            }
            .header-user-actions {
                gap: 8px;
            }
            .header-user-actions .icon-btn {
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
            }
        }

        /* ===== Category Banner ===== */
        .category-banner {
            padding: 160px 0 48px;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.92) 0%, var(--bg) 100%), url('/assets/images/c672b375710bf6d8.webp') center/cover no-repeat;
            border-bottom: 1px solid var(--surface-border);
            position: relative;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--muted-dark);
            margin-bottom: 16px;
        }
        .breadcrumb-custom a {
            color: var(--muted);
        }
        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }
        .breadcrumb-custom .sep {
            color: var(--muted-dark);
            font-size: 0.7rem;
        }
        .category-banner h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .category-banner .cat-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 0;
        }
        .category-banner .cat-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 20px;
        }
        .category-banner .cat-stat-item {
            font-size: 0.9rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .category-banner .cat-stat-item i {
            color: var(--cyan);
            font-size: 0.85rem;
        }

        /* ===== Filter / Sort Bar ===== */
        .filter-bar {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 32px;
        }
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-tab {
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--muted);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all var(--transition);
        }
        .filter-tab:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .filter-tab.active {
            background: var(--cyan-soft);
            border-color: var(--cyan-border);
            color: var(--cyan);
            font-weight: 600;
        }
        .sort-select {
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            font-size: 0.85rem;
            outline: none;
            cursor: pointer;
            transition: all var(--transition);
        }
        .sort-select:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px var(--cyan-soft);
        }

        /* ===== Feature Card ===== */
        .feature-guide-card {
            position: relative;
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            border: 1px solid var(--surface-border);
            margin-bottom: 40px;
            transition: all var(--transition);
        }
        .feature-guide-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
        }
        .feature-guide-card .feature-img {
            flex: 1 1 50%;
            min-height: 320px;
            position: relative;
            overflow: hidden;
        }
        .feature-guide-card .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .feature-guide-card .feature-img .img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11,14,20,0.2) 0%, rgba(11,14,20,0.85) 100%);
        }
        .feature-guide-card .feature-body {
            flex: 1 1 50%;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .feature-guide-card .feature-tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--orange);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 20px;
            letter-spacing: 0.05em;
            width: fit-content;
            margin-bottom: 12px;
        }
        .feature-guide-card h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .feature-guide-card p {
            color: var(--text-secondary);
            font-size: 0.98rem;
            margin-bottom: 16px;
        }
        .feature-guide-card .feature-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.82rem;
            color: var(--muted);
            margin-bottom: 16px;
        }
        @media (max-width: 768px) {
            .feature-guide-card {
                flex-direction: column;
            }
            .feature-guide-card .feature-img {
                min-height: 220px;
                flex: 1 1 auto;
            }
            .feature-guide-card .feature-body {
                padding: 24px;
            }
            .feature-guide-card h2 {
                font-size: 1.3rem;
            }
        }

        /* ===== Guide Cards Grid ===== */
        .guide-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .guide-card:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .guide-card .guide-img {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }
        .guide-card .guide-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .guide-card:hover .guide-img img {
            transform: scale(1.05);
        }
        .guide-card .guide-img .badge-overlay {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--purple);
            color: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .guide-card .guide-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .guide-card .guide-game {
            font-size: 0.78rem;
            color: var(--cyan);
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: 0.04em;
        }
        .guide-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.45;
        }
        .guide-card .guide-excerpt {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 12px;
            flex: 1;
        }
        .guide-card .guide-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--muted-dark);
            border-top: 1px solid var(--surface-border);
            padding-top: 12px;
        }
        .guide-card .guide-footer .read-time i {
            margin-right: 4px;
            color: var(--cyan);
        }

        /* ===== Data Snapshot ===== */
        .data-snapshot {
            background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 40px;
        }
        .data-snapshot h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }
        .snapshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
        }
        .snapshot-item {
            text-align: center;
            padding: 16px;
            background: var(--bg-soft);
            border-radius: var(--radius-sm);
            border: 1px solid var(--surface-border);
        }
        .snapshot-item .snap-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--cyan);
            display: block;
            line-height: 1.3;
        }
        .snapshot-item .snap-label {
            font-size: 0.82rem;
            color: var(--muted);
        }

        /* ===== Recent Updates List ===== */
        .recent-updates {
            margin-bottom: 40px;
        }
        .recent-updates h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }
        .update-list-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            margin-bottom: 10px;
            transition: all var(--transition);
        }
        .update-list-item:hover {
            border-color: var(--cyan-border);
            background: var(--surface-light);
        }
        .update-list-item .update-date {
            font-size: 0.8rem;
            color: var(--muted);
            white-space: nowrap;
            min-width: 70px;
            text-align: center;
            background: var(--bg-soft);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--surface-border);
        }
        .update-list-item .update-content {
            flex: 1;
            font-size: 0.92rem;
            color: var(--text-secondary);
        }
        .update-list-item .update-content strong {
            color: var(--text);
        }
        .update-list-item .update-badge {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;
        }
        .update-badge.new {
            background: var(--orange);
            color: #fff;
        }
        .update-badge.ver {
            background: var(--purple-soft);
            color: var(--purple);
            border: 1px solid rgba(168, 85, 247, 0.4);
        }

        /* ===== Hot Tags Sidebar ===== */
        .hot-tags {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-bottom: 32px;
        }
        .hot-tags h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
        }
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-chip {
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            color: var(--muted);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all var(--transition);
            cursor: pointer;
        }
        .tag-chip:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        /* ===== Subscribe CTA ===== */
        .subscribe-cta {
            background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
            border: 1px solid var(--cyan-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .subscribe-cta h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 6px;
        }
        .subscribe-cta p {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .subscribe-form input {
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            font-size: 0.9rem;
            color: var(--text);
            outline: none;
            min-width: 260px;
            transition: all var(--transition);
        }
        .subscribe-form input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px var(--cyan-soft);
        }
        .subscribe-form input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Cross Link Section ===== */
        .cross-link-section {
            margin-bottom: 40px;
        }
        .cross-link-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }
        .cross-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .cross-link-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            transition: all var(--transition);
            display: block;
        }
        .cross-link-card:hover {
            border-color: var(--cyan-border);
            background: var(--surface-light);
            transform: translateY(-3px);
        }
        .cross-link-card i {
            font-size: 1.6rem;
            color: var(--cyan);
            margin-bottom: 10px;
        }
        .cross-link-card .cross-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            display: block;
            margin-bottom: 4px;
        }
        .cross-link-card .cross-desc {
            font-size: 0.82rem;
            color: var(--muted);
        }

        /* ===== FAQ ===== */
        .faq-section {
            margin-bottom: 40px;
        }
        .faq-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }
        .accordion-custom .accordion-item {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-custom .accordion-button {
            background: var(--surface);
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            box-shadow: none;
            border: none;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--surface-light);
            color: var(--cyan);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            border-color: var(--cyan-border);
        }
        .accordion-custom .accordion-button::after {
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: all var(--transition);
        }
        .accordion-custom .accordion-button:not(.collapsed)::after {
            filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(2000%) hue-rotate(140deg) brightness(105%) contrast(90%);
            opacity: 1;
        }
        .accordion-custom .accordion-body {
            background: var(--surface);
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 16px 20px;
            line-height: 1.75;
            border-top: 1px solid var(--surface-border);
        }

        /* ===== Buttons ===== */
        .btn-custom {
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.88rem;
            padding: 9px 20px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
        }
        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
            transform: translateY(-1px);
        }
        .btn-custom-outline {
            background: transparent;
            border: 1.5px solid var(--cyan);
            color: var(--cyan);
        }
        .btn-custom-outline:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: var(--cyan-border);
            transform: translateY(-1px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .site-footer .footer-title {
            color: var(--text);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .site-footer .footer-brand-desc {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: var(--muted);
            font-size: 0.88rem;
            transition: color var(--transition);
        }
        .site-footer .footer-links a:hover {
            color: var(--cyan);
        }
        .site-footer .footer-bottom {
            border-top: 1px solid var(--surface-border);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--muted-dark);
        }
        .site-footer .footer-legal-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .site-footer .footer-legal-links a {
            color: var(--muted);
            font-size: 0.78rem;
        }
        .site-footer .footer-legal-links a:hover {
            color: var(--cyan);
        }
        .site-footer .footer-subscribe-input {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm);
            padding: 8px 14px;
            font-size: 0.85rem;
            color: var(--text);
            outline: none;
            flex: 1;
            min-width: 120px;
            transition: all var(--transition);
        }
        .site-footer .footer-subscribe-input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px var(--cyan-soft);
        }
        .site-footer .footer-subscribe-input::placeholder {
            color: var(--muted-dark);
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-32 {
            margin-bottom: 32px;
        }
        .gap-12 {
            gap: 12px;
        }
        .d-flex {
            display: flex;
        }
        .me-1 {
            margin-right: 4px;
        }
        @media (max-width: 576px) {
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .category-banner {
                padding: 130px 0 32px;
            }
            .category-banner h1 {
                font-size: 2rem;
            }
            .category-banner .cat-subtitle {
                font-size: 1rem;
            }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .sort-select {
                width: 100%;
            }
            .subscribe-form {
                flex-direction: column;
                width: 100%;
            }
            .subscribe-form input {
                width: 100%;
                min-width: auto;
            }
            .subscribe-form .btn-custom {
                width: 100%;
                justify-content: center;
            }
            .update-list-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .update-list-item .update-date {
                text-align: left;
            }
            .snapshot-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

/* roulang page: category4 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 118px;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-orange {
            color: var(--orange) !important;
        }
        .text-muted-custom {
            color: var(--muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .section-pad {
            padding: 72px 0;
        }

        @media (max-width: 768px) {
            .section-pad {
                padding: 48px 0;
            }
            body {
                padding-top: 82px;
            }
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }

        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }

        .brand-logo:hover {
            color: var(--text);
        }

        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }

        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }

        .site-header.scrolled .header-nav-row {
            padding: 4px 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav .nav-link {
            display: block;
            padding: 8px 16px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--muted);
            border-radius: 8px;
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.02em;
            position: relative;
        }

        .main-nav .nav-link:hover {
            color: var(--text);
            background: var(--surface-light);
        }

        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .main-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--cyan);
            border-radius: 1px;
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            padding: 6px 16px;
            transition: all var(--transition);
            min-width: 200px;
        }

        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        .nav-search-box .search-icon {
            color: var(--muted);
            font-size: 0.85rem;
        }

        .nav-search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text);
            font-size: 0.85rem;
            width: 100%;
        }

        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        .navbar-toggler-custom {
            display: none;
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--text);
            font-size: 1.2rem;
            width: 42px;
            height: 38px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
        }

        .navbar-toggler-custom:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        @media (max-width: 991px) {
            .nav-search-box {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .navbar-toggler-custom {
                display: flex;
            }
            .header-top-row {
                padding: 8px 0;
            }
            .header-user-actions .login-link {
                display: none;
            }
            .header-user-actions .icon-btn:nth-child(2) {
                display: none;
            }
            .main-nav-wrapper {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-soft);
                border-bottom: 1px solid var(--surface-border);
                padding: 12px 16px;
                display: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;
            }
            .main-nav-wrapper.open {
                display: block;
                max-height: 400px;
                padding: 12px 16px;
            }
            .main-nav {
                flex-direction: column;
                gap: 2px;
                width: 100%;
            }
            .main-nav .nav-link {
                padding: 12px 16px;
                font-size: 1rem;
                border-radius: 10px;
                width: 100%;
            }
            .main-nav .nav-link.active::after {
                display: none;
            }
            .main-nav-wrapper.open .main-nav {
                display: flex;
            }
            .brand-logo {
                font-size: 1.05rem;
                gap: 8px;
            }
            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
                border-radius: 8px;
            }
            .brand-version-tag {
                font-size: 0.6rem;
                padding: 2px 6px;
            }
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-bar {
            background: var(--bg-soft);
            border-bottom: 1px solid var(--surface-border);
            padding: 14px 0;
            margin-top: -1px;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .breadcrumb-custom li {
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-custom li:not(:last-child)::after {
            content: '/';
            color: var(--muted-dark);
            font-size: 0.75rem;
        }

        .breadcrumb-custom a {
            color: var(--muted);
        }

        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }

        .breadcrumb-custom .current {
            color: var(--cyan);
            font-weight: 500;
        }

        /* ===== Category Hero ===== */
        .category-hero {
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.85) 0%, rgba(11, 14, 20, 0.95) 100%),
                url('/assets/images/9a9a00956f2a9376.webp') center/cover no-repeat;
            padding: 64px 0 56px;
            border-bottom: 1px solid var(--surface-border);
            position: relative;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
            opacity: 0.7;
        }

        .category-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .category-hero h1 .accent {
            color: var(--cyan);
        }

        .category-hero .lead-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .category-hero .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .category-hero .hero-stat-item {
            text-align: left;
        }

        .category-hero .hero-stat-num {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--cyan);
            line-height: 1.2;
        }

        .category-hero .hero-stat-label {
            font-size: 0.82rem;
            color: var(--muted);
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .category-hero {
                padding: 40px 0 36px;
            }
            .category-hero h1 {
                font-size: 1.7rem;
            }
            .category-hero .lead-text {
                font-size: 0.95rem;
            }
            .category-hero .hero-stats {
                gap: 20px;
            }
            .category-hero .hero-stat-num {
                font-size: 1.4rem;
            }
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            margin-bottom: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 0.82rem;
            color: var(--muted);
            font-weight: 500;
            white-space: nowrap;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--muted);
            font-size: 0.82rem;
            padding: 6px 14px;
            border-radius: 20px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-btn:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .filter-btn.active {
            background: var(--cyan-soft);
            border-color: var(--cyan-border);
            color: var(--cyan);
            font-weight: 500;
        }

        .sort-select {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            font-size: 0.82rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            outline: none;
            transition: all var(--transition);
        }

        .sort-select:focus {
            border-color: var(--cyan-border);
        }

        @media (max-width: 768px) {
            .filter-bar {
                padding: 14px 16px;
                gap: 12px;
            }
            .filter-btn {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
        }

        /* ===== Featured Player Card ===== */
        .featured-player-wrapper {
            margin-bottom: 40px;
        }

        .featured-player-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
        }

        .featured-player-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--cyan-border);
        }

        .featured-player-image {
            flex: 0 0 320px;
            max-width: 320px;
            position: relative;
            min-height: 320px;
            background: var(--bg-soft);
            overflow: hidden;
        }

        .featured-player-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .featured-player-image .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(transparent, rgba(11, 14, 20, 0.9));
            z-index: 1;
        }

        .featured-player-image .player-badge {
            display: inline-block;
            background: var(--purple);
            color: #fff;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .featured-player-info {
            flex: 1;
            padding: 28px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-player-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .featured-player-title {
            font-size: 0.95rem;
            color: var(--cyan);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .featured-player-desc {
            font-size: 0.92rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 18px;
            max-width: 560px;
        }

        .featured-player-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .fps-item {
            text-align: center;
        }

        .fps-item .fps-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1.2;
        }

        .fps-item .fps-label {
            font-size: 0.7rem;
            color: var(--muted);
        }

        @media (max-width: 768px) {
            .featured-player-image {
                flex: 0 0 100%;
                max-width: 100%;
                min-height: 220px;
            }
            .featured-player-info {
                padding: 20px 18px;
            }
            .featured-player-name {
                font-size: 1.4rem;
            }
            .featured-player-stats {
                gap: 18px;
            }
        }

        /* ===== Player Grid ===== */
        .player-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .player-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }

        .player-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--cyan-border);
            transform: translateY(-3px);
        }

        .player-card-image {
            position: relative;
            aspect-ratio: 4/3;
            background: var(--bg-soft);
            overflow: hidden;
        }

        .player-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .player-card:hover .player-card-image img {
            transform: scale(1.05);
        }

        .player-card-image .player-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(11, 14, 20, 0.85);
            backdrop-filter: blur(6px);
            color: var(--cyan);
            font-size: 0.68rem;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .player-card-body {
            padding: 18px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .player-card-name-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .player-card-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
        }

        .player-card-id {
            font-size: 0.8rem;
            color: var(--muted);
        }

        .player-card-team {
            font-size: 0.78rem;
            color: var(--purple);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .player-card-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--muted);
            padding: 3px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.4);
        }

        .player-card-row:last-child {
            border-bottom: none;
        }

        .player-card-row .row-value {
            color: var(--text-secondary);
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .player-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .player-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Section Title ===== */
        .section-title-block {
            margin-bottom: 28px;
        }

        .section-title-block h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title-block h2::before {
            content: '';
            width: 4px;
            height: 22px;
            background: linear-gradient(180deg, var(--cyan), var(--purple));
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-title-block .section-sub {
            font-size: 0.9rem;
            color: var(--muted);
            margin-left: 14px;
        }

        @media (max-width: 768px) {
            .section-title-block h2 {
                font-size: 1.3rem;
            }
            .section-title-block .section-sub {
                font-size: 0.8rem;
                margin-left: 14px;
                display: block;
                margin-top: 4px;
            }
        }

        /* ===== Data Snapshot ===== */
        .data-snapshot-band {
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 28px 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            justify-content: space-between;
        }

        .data-snap-item {
            text-align: center;
            min-width: 100px;
            flex: 1;
        }

        .data-snap-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
        }

        .data-snap-value.orange {
            color: var(--orange);
        }
        .data-snap-value.purple {
            color: var(--purple);
        }

        .data-snap-label {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 6px;
        }

        @media (max-width: 768px) {
            .data-snapshot-band {
                padding: 20px 16px;
                gap: 16px;
            }
            .data-snap-value {
                font-size: 1.5rem;
            }
            .data-snap-label {
                font-size: 0.7rem;
            }
        }

        /* ===== Update List ===== */
        .update-list {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .update-list .update-item {
            padding: 16px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
            cursor: pointer;
        }

        .update-list .update-item:last-child {
            border-bottom: none;
        }

        .update-list .update-item:hover {
            background: var(--surface-light);
        }

        .update-item .update-date {
            font-size: 0.72rem;
            color: var(--orange);
            font-weight: 600;
            min-width: 58px;
            white-space: nowrap;
        }

        .update-item .update-text {
            font-size: 0.88rem;
            color: var(--text-secondary);
            flex: 1;
            line-height: 1.6;
        }

        .update-item .update-text strong {
            color: var(--text);
            font-weight: 600;
        }

        .update-item .update-arrow {
            color: var(--muted-dark);
            font-size: 0.75rem;
            transition: all var(--transition);
        }

        .update-item:hover .update-arrow {
            color: var(--cyan);
            transform: translateX(3px);
        }

        @media (max-width: 576px) {
            .update-list .update-item {
                padding: 12px 16px;
                gap: 10px;
                flex-wrap: wrap;
            }
            .update-item .update-date {
                min-width: auto;
            }
            .update-item .update-text {
                font-size: 0.82rem;
                flex-basis: 100%;
            }
        }

        /* ===== Cross Category ===== */
        .cross-category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .cross-cat-item {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition);
            display: block;
        }

        .cross-cat-item:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .cross-cat-item .cross-icon {
            font-size: 1.6rem;
            color: var(--cyan);
            margin-bottom: 10px;
        }

        .cross-cat-item .cross-label {
            font-size: 0.85rem;
            color: var(--text);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .cross-category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 400px) {
            .cross-category-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== CTA Band ===== */
        .cta-band {
            background: linear-gradient(135deg, rgba(22, 214, 199, 0.12), rgba(168, 85, 247, 0.12));
            border: 1px solid rgba(22, 214, 199, 0.3);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-band .cta-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .cta-band .cta-text p {
            font-size: 0.88rem;
            color: var(--muted);
            margin: 0;
        }

        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            font-size: 0.88rem;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
        }

        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
            transform: translateY(-1px);
        }

        .btn-custom-outline {
            background: transparent;
            border: 1.5px solid var(--cyan-border);
            color: var(--cyan);
        }

        .btn-custom-outline:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: var(--cyan);
        }

        @media (max-width: 576px) {
            .cta-band {
                padding: 24px 18px;
                flex-direction: column;
                text-align: center;
            }
            .btn-custom {
                padding: 8px 18px;
                font-size: 0.8rem;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 52px 0 24px;
            margin-top: 72px;
        }

        .site-footer .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .footer-brand-desc {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 0.82rem;
            color: var(--muted);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a::before {
            content: '›';
            font-size: 0.9rem;
            color: var(--muted-dark);
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-links a:hover::before {
            color: var(--cyan);
            transform: translateX(2px);
        }

        .footer-subscribe-input {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--text);
            font-size: 0.82rem;
            padding: 8px 16px;
            border-radius: 8px;
            outline: none;
            transition: all var(--transition);
            flex: 1;
            min-width: 0;
        }

        .footer-subscribe-input:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        .footer-subscribe-input::placeholder {
            color: var(--muted-dark);
        }

        .footer-bottom {
            border-top: 1px solid var(--surface-border);
            padding-top: 20px;
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--muted);
        }

        .footer-legal-links {
            display: flex;
            gap: 16px;
        }

        .footer-legal-links a {
            color: var(--muted);
            font-size: 0.78rem;
        }

        .footer-legal-links a:hover {
            color: var(--cyan);
        }

        .mb-16 {
            margin-bottom: 16px;
        }
        .mb-32 {
            margin-bottom: 32px;
        }
        .gap-12 {
            gap: 12px;
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 36px 0 18px;
                margin-top: 48px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-legal-links {
                gap: 12px;
            }
            .mb-32 {
                margin-bottom: 20px;
            }
        }

        /* ===== Breadcrumb gap fix ===== */
        main {
            margin-top: 0;
        }

/* roulang page: category5 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 118px;
        }

        body.no-scroll {
            overflow: hidden;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .text-cyan {
            color: var(--cyan) !important;
        }

        .text-orange {
            color: var(--orange) !important;
        }

        .text-purple {
            color: var(--purple) !important;
        }

        .text-muted-custom {
            color: var(--muted) !important;
        }

        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .section-pad {
            padding: 68px 0;
        }

        .section-pad-sm {
            padding: 48px 0;
        }

        .section-pad-lg {
            padding: 88px 0;
        }

        .bg-soft-dark {
            background: var(--bg-soft);
        }

        .bg-surface {
            background: var(--surface);
        }

        .border-surface {
            border: 1px solid var(--surface-border);
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }

        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
            transition: width var(--transition), height var(--transition);
        }

        .site-header.scrolled .brand-logo .logo-mark {
            width: 32px;
            height: 32px;
            font-size: 0.85rem;
        }

        .brand-logo:hover {
            color: var(--text);
        }

        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }

        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }

        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }

        .site-header.scrolled .header-nav-row {
            padding: 4px 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav .nav-link {
            display: block;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all var(--transition);
            position: relative;
            letter-spacing: 0.02em;
        }

        .main-nav .nav-link:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            font-weight: 600;
        }

        .main-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--cyan);
            border-radius: 2px;
        }

        .navbar-toggler-custom {
            display: none;
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            font-size: 1.3rem;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
        }

        .navbar-toggler-custom:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            border-radius: 8px;
            padding: 6px 12px;
            transition: all var(--transition);
        }

        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        .nav-search-box .search-icon {
            color: var(--muted-dark);
            font-size: 0.85rem;
        }

        .nav-search-box input {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
            width: 180px;
        }

        .nav-search-box input::placeholder {
            color: var(--muted-dark);
        }

        /* Mobile nav drawer */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 280px;
            background: var(--bg-soft);
            border-left: 1px solid var(--surface-border);
            z-index: 1100;
            padding: 20px;
            transform: translateX(100%);
            transition: transform var(--transition);
        }

        .mobile-nav-drawer.open {
            transform: translateX(0);
        }

        .mobile-nav-drawer .drawer-close {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            top: 16px;
            right: 16px;
            transition: color var(--transition);
        }

        .mobile-nav-drawer .drawer-close:hover {
            color: var(--cyan);
        }

        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1050;
        }

        .drawer-overlay.open {
            display: block;
        }

        .mobile-nav-list {
            list-style: none;
            margin: 40px 0 0;
            padding: 0;
        }

        .mobile-nav-list a {
            display: block;
            padding: 14px 12px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--surface-border);
            transition: all var(--transition);
        }

        .mobile-nav-list a:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
            padding-left: 18px;
        }

        .mobile-nav-list a.active {
            color: var(--cyan);
            font-weight: 600;
        }

        /* ===== Buttons ===== */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
            text-align: center;
            white-space: nowrap;
        }

        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
        }

        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
            transform: translateY(-1px);
        }

        .btn-custom-cyan-outline {
            background: transparent;
            border: 1.5px solid var(--cyan-border);
            color: var(--cyan);
        }

        .btn-custom-cyan-outline:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: var(--cyan);
            transform: translateY(-1px);
        }

        .btn-custom-sm {
            padding: 6px 14px;
            font-size: 0.8rem;
            border-radius: 8px;
        }

        .btn-custom-lg {
            padding: 12px 28px;
            font-size: 1rem;
        }

        .btn-custom:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        /* ===== Cards ===== */
        .card-custom {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
        }

        .card-custom:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--cyan-border);
            transform: translateY(-3px);
        }

        .card-custom-body {
            padding: 20px 22px;
        }

        .card-custom-footer {
            padding: 14px 22px;
            border-top: 1px solid var(--surface-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ===== Tags / Badges ===== */
        .tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .tag-badge-cyan {
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.3);
        }

        .tag-badge-orange {
            background: rgba(249, 115, 22, 0.15);
            color: var(--orange);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .tag-badge-purple {
            background: var(--purple-soft);
            color: var(--purple);
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .tag-badge-dark {
            background: var(--surface-light);
            color: var(--muted);
            border: 1px solid var(--surface-border);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--muted);
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .breadcrumb-custom a {
            color: var(--muted);
            transition: color var(--transition);
        }

        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }

        .breadcrumb-custom .current {
            color: var(--text-secondary);
        }

        .breadcrumb-custom i {
            font-size: 0.7rem;
            color: var(--muted-dark);
        }

        /* ===== Section headings ===== */
        .section-heading {
            margin-bottom: 36px;
        }

        .section-heading .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--purple);
            margin-bottom: 10px;
        }

        .section-heading h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .section-heading p {
            font-size: 1rem;
            color: var(--muted);
            max-width: 680px;
            margin-bottom: 0;
        }

        /* ===== Category intro banner ===== */
        .category-banner {
            background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 60%, var(--surface-light) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .category-banner::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(22, 214, 199, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: 20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-banner .banner-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--purple), var(--cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.6rem;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
        }

        .category-banner h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            position: relative;
            z-index: 1;
        }

        .category-banner p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .category-banner .banner-stats {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .category-banner .banner-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--muted);
        }

        .category-banner .banner-stats .stat-item i {
            color: var(--cyan);
        }

        /* ===== Filter / Sort bar ===== */
        .filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding: 16px 20px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            margin-bottom: 28px;
        }

        .filter-tabs {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--muted);
            background: transparent;
            border: 1px solid transparent;
            border-radius: 20px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-tab:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .filter-tab.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            border-color: rgba(22, 214, 199, 0.4);
            font-weight: 600;
        }

        .filter-sort {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 0.85rem;
        }

        .filter-sort select {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            outline: none;
            cursor: pointer;
            transition: border-color var(--transition);
        }

        .filter-sort select:focus {
            border-color: var(--cyan-border);
        }

        /* ===== Featured post card ===== */
        .featured-post-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-card);
            margin-bottom: 28px;
        }

        .featured-post-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-post-card .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0.5) 50%, rgba(11, 14, 20, 0.2) 100%);
            pointer-events: none;
        }

        .featured-post-card .featured-content {
            position: relative;
            z-index: 2;
            padding: 32px 36px;
        }

        .featured-post-card .featured-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .featured-post-card .featured-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 620px;
            margin-bottom: 16px;
        }

        .featured-post-card .featured-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: var(--muted);
        }

        .featured-post-card .featured-meta i {
            color: var(--cyan);
        }

        /* ===== Post list items ===== */
        .post-list-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 20px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            transition: all var(--transition);
            margin-bottom: 12px;
            cursor: pointer;
        }

        .post-list-item:hover {
            border-color: var(--cyan-border);
            box-shadow: var(--shadow-card);
            transform: translateX(4px);
        }

        .post-list-item .post-thumb {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--surface-light);
        }

        .post-list-item .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-list-item .post-info {
            flex: 1;
            min-width: 0;
        }

        .post-list-item .post-info .post-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
            transition: color var(--transition);
        }

        .post-list-item:hover .post-info .post-title {
            color: var(--cyan);
        }

        .post-list-item .post-info .post-excerpt {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-list-item .post-info .post-meta-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 0.78rem;
            color: var(--muted-dark);
        }

        .post-list-item .post-info .post-meta-row i {
            color: var(--cyan);
            margin-right: 4px;
        }

        /* ===== Hot tag cloud ===== */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            font-size: 0.82rem;
            font-weight: 500;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
        }

        .tag-cloud .tag-pill:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
            background: var(--cyan-soft);
        }

        .tag-cloud .tag-pill .tag-count {
            color: var(--muted-dark);
            font-size: 0.72rem;
        }

        .tag-cloud .tag-pill:hover .tag-count {
            color: var(--cyan);
        }

        /* ===== Sidebar widget ===== */
        .sidebar-widget {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            margin-bottom: 20px;
        }

        .sidebar-widget .widget-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-widget .widget-title i {
            color: var(--cyan);
            font-size: 0.9rem;
        }

        .sidebar-widget .widget-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-widget .widget-link-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
        }

        .sidebar-widget .widget-link-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .sidebar-widget .widget-link-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .sidebar-widget .widget-link-list a:hover {
            color: var(--cyan);
        }

        .sidebar-widget .widget-link-list a .badge-count {
            background: var(--surface-light);
            color: var(--muted);
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 12px;
        }

        /* ===== Cross category entry ===== */
        .cross-category-entry {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            transition: all var(--transition);
            margin-bottom: 12px;
        }

        .cross-category-entry:hover {
            border-color: var(--cyan-border);
            background: var(--cyan-soft);
            transform: translateX(4px);
        }

        .cross-category-entry .entry-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--surface-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan);
            font-size: 1rem;
            flex-shrink: 0;
            transition: all var(--transition);
        }

        .cross-category-entry:hover .entry-icon {
            background: rgba(22, 214, 199, 0.2);
            color: #fff;
        }

        .cross-category-entry .entry-info {
            flex: 1;
            min-width: 0;
        }

        .cross-category-entry .entry-info .entry-title {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px;
        }

        .cross-category-entry .entry-info .entry-desc {
            font-size: 0.78rem;
            color: var(--muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cross-category-entry .entry-arrow {
            color: var(--muted-dark);
            font-size: 0.8rem;
            transition: all var(--transition);
        }

        .cross-category-entry:hover .entry-arrow {
            color: var(--cyan);
            transform: translateX(4px);
        }

        /* ===== Single "View more" link area ===== */
        .view-more-row {
            text-align: center;
            margin-top: 24px;
        }

        .view-more-row a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--cyan);
            padding: 10px 24px;
            border: 1px solid var(--cyan-border);
            border-radius: 8px;
            transition: all var(--transition);
        }

        .view-more-row a:hover {
            background: var(--cyan-soft);
            color: #fff;
            border-color: var(--cyan);
        }

        /* ===== Subscribe CTA ===== */
        .subscribe-cta {
            background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .subscribe-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .subscribe-cta .cta-content {
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 260px;
        }

        .subscribe-cta .cta-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .subscribe-cta .cta-content p {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 0;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            min-width: 280px;
            flex: 1;
            max-width: 400px;
        }

        .subscribe-form input {
            flex: 1;
            background: var(--bg);
            border: 1px solid var(--surface-border);
            color: var(--text);
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 0.88rem;
            outline: none;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .subscribe-form input:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        .subscribe-form input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 56px 0 28px;
            margin-top: 0;
        }

        .site-footer .brand-logo {
            font-size: 1.2rem;
        }

        .site-footer .brand-logo .logo-mark {
            width: 34px;
            height: 34px;
            font-size: 0.9rem;
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.8;
            margin-top: 12px;
        }

        .footer-title {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-size: 0.88rem;
            color: var(--muted);
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-subscribe-input {
            flex: 1;
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            outline: none;
            transition: border-color var(--transition);
        }

        .footer-subscribe-input:focus {
            border-color: var(--cyan-border);
        }

        .footer-subscribe-input::placeholder {
            color: var(--muted-dark);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 24px;
            margin-top: 36px;
            border-top: 1px solid var(--surface-border);
            font-size: 0.8rem;
            color: var(--muted-dark);
        }

        .footer-legal-links {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .footer-legal-links a {
            color: var(--muted);
            font-size: 0.8rem;
            transition: color var(--transition);
        }

        .footer-legal-links a:hover {
            color: var(--cyan);
        }

        .mb-16 {
            margin-bottom: 16px;
        }

        .mb-32 {
            margin-bottom: 32px;
        }

        .gap-12 {
            gap: 12px;
        }

        /* ===== Scroll indicator ===== */
        .scroll-top-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 900;
            transition: all var(--transition);
            opacity: 0;
            visibility: hidden;
            font-size: 1rem;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            border-color: var(--cyan-border);
            background: var(--cyan-soft);
            color: #fff;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .container {
                max-width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }

            .section-pad {
                padding: 56px 0;
            }

            .section-pad-lg {
                padding: 68px 0;
            }

            .category-banner h1 {
                font-size: 1.9rem;
            }

            .featured-post-card {
                min-height: 360px;
            }

            .featured-post-card .featured-content h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 68px;
            }

            .header-top-row {
                padding: 8px 0;
            }

            .header-user-actions .icon-btn,
            .header-user-actions .login-link {
                display: none;
            }

            .header-nav-row {
                padding: 6px 0;
            }

            .navbar-toggler-custom {
                display: flex;
            }

            .main-nav-wrapper {
                display: none;
            }

            .nav-search-box {
                display: none;
            }

            .brand-logo {
                font-size: 1.1rem;
            }

            .brand-logo .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .brand-version-tag {
                display: none;
            }

            .site-header.scrolled .brand-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }

            .mobile-nav-drawer {
                display: block;
            }

            .drawer-overlay {
                display: block;
            }

            .section-heading h2 {
                font-size: 1.6rem;
            }

            .category-banner {
                padding: 24px 22px;
                border-radius: var(--radius-md);
            }

            .category-banner h1 {
                font-size: 1.6rem;
            }

            .category-banner p {
                font-size: 0.92rem;
            }

            .category-banner .banner-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                border-radius: 12px;
            }

            .category-banner .banner-stats {
                gap: 14px;
                font-size: 0.78rem;
            }

            .featured-post-card {
                min-height: 300px;
                border-radius: var(--radius-md);
            }

            .featured-post-card .featured-content {
                padding: 22px 20px;
            }

            .featured-post-card .featured-content h3 {
                font-size: 1.2rem;
            }

            .featured-post-card .featured-content p {
                font-size: 0.85rem;
                -webkit-line-clamp: 2;
            }

            .post-list-item {
                flex-direction: column;
                gap: 12px;
                padding: 14px 16px;
            }

            .post-list-item .post-thumb {
                width: 100%;
                height: 160px;
            }

            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-sort {
                justify-content: space-between;
            }

            .subscribe-cta {
                flex-direction: column;
                align-items: stretch;
                padding: 24px 22px;
            }

            .subscribe-cta .cta-content h3 {
                font-size: 1.2rem;
            }

            .subscribe-form {
                max-width: 100%;
            }

            .site-footer {
                padding: 40px 0 20px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                font-size: 0.75rem;
            }

            .scroll-top-btn {
                bottom: 16px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
            }

            .cross-category-entry {
                padding: 14px 16px;
            }
        }

        @media (max-width: 520px) {
            .section-pad {
                padding: 40px 0;
            }

            .section-pad-lg {
                padding: 52px 0;
            }

            .section-heading h2 {
                font-size: 1.4rem;
            }

            .category-banner h1 {
                font-size: 1.4rem;
            }

            .featured-post-card {
                min-height: 260px;
            }

            .featured-post-card .featured-content h3 {
                font-size: 1.1rem;
            }

            .featured-post-card .featured-meta {
                gap: 8px;
                font-size: 0.72rem;
            }

            .post-list-item .post-thumb {
                height: 130px;
            }

            .sidebar-widget {
                padding: 18px 16px;
            }

            .subscribe-cta {
                padding: 20px 16px;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form input {
                width: 100%;
            }

            .btn-custom {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }

/* roulang page: category6 */
:root {
            --bg: #0B0E14;
            --bg-soft: #0F1419;
            --surface: #151C24;
            --surface-light: #1B2430;
            --surface-border: #2A3441;
            --cyan: #16D6C7;
            --cyan-soft: rgba(22, 214, 199, 0.15);
            --cyan-border: rgba(22, 214, 199, 0.7);
            --orange: #F97316;
            --orange-hover: #FF8833;
            --purple: #A855F7;
            --purple-soft: rgba(168, 85, 247, 0.15);
            --text: #F0F4F8;
            --text-secondary: #C8D1DC;
            --muted: #A3B1C2;
            --muted-dark: #6B7A8D;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --transition: 0.25s ease;
            --header-bg: rgba(11, 14, 20, 0.92);
            --header-border: rgba(42, 52, 65, 0.7);
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 110px;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--orange);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, textarea, select {
            font-family: inherit;
        }
        .container {
            max-width: 1200px;
        }
        .text-cyan { color: var(--cyan) !important; }
        .text-orange { color: var(--orange) !important; }
        .text-muted-custom { color: var(--muted) !important; }
        .text-secondary-custom { color: var(--text-secondary) !important; }
        .section-pad { padding: 72px 0; }
        .gap-12 { gap: 12px; }
        .mb-16 { margin-bottom: 16px; }
        .mb-32 { margin-bottom: 32px; }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--header-border);
            transition: all var(--transition);
        }
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 52, 65, 0.5);
            transition: all var(--transition);
        }
        .site-header.scrolled .header-top-row {
            padding: 6px 0;
            border-bottom-color: transparent;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 0 18px rgba(22, 214, 199, 0.35);
        }
        .brand-logo:hover { color: var(--text); }
        .brand-version-tag {
            font-size: 0.7rem;
            padding: 3px 8px;
            background: var(--cyan-soft);
            color: var(--cyan);
            border: 1px solid rgba(22, 214, 199, 0.4);
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .header-user-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .header-user-actions .icon-btn {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 1.05rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }
        .header-user-actions .icon-btn:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .header-user-actions .login-link {
            font-size: 0.88rem;
            color: var(--text-secondary);
            padding: 6px 14px;
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .header-user-actions .login-link:hover {
            border-color: var(--cyan-border);
            color: var(--cyan);
        }
        .header-nav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            transition: all var(--transition);
        }
        .site-header.scrolled .header-nav-row { padding: 4px 0; }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav .nav-link {
            display: block;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            cursor: pointer;
        }
        .main-nav .nav-link:hover {
            color: var(--cyan);
            background: var(--cyan-soft);
        }
        .main-nav .nav-link.active {
            color: var(--cyan);
            background: var(--cyan-soft);
            font-weight: 600;
            box-shadow: inset 0 0 0 1px rgba(22, 214, 199, 0.35);
        }
        .navbar-toggler-custom {
            display: none;
            background: transparent;
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            font-size: 1.2rem;
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            cursor: pointer;
        }
        .navbar-toggler-custom:hover {
            color: var(--cyan);
            border-color: var(--cyan-border);
        }
        .nav-search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            padding: 6px 14px;
            min-width: 220px;
            transition: all var(--transition);
        }
        .nav-search-box:focus-within {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }
        .nav-search-box .search-icon {
            color: var(--muted-dark);
            font-size: 0.85rem;
        }
        .nav-search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text);
            font-size: 0.85rem;
            width: 100%;
        }
        .nav-search-box input::placeholder { color: var(--muted-dark); }

        /* ===== Breadcrumb ===== */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--muted);
            padding: 20px 0 0;
            margin: 0;
            list-style: none;
        }
        .breadcrumb-custom a {
            color: var(--muted);
            transition: color var(--transition);
        }
        .breadcrumb-custom a:hover { color: var(--cyan); }
        .breadcrumb-custom .separator { color: var(--muted-dark); }
        .breadcrumb-custom .current { color: var(--cyan); font-weight: 500; }

        /* ===== Category Intro ===== */
        .cat-intro {
            padding: 32px 0 36px;
            background: linear-gradient(180deg, rgba(22, 214, 199, 0.06) 0%, rgba(11, 14, 20, 0) 100%);
            border-bottom: 1px solid var(--surface-border);
        }
        .cat-intro h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .cat-intro h1 .highlight {
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cat-intro-desc {
            font-size: 1.02rem;
            color: var(--text-secondary);
            max-width: 780px;
            line-height: 1.8;
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: 20px 0;
            border-bottom: 1px solid var(--surface-border);
            margin-bottom: 28px;
        }
        .filter-tag {
            padding: 7px 16px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--muted);
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }
        .filter-tag:hover {
            color: var(--cyan);
            border-color: var(--cyan-border);
            background: var(--cyan-soft);
        }
        .filter-tag.active {
            color: var(--cyan);
            border-color: var(--cyan-border);
            background: var(--cyan-soft);
            font-weight: 600;
        }
        .filter-sort {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .filter-sort label {
            font-size: 0.82rem;
            color: var(--muted);
            white-space: nowrap;
        }
        .filter-sort select {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            padding: 7px 12px;
            font-size: 0.82rem;
            outline: none;
            transition: all var(--transition);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A3B1C2' d='M6 8L1.5 3.5h9z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 32px;
        }
        .filter-sort select:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }

        /* ===== Featured Review Card ===== */
        .featured-review {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: flex-end;
            background: var(--surface);
            box-shadow: var(--shadow-card);
            margin-bottom: 36px;
            transition: all var(--transition);
        }
        .featured-review:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .featured-review .featured-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-review .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(11, 14, 20, 0.2) 0%, rgba(11, 14, 20, 0.75) 55%, rgba(11, 14, 20, 0.95) 100%);
        }
        .featured-review .featured-content {
            position: relative;
            z-index: 2;
            padding: 32px 36px;
            width: 100%;
        }
        .featured-review .review-badge {
            display: inline-block;
            padding: 5px 14px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            background: var(--orange);
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .featured-review h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.35;
        }
        .featured-review p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 640px;
            margin-bottom: 16px;
            line-height: 1.7;
        }
        .review-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 18px;
            font-size: 0.8rem;
            color: var(--muted);
        }
        .review-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .review-meta .meta-item i { color: var(--cyan); }
        .review-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--orange);
            font-weight: 600;
        }
        .review-rating i { font-size: 0.75rem; }

        /* ===== Review Grid ===== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 22px;
            margin-bottom: 36px;
        }
        .review-card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .review-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--cyan-border);
        }
        .review-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
        }
        .review-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .review-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        .review-card .card-img-wrap .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            font-size: 0.72rem;
            font-weight: 600;
            border-radius: 20px;
            color: #fff;
            background: rgba(168, 85, 247, 0.85);
            z-index: 2;
        }
        .review-card .card-body-custom {
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .review-card .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .review-card .card-excerpt {
            font-size: 0.87rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 14px;
            flex-grow: 1;
        }
        .review-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--muted-dark);
            padding-top: 12px;
            border-top: 1px solid var(--surface-border);
        }
        .review-card .card-rating {
            display: flex;
            align-items: center;
            gap: 3px;
            color: var(--orange);
            font-weight: 600;
            font-size: 0.8rem;
        }
        .review-card .card-rating i { font-size: 0.7rem; }
        .col-span-6 { grid-column: span 6; }
        .col-span-4 { grid-column: span 4; }
        .col-span-12 { grid-column: span 12; }
        .col-span-3 { grid-column: span 3; }
        .col-span-9 { grid-column: span 9; }

        /* ===== Stats Snapshot ===== */
        .stats-snapshot {
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 36px;
        }
        .stat-item {
            text-align: center;
            min-width: 120px;
        }
        .stat-item .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1.2;
        }
        .stat-item .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 4px;
        }
        .stat-divider {
            width: 1px;
            height: 44px;
            background: var(--surface-border);
        }

        /* ===== Recent Update List ===== */
        .recent-update-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 36px;
        }
        .update-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            transition: all var(--transition);
        }
        .update-item:hover {
            border-color: var(--cyan-border);
            background: var(--surface-light);
        }
        .update-item .update-thumb {
            width: 72px;
            height: 52px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .update-item .update-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .update-item .update-info {
            flex-grow: 1;
            min-width: 0;
        }
        .update-item .update-title {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }
        .update-item .update-meta {
            font-size: 0.75rem;
            color: var(--muted-dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .update-item .update-rating {
            font-size: 0.8rem;
            color: var(--orange);
            font-weight: 600;
            flex-shrink: 0;
        }

        /* ===== Tags & Cross Links ===== */
        .tags-cross-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            margin-bottom: 36px;
        }
        .tag-panel {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-md);
            padding: 22px 26px;
        }
        .tag-panel .panel-title {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tag-panel .panel-title i { color: var(--cyan); }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud .tag-pill {
            padding: 5px 14px;
            font-size: 0.78rem;
            color: var(--text-secondary);
            background: var(--bg-soft);
            border: 1px solid var(--surface-border);
            border-radius: 20px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .tag-cloud .tag-pill:hover {
            color: var(--cyan);
            border-color: var(--cyan-border);
            background: var(--cyan-soft);
        }
        .cross-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cross-link-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--surface-border);
            font-size: 0.88rem;
        }
        .cross-link-list li:last-child { border-bottom: none; }
        .cross-link-list li i {
            color: var(--muted-dark);
            font-size: 0.7rem;
            transition: color var(--transition);
        }
        .cross-link-list li a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .cross-link-list li a:hover { color: var(--cyan); }

        /* ===== Subscribe CTA ===== */
        .subscribe-cta {
            background: linear-gradient(135deg, rgba(22, 214, 199, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            margin-bottom: 36px;
        }
        .subscribe-cta .cta-text {
            flex-grow: 1;
            min-width: 280px;
        }
        .subscribe-cta .cta-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .subscribe-cta .cta-text p {
            font-size: 0.9rem;
            color: var(--muted);
            margin: 0;
        }
        .subscribe-cta .cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .subscribe-cta .cta-form input {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            font-size: 0.88rem;
            min-width: 240px;
            outline: none;
            transition: all var(--transition);
        }
        .subscribe-cta .cta-form input:focus {
            border-color: var(--cyan-border);
            box-shadow: 0 0 0 3px rgba(22, 214, 199, 0.1);
        }
        .subscribe-cta .cta-form input::placeholder {
            color: var(--muted-dark);
        }

        /* ===== Buttons ===== */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.88rem;
            border-radius: 10px;
            padding: 10px 22px;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            letter-spacing: 0.02em;
        }
        .btn-custom-primary {
            background: var(--orange);
            color: #fff;
        }
        .btn-custom-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            box-shadow: 0 0 22px rgba(249, 115, 22, 0.45);
        }
        .btn-custom-outline {
            background: transparent;
            color: var(--cyan);
            border: 1.5px solid var(--cyan-border);
        }
        .btn-custom-outline:hover {
            background: var(--cyan-soft);
            color: var(--cyan);
            border-color: var(--cyan);
        }
        .btn-custom-sm {
            padding: 7px 16px;
            font-size: 0.8rem;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-soft);
            border-top: 1px solid var(--surface-border);
            padding: 52px 0 24px;
            margin-top: 40px;
        }
        .footer-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--muted);
            transition: color var(--transition);
        }
        .footer-links a:hover { color: var(--cyan); }
        .footer-subscribe-input {
            background: var(--surface-light);
            border: 1px solid var(--surface-border);
            color: var(--text);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            font-size: 0.85rem;
            min-width: 200px;
            flex-grow: 1;
            outline: none;
            transition: all var(--transition);
        }
        .footer-subscribe-input:focus {
            border-color: var(--cyan-border);
        }
        .footer-subscribe-input::placeholder { color: var(--muted-dark); }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--surface-border);
            margin-top: 32px;
            font-size: 0.78rem;
            color: var(--muted-dark);
        }
        .footer-legal-links {
            display: flex;
            gap: 16px;
        }
        .footer-legal-links a {
            color: var(--muted-dark);
            transition: color var(--transition);
        }
        .footer-legal-links a:hover { color: var(--cyan); }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .review-grid .col-span-4 { grid-column: span 6; }
            .review-grid .col-span-3 { grid-column: span 6; }
            .review-grid .col-span-9 { grid-column: span 12; }
            .tags-cross-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            body { padding-top: 76px; }
            .header-top-row { padding: 8px 0; }
            .header-user-actions .login-link { display: none; }
            .navbar-toggler-custom { display: flex; }
            .main-nav-wrapper {
                display: none;
                position: absolute;
                top: calc(100% - 4px);
                left: 0;
                right: 0;
                background: var(--header-bg);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid var(--surface-border);
                padding: 12px 16px;
                z-index: 100;
            }
            .main-nav-wrapper.show { display: block; }
            .main-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }
            .main-nav .nav-link {
                padding: 12px 14px;
                font-size: 0.92rem;
            }
            .nav-search-box { display: none !important; }
            .cat-intro h1 { font-size: 1.5rem; }
            .review-grid .col-span-6 { grid-column: span 12; }
            .review-grid .col-span-4 { grid-column: span 12; }
            .review-grid .col-span-3 { grid-column: span 12; }
            .review-grid .col-span-9 { grid-column: span 12; }
            .featured-review { min-height: 320px; }
            .featured-review .featured-content { padding: 20px 22px; }
            .featured-review h2 { font-size: 1.25rem; }
            .stats-snapshot { padding: 20px; justify-content: center; }
            .stat-divider { display: none; }
            .subscribe-cta { padding: 24px 22px; }
            .section-pad { padding: 48px 0; }
            .filter-sort { margin-left: 0; width: 100%; }
            .filter-bar { gap: 8px; }
        }
        @media (max-width: 520px) {
            .brand-version-tag { display: none; }
            .cat-intro h1 { font-size: 1.3rem; }
            .review-meta { gap: 10px; }
            .featured-review h2 { font-size: 1.1rem; }
            .update-item { flex-wrap: wrap; }
            .update-item .update-thumb { width: 56px; height: 42px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .subscribe-cta .cta-form input { min-width: 100%; }
            .btn-custom { padding: 9px 18px; font-size: 0.82rem; }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
