/* roulang page: index */
:root {
            --hp-red: #B3261E;
            --hp-red-dark: #8F1D17;
            --hp-red-light: #D45A4A;
            --hp-charcoal: #1F2937;
            --hp-charcoal-light: #2C3747;
            --hp-warm-gray: #F5F1EB;
            --hp-white: #FAFAFA;
            --hp-card-bg: #FFFFFF;
            --hp-text-title: #1F2937;
            --hp-text-body: #3A3A3A;
            --hp-text-muted: #7A7A7A;
            --hp-border: #E5DED6;
            --hp-green: #2E7D32;
            --hp-blue: #1E88E5;
            --hp-radius-sm: 6px;
            --hp-radius-md: 10px;
            --hp-radius-lg: 16px;
            --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
            --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
            --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
            --hp-transition: all 0.25s ease;
            --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --hp-gutter-desktop: 32px;
            --hp-gutter-mobile: 20px;
            --hp-section-space-desktop: 100px;
            --hp-section-space-tablet: 72px;
            --hp-section-space-mobile: 52px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--hp-font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--hp-text-body);
            background-color: var(--hp-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
        }

        a {
            text-decoration: none;
            color: var(--hp-red);
            transition: var(--hp-transition);
        }

        a:hover {
            color: var(--hp-red-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: 1140px;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (min-width: 1200px) {
            .container {
                max-width: 1170px;
            }
        }

        /* ========== Header / Navigation ========== */
        .hp-header {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
        }

        .hp-navbar {
            padding: 0 0;
            background: #fff;
        }

        .hp-navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--hp-red);
            letter-spacing: 0.5px;
        }

        .hp-navbar .navbar-brand:hover {
            color: var(--hp-red-dark);
        }

        .hp-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
        }

        .hp-navbar .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            padding: 18px 14px !important;
            position: relative;
            transition: var(--hp-transition);
        }

        .hp-navbar .nav-link:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-navbar .nav-link.active {
            color: var(--hp-red);
        }

        .hp-navbar .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 3px 3px 0 0;
        }

        .hp-nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hp-search-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--hp-border);
            border-radius: 50%;
            background: #fff;
            color: var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--hp-transition);
            cursor: pointer;
        }

        .hp-search-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-subscribe-btn {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-subscribe-btn:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .navbar-toggler {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }

        /* ========== Progress Step Nav ========== */
        .hp-step-nav {
            background: var(--hp-warm-gray);
            border-bottom: 1px solid var(--hp-border);
            padding: 10px 0;
        }

        .hp-step-track {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--hp-border) transparent;
        }
        .hp-step-track::-webkit-scrollbar {
            height: 4px;
        }
        .hp-step-track::-webkit-scrollbar-thumb {
            background: var(--hp-border);
            border-radius: 4px;
        }

        .hp-step-item {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            padding: 6px 14px;
            border-radius: 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--hp-text-muted);
            transition: var(--hp-transition);
            border: 1px solid transparent;
            background: transparent;
            text-decoration: none;
            white-space: nowrap;
        }

        .hp-step-item:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.05);
        }

        .hp-step-item.active {
            color: var(--hp-red);
            border-color: var(--hp-red);
            background: #fff;
            box-shadow: 0 2px 8px rgba(179, 38, 30, 0.1);
        }

        .hp-step-dot {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            background: #E8E3DD;
            color: var(--hp-text-muted);
            flex-shrink: 0;
            transition: var(--hp-transition);
        }

        .hp-step-item.active .hp-step-dot {
            background: var(--hp-red);
            color: #fff;
            box-shadow: 0 2px 6px rgba(179, 38, 30, 0.3);
        }

        .hp-step-connector {
            width: 16px;
            height: 2px;
            background: #D8D0C8;
            flex-shrink: 0;
            border-radius: 2px;
        }

        /* ========== Hero ========== */
        .hp-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(31, 41, 51, 0.85) 0%, rgba(31, 41, 51, 0.65) 50%, rgba(179, 38, 30, 0.55) 100%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 560px;
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            overflow: hidden;
        }

        .hp-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, rgba(250, 250, 250, 0.12));
            pointer-events: none;
        }

        .hp-hero-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: var(--hp-radius-lg);
            padding: 40px 36px;
            box-shadow: var(--hp-shadow-lg);
            position: relative;
            z-index: 2;
        }

        .hp-hero-avatar-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .hp-hero-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--hp-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.8rem;
            box-shadow: 0 4px 16px rgba(179, 38, 30, 0.35);
            flex-shrink: 0;
        }

        .hp-hero-identity h1 {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin: 0 0 4px;
            letter-spacing: 0.5px;
            line-height: 1.25;
        }

        .hp-hero-identity .hp-hero-badge-text {
            font-size: 0.85rem;
            color: var(--hp-text-muted);
            font-weight: 500;
            margin: 0;
        }

        .hp-hero-desc {
            font-size: 1.02rem;
            color: var(--hp-text-body);
            line-height: 1.85;
            margin-bottom: 24px;
            letter-spacing: 0.3px;
        }

        .hp-hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 28px;
        }

        .hp-stat-badge {
            text-align: center;
            min-width: 90px;
        }

        .hp-stat-number {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--hp-red);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .hp-stat-label {
            font-size: 0.78rem;
            color: var(--hp-text-muted);
            font-weight: 500;
            margin-top: 4px;
        }

        .hp-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hp-btn-primary {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 13px 28px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .hp-btn-primary:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(179, 38, 30, 0.4);
        }

        .hp-btn-secondary {
            background: transparent;
            color: var(--hp-red);
            border: 2px solid var(--hp-red);
            border-radius: 8px;
            padding: 11px 26px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hp-btn-secondary:hover {
            background: rgba(179, 38, 30, 0.08);
            color: var(--hp-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.15);
        }

        /* ========== Sections Common ========== */
        .hp-section {
            padding: var(--hp-section-space-desktop) 0;
        }

        .hp-section-alt {
            background: var(--hp-warm-gray);
        }

        .hp-section-heading {
            margin-bottom: 40px;
        }

        .hp-section-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.08);
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .hp-section-heading h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin: 0 0 10px;
            line-height: 1.35;
        }

        .hp-section-heading p {
            font-size: 1rem;
            color: var(--hp-text-body);
            line-height: 1.8;
            max-width: 680px;
            margin: 0;
        }

        /* ========== Feature Cards (Asymmetric 3) ========== */
        .hp-feature-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 28px;
            align-items: stretch;
        }

        .hp-feature-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 28px 24px;
            box-shadow: var(--hp-shadow-sm);
            transition: var(--hp-transition);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .hp-feature-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-4px);
            border-color: rgba(179, 38, 30, 0.25);
        }

        .hp-feature-card.feat-large {
            padding: 36px 30px;
        }

        .hp-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .hp-feature-icon.red {
            background: rgba(179, 38, 30, 0.1);
            color: var(--hp-red);
        }
        .hp-feature-icon.green {
            background: rgba(46, 125, 50, 0.1);
            color: var(--hp-green);
        }
        .hp-feature-icon.blue {
            background: rgba(30, 136, 229, 0.1);
            color: var(--hp-blue);
        }

        .hp-feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 10px;
            line-height: 1.4;
        }

        .hp-feature-card p {
            font-size: 0.92rem;
            color: var(--hp-text-body);
            margin: 0;
            line-height: 1.8;
            flex-grow: 1;
        }

        .hp-feature-card .hp-card-link {
            margin-top: 16px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--hp-red);
        }

        /* ========== Scene Demo Section ========== */
        .hp-scene-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }

        .hp-scene-image {
            border-radius: var(--hp-radius-lg);
            overflow: hidden;
            box-shadow: var(--hp-shadow-lg);
            position: relative;
        }

        .hp-scene-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: var(--hp-radius-lg);
        }

        .hp-scene-image::after {
            content: '虎扑网 · 赛事数据看板';
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(31, 41, 51, 0.85);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
        }

        .hp-scene-content h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .hp-scene-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--hp-red);
            margin: 20px 0 8px;
            line-height: 1.4;
        }

        .hp-scene-content p {
            font-size: 0.95rem;
            color: var(--hp-text-body);
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .hp-scene-quote {
            background: var(--hp-warm-gray);
            border-left: 4px solid var(--hp-red);
            padding: 16px 20px;
            border-radius: 0 var(--hp-radius-sm) var(--hp-radius-sm) 0;
            font-style: italic;
            color: var(--hp-text-body);
            font-size: 0.95rem;
            margin: 16px 0;
            line-height: 1.8;
        }

        /* ========== Hot Topics (Big + Small cards) ========== */
        .hp-hot-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
        }

        .hp-hot-big-card {
            background: var(--hp-card-bg);
            border-radius: var(--hp-radius-lg);
            overflow: hidden;
            border: 1px solid var(--hp-border);
            transition: var(--hp-transition);
            box-shadow: var(--hp-shadow-sm);
            position: relative;
        }

        .hp-hot-big-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-3px);
        }

        .hp-hot-big-img {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hp-hot-big-img .hp-hot-overlay {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--hp-red);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .hp-hot-big-body {
            padding: 22px 24px;
        }

        .hp-hot-big-body h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 8px;
            line-height: 1.45;
        }

        .hp-hot-big-body p {
            font-size: 0.9rem;
            color: var(--hp-text-body);
            margin: 0 0 16px;
            line-height: 1.8;
        }

        .hp-hot-small-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hp-hot-sm-card {
            background: var(--hp-card-bg);
            border-radius: var(--hp-radius-md);
            padding: 16px 18px;
            border: 1px solid var(--hp-border);
            display: flex;
            gap: 14px;
            align-items: center;
            transition: var(--hp-transition);
            box-shadow: var(--hp-shadow-sm);
            cursor: pointer;
        }

        .hp-hot-sm-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateX(4px);
            border-color: rgba(179, 38, 30, 0.25);
        }

        .hp-hot-sm-img {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .hp-hot-sm-content {
            flex: 1;
        }
        .hp-hot-sm-content h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 4px;
            line-height: 1.4;
        }
        .hp-hot-sm-content p {
            font-size: 0.8rem;
            color: var(--hp-text-muted);
            margin: 0;
            line-height: 1.5;
        }
        .hp-hot-sm-count {
            font-size: 0.75rem;
            color: var(--hp-red);
            font-weight: 700;
            white-space: nowrap;
        }

        /* ========== Milestone Timeline ========== */
        .hp-milestone-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        .hp-milestone-track::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 40px;
            right: 40px;
            height: 2px;
            background: #E0DAD2;
            z-index: 0;
        }

        .hp-milestone-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hp-milestone-dot {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #E0DAD2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
            color: var(--hp-text-muted);
            margin: 0 auto 12px;
            transition: var(--hp-transition);
            position: relative;
            z-index: 2;
        }

        .hp-milestone-item.active .hp-milestone-dot {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
            box-shadow: 0 4px 14px rgba(179, 38, 30, 0.35);
        }

        .hp-milestone-item h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 4px;
        }

        .hp-milestone-item p {
            font-size: 0.82rem;
            color: var(--hp-text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* ========== News / Social Proof ========== */
        .hp-news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hp-news-item {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 18px 22px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: var(--hp-transition);
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-news-item:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
            border-color: rgba(179, 38, 30, 0.22);
        }

        .hp-news-date {
            flex-shrink: 0;
            width: 80px;
            text-align: center;
            background: var(--hp-warm-gray);
            border-radius: 8px;
            padding: 10px 6px;
        }

        .hp-news-date .day {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--hp-red);
            line-height: 1.2;
        }
        .hp-news-date .month {
            font-size: 0.75rem;
            color: var(--hp-text-muted);
            font-weight: 600;
        }

        .hp-news-body {
            flex: 1;
        }

        .hp-news-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 6px;
            line-height: 1.45;
        }

        .hp-news-body p {
            font-size: 0.88rem;
            color: var(--hp-text-body);
            margin: 0 0 10px;
            line-height: 1.7;
        }

        .hp-news-body .hp-btn-read {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hp-red);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: var(--hp-transition);
        }

        .hp-news-body .hp-btn-read:hover {
            color: var(--hp-red-dark);
            gap: 8px;
        }

        /* ========== Brand Intro ========== */
        .hp-brand-card {
            background: var(--hp-charcoal);
            border-radius: var(--hp-radius-lg);
            padding: 36px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hp-brand-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(179, 38, 30, 0.25);
            pointer-events: none;
        }

        .hp-brand-card h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .hp-brand-card p {
            font-size: 0.98rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            margin: 0;
            max-width: 780px;
        }

        /* ========== Deep Content ========== */
        .hp-deep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
        }

        .hp-deep-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 28px 26px;
            box-shadow: var(--hp-shadow-sm);
            transition: var(--hp-transition);
        }

        .hp-deep-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-3px);
        }

        .hp-deep-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 0 0 10px;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hp-deep-card h3 i {
            color: var(--hp-red);
            font-size: 1.1rem;
        }

        .hp-deep-card p {
            font-size: 0.92rem;
            color: var(--hp-text-body);
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .hp-deep-card p:last-child {
            margin-bottom: 0;
        }

        .hp-deep-card ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }

        .hp-deep-card ul li {
            font-size: 0.9rem;
            color: var(--hp-text-body);
            line-height: 1.8;
            padding-left: 20px;
            position: relative;
            margin-bottom: 8px;
        }

        .hp-deep-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--hp-red);
            opacity: 0.7;
        }

        /* ========== FAQ ========== */
        .hp-faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .hp-accordion-item {
            border: 1px solid var(--hp-border) !important;
            border-radius: var(--hp-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--hp-card-bg);
            box-shadow: var(--hp-shadow-sm);
            transition: var(--hp-transition);
        }

        .hp-accordion-item:hover {
            border-color: rgba(179, 38, 30, 0.3) !important;
        }

        .hp-accordion-button {
            background: #fff !important;
            color: var(--hp-text-title) !important;
            font-weight: 700;
            font-size: 1rem;
            padding: 18px 22px !important;
            border: none !important;
            box-shadow: none !important;
            border-radius: var(--hp-radius-md) !important;
            transition: var(--hp-transition);
            position: relative;
        }

        .hp-accordion-button:not(.collapsed) {
            background: var(--hp-warm-gray) !important;
            color: var(--hp-red) !important;
            box-shadow: none !important;
        }

        .hp-accordion-button::before {
            content: '';
            position: absolute;
            left: 0;
            top: 18px;
            bottom: 18px;
            width: 4px;
            background: var(--hp-red);
            border-radius: 0 4px 4px 0;
            opacity: 0;
            transition: var(--hp-transition);
        }

        .hp-accordion-button:not(.collapsed)::before {
            opacity: 1;
        }

        .hp-accordion-button::after {
            background-size: 18px;
            filter: invert(28%) sepia(76%) saturate(3200%) hue-rotate(355deg) brightness(90%);
        }

        .hp-accordion-button:not(.collapsed)::after {
            filter: invert(28%) sepia(76%) saturate(3200%) hue-rotate(355deg) brightness(90%);
        }

        .hp-accordion-body {
            padding: 18px 22px !important;
            font-size: 0.92rem;
            color: var(--hp-text-body);
            line-height: 1.85;
            background: #fff;
        }

        /* ========== Limited Entry / CTA ========== */
        .hp-limited-card {
            background: linear-gradient(135deg, #1F2937 0%, #2C3747 60%, #B3261E 160%);
            border-radius: var(--hp-radius-lg);
            padding: 40px 36px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            justify-content: space-between;
            box-shadow: var(--hp-shadow-lg);
        }

        .hp-limited-info h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .hp-limited-info p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.7;
        }

        .hp-countdown {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .hp-countdown-box {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            width: 56px;
            height: 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .hp-countdown-box .num {
            font-size: 1.3rem;
            font-weight: 800;
            line-height: 1.2;
        }
        .hp-countdown-box .label {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .hp-btn-white {
            background: #fff;
            color: var(--hp-red);
            border: none;
            border-radius: 8px;
            padding: 13px 28px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-btn-white:hover {
            background: var(--hp-warm-gray);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        /* ========== Fixed Bottom CTA ========== */
        .hp-fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--hp-charcoal);
            color: #fff;
            z-index: 1040;
            padding: 14px 0;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
            transform: translateY(100%);
            transition: transform 0.35s ease;
        }

        .hp-fixed-cta.visible {
            transform: translateY(0);
        }

        .hp-fixed-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hp-fixed-cta-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .hp-fixed-cta .hp-btn-primary {
            box-shadow: none;
            padding: 11px 24px;
            font-size: 0.9rem;
        }

        .hp-fixed-cta-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            font-size: 1.2rem;
            padding: 4px;
            transition: var(--hp-transition);
        }

        .hp-fixed-cta-close:hover {
            color: #fff;
        }

        /* ========== Footer ========== */
        .hp-footer {
            background: var(--hp-charcoal);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 0;
            margin-top: 0;
        }

        .hp-footer h4 {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 16px;
        }

        .hp-footer-brand {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.75);
        }

        .hp-footer-brand .footer-logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hp-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hp-footer-links li {
            margin-bottom: 8px;
        }

        .hp-footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            transition: var(--hp-transition);
        }

        .hp-footer-links a:hover {
            color: #fff;
            padding-left: 6px;
        }

        .hp-footer-form input[type="email"] {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 10px 16px;
            color: #fff;
            font-size: 0.9rem;
            width: 100%;
            margin-bottom: 10px;
            transition: var(--hp-transition);
        }

        .hp-footer-form input[type="email"]:focus {
            outline: none;
            border-color: var(--hp-red);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .hp-footer-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 40px;
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .hp-footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .hp-footer-bottom a:hover {
            color: #fff;
        }

        /* ========== Responsive ========== */
        @media (max-width: 991px) {
            .hp-feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hp-feature-card.feat-large {
                grid-column: span 2;
            }
            .hp-scene-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hp-scene-image img {
                height: 300px;
            }
            .hp-hot-grid {
                grid-template-columns: 1fr;
            }
            .hp-milestone-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .hp-milestone-track::before {
                display: none;
            }
            .hp-deep-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hp-navbar .nav-link {
                padding: 12px 16px !important;
            }
            .hp-hero {
                min-height: auto;
                padding: 50px 0;
            }
            .hp-hero-card {
                padding: 28px 22px;
            }
            .hp-hero-identity h1 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 767px) {
            .hp-feature-grid {
                grid-template-columns: 1fr;
            }
            .hp-feature-card.feat-large {
                grid-column: span 1;
            }
            .hp-section {
                padding: var(--hp-section-space-tablet) 0;
            }
            .hp-hero-stats {
                gap: 14px;
            }
            .hp-stat-number {
                font-size: 1.3rem;
            }
            .hp-news-item {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }
            .hp-news-date {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 8px;
            }
            .hp-brand-card {
                padding: 24px 20px;
            }
            .hp-limited-card {
                padding: 28px 20px;
                flex-direction: column;
                text-align: center;
            }
            .hp-countdown {
                justify-content: center;
            }
            .hp-fixed-cta {
                padding: 10px 0;
            }
            .hp-fixed-cta-content {
                flex-direction: row;
                gap: 8px;
            }
            .hp-fixed-cta-text {
                font-size: 0.82rem;
            }
            .hp-fixed-cta .hp-btn-primary {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            .hp-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hp-milestone-track {
                grid-template-columns: 1fr;
            }
            .hp-step-track {
                gap: 4px;
            }
            .hp-step-item {
                padding: 5px 10px;
                font-size: 0.78rem;
            }
            .hp-step-dot {
                width: 22px;
                height: 22px;
                font-size: 0.68rem;
            }
        }

        @media (max-width: 575px) {
            .hp-hero-identity h1 {
                font-size: 1.45rem;
            }
            .hp-hero-desc {
                font-size: 0.92rem;
            }
            .hp-hero-cta {
                flex-direction: column;
                gap: 10px;
            }
            .hp-btn-primary,
            .hp-btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            .hp-section-heading h2 {
                font-size: 1.5rem;
            }
            .hp-scene-content h2 {
                font-size: 1.4rem;
            }
            .hp-hot-big-img {
                height: 180px;
            }
            .hp-note-text {
                font-size: 0.8rem;
            }
            .hp-limited-info h2 {
                font-size: 1.3rem;
            }
        }

        /* Focus visible for accessibility */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .hp-step-item:focus-visible,
        .hp-news-body .hp-btn-read:focus-visible {
            outline: 3px solid rgba(179, 38, 30, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Smooth image rendering */
        .hp-scene-image img,
        .hp-hot-big-img,
        .hp-hot-sm-img {
            background: #E5DED6;
        }

/* roulang page: category1 */
:root {
            --hp-red: #B3261E;
            --hp-red-dark: #8F1D17;
            --hp-red-light: #D45A4A;
            --hp-charcoal: #1F2937;
            --hp-charcoal-light: #2C3747;
            --hp-warm-gray: #F5F1EB;
            --hp-white: #FAFAFA;
            --hp-card-bg: #FFFFFF;
            --hp-text-title: #1F2937;
            --hp-text-body: #3A3A3A;
            --hp-text-muted: #7A7A7A;
            --hp-border: #E5DED6;
            --hp-green: #2E7D32;
            --hp-blue: #1E88E5;
            --hp-radius-sm: 6px;
            --hp-radius-md: 10px;
            --hp-radius-lg: 16px;
            --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
            --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
            --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
            --hp-transition: all 0.25s ease;
            --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --hp-gutter-desktop: 32px;
            --hp-gutter-mobile: 20px;
            --hp-section-space-desktop: 100px;
            --hp-section-space-tablet: 72px;
            --hp-section-space-mobile: 52px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--hp-font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--hp-text-body);
            background-color: var(--hp-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: var(--hp-red);
            transition: var(--hp-transition);
        }

        a:hover {
            color: var(--hp-red-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: 1170px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== Header / Navigation ========== */
        .hp-header {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
        }

        .hp-navbar {
            padding: 0 0;
            background: #fff;
        }

        .hp-navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--hp-red);
            letter-spacing: 0.5px;
        }

        .hp-navbar .navbar-brand:hover {
            color: var(--hp-red-dark);
        }

        .hp-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
        }

        .hp-navbar .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            padding: 18px 14px !important;
            position: relative;
            transition: var(--hp-transition);
        }

        .hp-navbar .nav-link:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-navbar .nav-link.active {
            color: var(--hp-red);
        }

        .hp-navbar .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 3px 3px 0 0;
        }

        .hp-nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hp-search-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--hp-border);
            border-radius: 50%;
            background: #fff;
            color: var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--hp-transition);
            cursor: pointer;
        }

        .hp-search-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-subscribe-btn {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-subscribe-btn:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .navbar-toggler {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }

        /* ========== Progress Step Nav ========== */
        .hp-step-nav {
            background: var(--hp-warm-gray);
            border-bottom: 1px solid var(--hp-border);
            padding: 10px 0;
        }

        .hp-step-track {
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            white-space: nowrap;
            padding: 2px 0;
        }

        .hp-step-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hp-text-muted);
            padding: 4px 6px;
            border-radius: 6px;
            transition: var(--hp-transition);
            flex-shrink: 0;
        }

        .hp-step-item:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.06);
        }

        .hp-step-item.active {
            color: var(--hp-red);
        }

        .hp-step-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--hp-border);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--hp-text-muted);
            transition: var(--hp-transition);
        }

        .hp-step-item.active .hp-step-dot {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
        }

        .hp-step-connector {
            width: 28px;
            height: 2px;
            background: var(--hp-border);
            flex-shrink: 0;
        }

        /* ========== Breadcrumb ========== */
        .hp-breadcrumb-wrap {
            background: var(--hp-warm-gray);
            padding: 14px 0;
            border-bottom: 1px solid var(--hp-border);
        }

        .hp-breadcrumb {
            margin: 0;
            font-size: 0.9rem;
            color: var(--hp-text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .hp-breadcrumb a {
            color: var(--hp-text-muted);
        }

        .hp-breadcrumb a:hover {
            color: var(--hp-red);
        }

        .hp-breadcrumb .separator {
            color: var(--hp-border);
        }

        .hp-breadcrumb .current {
            color: var(--hp-red);
            font-weight: 700;
        }

        /* ========== Category Hero ========== */
        .hp-cat-hero {
            background-image: linear-gradient(135deg, rgba(15, 15, 17, 0.92) 0%, rgba(31, 41, 49, 0.82) 45%, rgba(179, 38, 30, 0.72) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 72px 0 64px;
            color: #fff;
            overflow: hidden;
        }

        .hp-cat-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--hp-red), var(--hp-red-dark), var(--hp-charcoal));
        }

        .hp-cat-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .hp-cat-hero h1 {
            font-size: 2.4rem;
            font-weight: 900;
            color: #fff;
            margin: 0 0 16px;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }

        .hp-cat-hero p {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .hp-cat-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hp-cat-hero-actions .hp-btn-primary {
            background: #fff;
            color: var(--hp-red);
            font-weight: 800;
        }

        .hp-cat-hero-actions .hp-btn-primary:hover {
            background: var(--hp-red);
            color: #fff;
            transform: translateY(-2px);
        }

        .hp-cat-hero-actions .hp-btn-ghost {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            font-weight: 700;
        }

        .hp-cat-hero-actions .hp-btn-ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .hp-cat-hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 36px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hp-cat-hero-stat {
            flex: 1;
            min-width: 120px;
        }

        .hp-cat-hero-stat .number {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
        }

        .hp-cat-hero-stat .label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        }

        /* ========== Buttons ========== */
        .hp-btn-primary {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .hp-btn-primary:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .hp-btn-outline {
            background: transparent;
            color: var(--hp-red);
            border: 2px solid var(--hp-red);
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hp-btn-outline:hover {
            background: rgba(179, 38, 30, 0.08);
            color: var(--hp-red-dark);
            border-color: var(--hp-red-dark);
            transform: translateY(-1px);
        }

        .hp-btn-ghost {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ========== Filter Bar ========== */
        .hp-filter-bar {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            padding: 16px 0;
            position: relative;
            z-index: 5;
        }

        .hp-filter-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .hp-filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .hp-filter-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--hp-text-title);
            white-space: nowrap;
        }

        .hp-filter-btn {
            padding: 6px 16px;
            border: 1px solid var(--hp-border);
            border-radius: 20px;
            background: #fff;
            color: var(--hp-text-muted);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-filter-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-filter-btn.active {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
        }

        .hp-filter-sort {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hp-filter-sort select {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 8px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hp-text-body);
            background: #fff;
            cursor: pointer;
            transition: var(--hp-transition);
        }

        .hp-filter-sort select:focus {
            outline: none;
            border-color: var(--hp-red);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
        }

        /* ========== Main Content Area ========== */
        .hp-content-section {
            padding: 48px 0 64px;
            background: var(--hp-white);
        }

        .hp-main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: var(--hp-gutter-desktop);
            align-items: start;
        }

        .hp-card-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hp-basketball-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            overflow: hidden;
            display: grid;
            grid-template-columns: 260px 1fr;
            transition: var(--hp-transition);
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-basketball-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
            border-color: rgba(179, 38, 30, 0.3);
        }

        .hp-basketball-card .card-image {
            position: relative;
            min-height: 100%;
            overflow: hidden;
        }

        .hp-basketball-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
            transition: var(--hp-transition);
        }

        .hp-basketball-card:hover .card-image img {
            transform: scale(1.04);
        }

        .hp-basketball-card .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--hp-red);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }

        .hp-basketball-card .card-body {
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hp-basketball-card .card-title {
            font-size: 1.12rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin: 0 0 8px;
            line-height: 1.45;
        }

        .hp-basketball-card .card-title a {
            color: var(--hp-text-title);
        }

        .hp-basketball-card .card-title a:hover {
            color: var(--hp-red);
        }

        .hp-basketball-card .card-excerpt {
            font-size: 0.9rem;
            color: var(--hp-text-muted);
            line-height: 1.7;
            margin: 0 0 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hp-basketball-card .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--hp-text-muted);
            flex-wrap: wrap;
        }

        .hp-basketball-card .card-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hp-basketball-card .card-meta i {
            color: var(--hp-red);
            font-size: 0.75rem;
        }

        .hp-basketball-card .card-link {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--hp-red);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: auto;
            padding-top: 12px;
        }

        .hp-basketball-card .card-link:hover {
            color: var(--hp-red-dark);
            gap: 8px;
        }

        /* Sidebar */
        .hp-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: 110px;
        }

        .hp-sidebar-widget {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 22px 20px;
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-sidebar-widget .widget-title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--hp-warm-gray);
            position: relative;
        }

        .hp-sidebar-widget .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--hp-red);
        }

        .hp-sidebar-hotlist {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hp-sidebar-hotlist li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--hp-warm-gray);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .hp-sidebar-hotlist li:last-child {
            border-bottom: none;
        }

        .hp-sidebar-hotlist .rank {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            background: var(--hp-warm-gray);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.75rem;
            color: var(--hp-text-muted);
        }

        .hp-sidebar-hotlist li:nth-child(1) .rank {
            background: var(--hp-red);
            color: #fff;
        }

        .hp-sidebar-hotlist li:nth-child(2) .rank {
            background: var(--hp-red-light);
            color: #fff;
        }

        .hp-sidebar-hotlist li:nth-child(3) .rank {
            background: #f0c4b8;
            color: var(--hp-red-dark);
        }

        .hp-sidebar-hotlist a {
            color: var(--hp-text-body);
            font-weight: 600;
        }

        .hp-sidebar-hotlist a:hover {
            color: var(--hp-red);
        }

        .hp-sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hp-sidebar-tags a {
            display: inline-block;
            padding: 5px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            border-radius: 16px;
            background: var(--hp-warm-gray);
            color: var(--hp-text-body);
            transition: var(--hp-transition);
            border: 1px solid transparent;
        }

        .hp-sidebar-tags a:hover {
            background: var(--hp-red);
            color: #fff;
            border-color: var(--hp-red);
        }

        .hp-sidebar-subscribe {
            background: linear-gradient(135deg, var(--hp-charcoal), var(--hp-red-dark));
            color: #fff;
            border-radius: var(--hp-radius-md);
            padding: 22px 20px;
            text-align: center;
            border: none;
        }

        .hp-sidebar-subscribe h4 {
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .hp-sidebar-subscribe p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 14px;
        }

        .hp-sidebar-subscribe .hp-btn-primary {
            background: #fff;
            color: var(--hp-red);
            width: 100%;
            justify-content: center;
            font-size: 0.85rem;
            padding: 10px 18px;
        }

        .hp-sidebar-subscribe .hp-btn-primary:hover {
            background: var(--hp-warm-gray);
            color: var(--hp-red-dark);
        }

        /* ========== Deep Content Zone ========== */
        .hp-deep-zone {
            padding: 56px 0;
            background: var(--hp-warm-gray);
            border-top: 1px solid var(--hp-border);
            border-bottom: 1px solid var(--hp-border);
        }

        .hp-deep-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 48px;
        }

        .hp-deep-block:last-child {
            margin-bottom: 0;
        }

        .hp-deep-block.reverse {
            direction: rtl;
        }

        .hp-deep-block.reverse>* {
            direction: ltr;
        }

        .hp-deep-image {
            position: relative;
            border-radius: var(--hp-radius-md);
            overflow: hidden;
            box-shadow: var(--hp-shadow-md);
        }

        .hp-deep-image img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }

        .hp-deep-image .overlay-tag {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(31, 41, 49, 0.85);
            color: #fff;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .hp-deep-content {
            padding: 10px 0;
        }

        .hp-deep-content .section-label {
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--hp-red);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .hp-deep-content h2 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--hp-text-title);
            margin: 0 0 14px;
            line-height: 1.4;
        }

        .hp-deep-content p {
            font-size: 0.95rem;
            color: var(--hp-text-body);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        .hp-deep-content .hp-data-point {
            background: #fff;
            border-left: 3px solid var(--hp-red);
            padding: 14px 18px;
            border-radius: 0 var(--hp-radius-sm) var(--hp-radius-sm) 0;
            margin: 14px 0;
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-deep-content .hp-data-point span {
            font-weight: 800;
            color: var(--hp-red);
            font-size: 1.2rem;
        }

        /* ========== FAQ ========== */
        .hp-faq-section {
            padding: 56px 0;
            background: #fff;
        }

        .hp-faq-section .section-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--hp-text-title);
            margin-bottom: 28px;
            text-align: center;
        }

        .hp-faq-section .section-sub {
            text-align: center;
            color: var(--hp-text-muted);
            font-size: 0.95rem;
            max-width: 600px;
            margin: -20px auto 32px;
        }

        .hp-accordion .accordion-item {
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-sm) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-accordion .accordion-button {
            background: #fff;
            color: var(--hp-text-title);
            font-weight: 700;
            font-size: 0.95rem;
            padding: 16px 20px;
            border: none;
            border-left: 3px solid var(--hp-red);
            box-shadow: none;
        }

        .hp-accordion .accordion-button:not(.collapsed) {
            background: var(--hp-warm-gray);
            color: var(--hp-red);
            border-left-color: var(--hp-red-dark);
        }

        .hp-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.1);
            outline: none;
        }

        .hp-accordion .accordion-body {
            background: #fff;
            font-size: 0.9rem;
            color: var(--hp-text-body);
            line-height: 1.8;
            padding: 16px 20px 18px;
            border-top: 1px solid var(--hp-warm-gray);
        }

        /* ========== CTA Section ========== */
        .hp-cta-section {
            padding: 56px 0;
            background: linear-gradient(135deg, var(--hp-charcoal), var(--hp-red-dark));
            color: #fff;
        }

        .hp-cta-block {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hp-cta-block .cta-text h2 {
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            margin: 0 0 8px;
        }

        .hp-cta-block .cta-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            max-width: 520px;
        }

        .hp-cta-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hp-cta-actions .hp-btn-primary {
            background: #fff;
            color: var(--hp-red);
            font-weight: 800;
        }

        .hp-cta-actions .hp-btn-primary:hover {
            background: var(--hp-warm-gray);
            color: var(--hp-red-dark);
        }

        .hp-cta-actions .hp-btn-ghost {
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* ========== Bottom Sticky CTA ========== */
        .hp-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            background: var(--hp-charcoal);
            border-top: 2px solid var(--hp-red);
            padding: 12px 0;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        }

        .hp-bottom-bar.visible {
            transform: translateY(0);
        }

        .hp-bottom-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hp-bottom-bar-text {
            color: #fff;
            font-weight: 700;
            font-size: 0.92rem;
        }

        .hp-bottom-bar-text span {
            color: var(--hp-red-light);
        }

        .hp-bottom-bar .hp-btn-primary {
            background: var(--hp-red);
            color: #fff;
            font-size: 0.85rem;
            padding: 10px 20px;
        }

        .hp-bottom-bar .hp-btn-primary:hover {
            background: var(--hp-red-light);
        }

        .hp-bottom-bar-close {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            cursor: pointer;
            padding: 4px;
            transition: var(--hp-transition);
        }

        .hp-bottom-bar-close:hover {
            color: #fff;
        }

        /* ========== Footer ========== */
        .hp-footer {
            background: var(--hp-charcoal);
            color: rgba(255, 255, 255, 0.75);
            padding: 56px 0 24px;
            font-size: 0.9rem;
        }

        .hp-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .hp-footer .footer-logo span:last-child {
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .hp-footer-brand p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.65);
            max-width: 300px;
        }

        .hp-footer h4 {
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }

        .hp-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hp-footer-links li {
            margin-bottom: 8px;
        }

        .hp-footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.88rem;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hp-footer-links a::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--hp-red-light);
            border-radius: 50%;
            display: inline-block;
            opacity: 0.6;
        }

        .hp-footer-links a:hover {
            color: #fff;
            transform: translateX(3px);
        }

        .hp-footer-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hp-footer-form input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 10px 16px;
            color: #fff;
            font-size: 0.85rem;
            transition: var(--hp-transition);
        }

        .hp-footer-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .hp-footer-form input:focus {
            outline: none;
            border-color: var(--hp-red-light);
            box-shadow: 0 0 0 3px rgba(212, 90, 74, 0.2);
        }

        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .hp-footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }

        .hp-footer-bottom a:hover {
            color: #fff;
        }

        /* ========== Responsive ========== */
        @media (max-width: 991px) {
            .hp-main-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hp-sidebar {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .hp-sidebar-widget {
                flex: 1 1 240px;
            }
            .hp-deep-block {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hp-deep-block.reverse {
                direction: ltr;
            }
            .hp-cat-hero h1 {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 767px) {
            .hp-basketball-card {
                grid-template-columns: 1fr;
            }
            .hp-basketball-card .card-image img {
                aspect-ratio: 16/7;
            }
            .hp-cat-hero {
                padding: 48px 0 40px;
            }
            .hp-cat-hero h1 {
                font-size: 1.5rem;
            }
            .hp-cat-hero p {
                font-size: 0.95rem;
            }
            .hp-cat-hero-stats {
                gap: 12px;
            }
            .hp-cat-hero-stat .number {
                font-size: 1.3rem;
            }
            .hp-sidebar {
                flex-direction: column;
            }
            .hp-sidebar-widget {
                flex: 1 1 100%;
            }
            .hp-cta-block {
                flex-direction: column;
                align-items: flex-start;
            }
            .hp-bottom-bar-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .hp-bottom-bar {
                padding: 10px 0;
            }
            .hp-bottom-bar-text {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 520px) {
            .hp-step-nav {
                padding: 8px 0;
            }
            .hp-step-item {
                font-size: 0.75rem;
                gap: 4px;
            }
            .hp-step-dot {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }
            .hp-step-connector {
                width: 16px;
            }
            .hp-filter-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

/* roulang page: category2 */
:root {
            --hp-red: #B3261E;
            --hp-red-dark: #8F1D17;
            --hp-red-light: #D45A4A;
            --hp-charcoal: #1F2937;
            --hp-charcoal-light: #2C3747;
            --hp-warm-gray: #F5F1EB;
            --hp-white: #FAFAFA;
            --hp-card-bg: #FFFFFF;
            --hp-text-title: #1F2937;
            --hp-text-body: #3A3A3A;
            --hp-text-muted: #7A7A7A;
            --hp-border: #E5DED6;
            --hp-green: #2E7D32;
            --hp-blue: #1E88E5;
            --hp-radius-sm: 6px;
            --hp-radius-md: 10px;
            --hp-radius-lg: 16px;
            --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
            --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
            --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
            --hp-transition: all 0.25s ease;
            --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --hp-gutter-desktop: 32px;
            --hp-gutter-mobile: 20px;
            --hp-section-space-desktop: 100px;
            --hp-section-space-tablet: 72px;
            --hp-section-space-mobile: 52px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--hp-font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--hp-text-body);
            background-color: var(--hp-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
        }

        a {
            text-decoration: none;
            color: var(--hp-red);
            transition: var(--hp-transition);
        }
        a:hover {
            color: var(--hp-red-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: 1170px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== Header / Navigation ========== */
        .hp-header {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
        }

        .hp-navbar {
            padding: 0 0;
            background: #fff;
        }

        .hp-navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--hp-red);
            letter-spacing: 0.5px;
        }
        .hp-navbar .navbar-brand:hover {
            color: var(--hp-red-dark);
        }

        .hp-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
        }

        .hp-navbar .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            padding: 18px 14px !important;
            position: relative;
            transition: var(--hp-transition);
        }
        .hp-navbar .nav-link:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }
        .hp-navbar .nav-link.active {
            color: var(--hp-red);
        }
        .hp-navbar .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 3px 3px 0 0;
        }

        .hp-nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hp-search-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--hp-border);
            border-radius: 50%;
            background: #fff;
            color: var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--hp-transition);
            cursor: pointer;
        }
        .hp-search-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-subscribe-btn {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }
        .hp-subscribe-btn:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .navbar-toggler {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 6px 10px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }

        /* ========== Progress Step Nav ========== */
        .hp-step-nav {
            background: var(--hp-warm-gray);
            border-bottom: 1px solid var(--hp-border);
            padding: 10px 0;
        }

        .hp-step-track {
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: none;
        }
        .hp-step-track::-webkit-scrollbar {
            display: none;
        }

        .hp-step-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--hp-text-muted);
            padding: 4px 8px;
            border-radius: 20px;
            transition: var(--hp-transition);
            flex-shrink: 0;
        }
        .hp-step-item:hover {
            color: var(--hp-red);
        }
        .hp-step-item.active {
            color: var(--hp-red);
        }

        .hp-step-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #D0C8C0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--hp-text-muted);
            flex-shrink: 0;
            transition: var(--hp-transition);
        }
        .hp-step-item.active .hp-step-dot {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
            box-shadow: 0 2px 8px rgba(179, 38, 30, 0.35);
        }

        .hp-step-connector {
            display: inline-block;
            width: 24px;
            height: 2px;
            background: #D0C8C0;
            flex-shrink: 0;
            margin: 0 2px;
        }

        /* ========== Breadcrumb ========== */
        .hp-breadcrumb-wrapper {
            background: var(--hp-warm-gray);
            padding: 10px 0;
            border-bottom: 1px solid var(--hp-border);
        }
        .hp-breadcrumb {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--hp-text-muted);
        }
        .hp-breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hp-breadcrumb a {
            color: var(--hp-text-muted);
            transition: var(--hp-transition);
        }
        .hp-breadcrumb a:hover {
            color: var(--hp-red);
        }
        .hp-breadcrumb .hp-breadcrumb-sep {
            color: #C0B8B0;
            font-size: 0.7rem;
        }
        .hp-breadcrumb .hp-breadcrumb-current {
            color: var(--hp-red);
            font-weight: 600;
        }

        /* ========== Buttons ========== */
        .hp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }
        .hp-btn-primary:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(179, 38, 30, 0.35);
        }
        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(179, 38, 30, 0.35);
            outline-offset: 2px;
        }

        .hp-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--hp-red);
            border: 1.5px solid var(--hp-red);
            border-radius: 8px;
            padding: 11px 22px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }
        .hp-btn-outline:hover {
            background: rgba(179, 38, 30, 0.06);
            color: var(--hp-red-dark);
            border-color: var(--hp-red-dark);
            transform: translateY(-1px);
        }
        .hp-btn-outline:focus-visible {
            outline: 3px solid rgba(179, 38, 30, 0.25);
            outline-offset: 2px;
        }

        /* ========== Hero ========== */
        .hp-football-hero {
            position: relative;
            background: linear-gradient(135deg, var(--hp-charcoal) 0%, #2C120F 50%, #3D1713 100%);
            padding: 72px 0 64px;
            overflow: hidden;
        }
        .hp-football-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }
        .hp-football-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(31, 41, 55, 0.88) 0%, rgba(31, 41, 55, 0.45) 50%, rgba(31, 41, 55, 0.15) 100%);
            z-index: 0;
        }
        .hp-football-hero .container {
            position: relative;
            z-index: 1;
        }
        .hp-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hp-hero-text {
            flex: 1 1 500px;
            min-width: 0;
        }
        .hp-hero-text h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 900;
            color: #fff;
            margin: 0 0 16px;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }
        .hp-hero-text .hp-hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
            margin: 0 0 28px;
            max-width: 560px;
        }
        .hp-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .hp-hero-actions .hp-btn-primary {
            background: var(--hp-red);
            border-radius: 8px;
        }
        .hp-hero-actions .hp-btn-outline {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }
        .hp-hero-actions .hp-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        .hp-hero-visual {
            flex: 1 1 340px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hp-progress-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--hp-radius-lg);
            padding: 28px 24px;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
        }
        .hp-progress-ring-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .hp-progress-ring {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hp-progress-ring svg {
            transform: rotate(-90deg);
            width: 120px;
            height: 120px;
        }
        .hp-progress-ring .hp-ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.15);
            stroke-width: 8;
        }
        .hp-progress-ring .hp-ring-fg {
            fill: none;
            stroke: var(--hp-red-light);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 339.292;
            stroke-dashoffset: 61.07;
            transition: stroke-dashoffset 1.2s ease;
            filter: drop-shadow(0 0 6px rgba(212, 90, 74, 0.6));
        }
        .hp-progress-ring .hp-ring-label {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .hp-progress-ring .hp-ring-label small {
            font-size: 0.7rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }
        .hp-progress-card .hp-progress-title {
            text-align: center;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .hp-tier-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 18px;
        }
        .hp-tier-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--hp-radius-sm);
            padding: 10px 14px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
        }
        .hp-tier-item .hp-tier-name {
            font-weight: 600;
        }
        .hp-tier-item .hp-tier-tag {
            background: rgba(179, 38, 30, 0.55);
            color: #fff;
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
        }
        .hp-progress-card .hp-btn-primary {
            width: 100%;
            justify-content: center;
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        /* ========== Section Common ========== */
        .hp-section {
            padding: var(--hp-section-space-desktop) 0;
        }
        .hp-section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .hp-section-sub {
            font-size: 1rem;
            color: var(--hp-text-muted);
            margin-bottom: 32px;
            max-width: 640px;
            line-height: 1.7;
        }

        /* ========== Core Sections - Asymmetric ========== */
        .hp-core-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            grid-template-rows: auto auto;
            gap: 28px;
        }
        .hp-core-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            box-shadow: var(--hp-shadow-sm);
            padding: 28px 24px;
            transition: var(--hp-transition);
            position: relative;
            overflow: hidden;
        }
        .hp-core-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
        }
        .hp-core-card.hp-core-large {
            grid-row: span 2;
            padding: 36px 32px;
            background: linear-gradient(135deg, #fff 60%, var(--hp-warm-gray) 100%);
        }
        .hp-core-card .hp-core-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--hp-radius-md);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            background: rgba(179, 38, 30, 0.09);
            color: var(--hp-red);
            flex-shrink: 0;
        }
        .hp-core-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .hp-core-card p {
            font-size: 0.92rem;
            color: var(--hp-text-body);
            line-height: 1.8;
            margin-bottom: 0;
        }
        .hp-core-card .hp-core-stats {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .hp-core-card .hp-core-stat {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--hp-red);
            line-height: 1;
        }
        .hp-core-card .hp-core-stat small {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--hp-text-muted);
            display: block;
            margin-top: 4px;
        }

        /* ========== Deep Content ========== */
        .hp-deep-section {
            background: var(--hp-warm-gray);
        }
        .hp-deep-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }
        .hp-deep-image {
            flex: 1 1 380px;
            min-width: 0;
            border-radius: var(--hp-radius-lg);
            overflow: hidden;
            box-shadow: var(--hp-shadow-lg);
        }
        .hp-deep-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 4/3;
        }
        .hp-deep-text {
            flex: 1 1 480px;
            min-width: 0;
        }
        .hp-deep-text h2 {
            font-size: clamp(1.4rem, 2.8vw, 1.8rem);
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 18px;
            line-height: 1.35;
        }
        .hp-deep-text p {
            font-size: 0.96rem;
            line-height: 1.9;
            color: var(--hp-text-body);
            margin-bottom: 16px;
        }
        .hp-deep-quote {
            background: #fff;
            border-left: 4px solid var(--hp-red);
            border-radius: 0 var(--hp-radius-md) var(--hp-radius-md) 0;
            padding: 16px 20px;
            margin: 20px 0;
            font-style: italic;
            color: var(--hp-text-body);
            font-size: 0.92rem;
            box-shadow: var(--hp-shadow-sm);
        }
        .hp-deep-quote .hp-quote-source {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            font-size: 0.82rem;
            color: var(--hp-text-muted);
        }

        /* ========== Topic List - Horizontal Cards ========== */
        .hp-topic-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hp-topic-card {
            display: flex;
            flex-wrap: wrap;
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            box-shadow: var(--hp-shadow-sm);
            overflow: hidden;
            transition: var(--hp-transition);
        }
        .hp-topic-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
        }
        .hp-topic-image {
            flex: 0 0 260px;
            max-width: 260px;
            min-height: 180px;
            overflow: hidden;
        }
        .hp-topic-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16/11;
        }
        .hp-topic-body {
            flex: 1 1 auto;
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }
        .hp-topic-tag {
            display: inline-block;
            background: rgba(179, 38, 30, 0.08);
            color: var(--hp-red);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            margin-bottom: 8px;
            align-self: flex-start;
        }
        .hp-topic-body h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .hp-topic-body p {
            font-size: 0.9rem;
            color: var(--hp-text-muted);
            margin-bottom: 12px;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hp-topic-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--hp-text-muted);
            margin-top: auto;
        }
        .hp-topic-meta i {
            color: var(--hp-red-light);
            margin-right: 4px;
        }
        .hp-topic-link {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--hp-red);
            align-self: flex-end;
            margin-left: auto;
            white-space: nowrap;
        }
        .hp-topic-link:hover {
            color: var(--hp-red-dark);
            text-decoration: underline;
        }

        /* ========== Data & FAQ ========== */
        .hp-data-faq-section {
            background: var(--hp-charcoal);
            color: #fff;
        }
        .hp-data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        .hp-data-item {
            text-align: center;
            padding: 20px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--hp-radius-md);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hp-data-item .hp-data-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--hp-red-light);
            line-height: 1;
        }
        .hp-data-item .hp-data-label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 8px;
        }

        .hp-faq-wrapper {
            max-width: 780px;
            margin: 0 auto;
        }
        .hp-faq-wrapper .hp-section-title {
            color: #fff;
            text-align: center;
        }
        .hp-faq-wrapper .hp-section-sub {
            color: rgba(255, 255, 255, 0.65);
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .hp-accordion .accordion-item {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--hp-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .hp-accordion .accordion-button {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 18px 20px;
            border-radius: var(--hp-radius-md);
            cursor: pointer;
        }
        .hp-accordion .accordion-button:not(.collapsed) {
            background: rgba(179, 38, 30, 0.25);
            color: #fff;
            box-shadow: none;
        }
        .hp-accordion .accordion-button::after {
            filter: invert(1) brightness(2);
        }
        .hp-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.3);
            outline: none;
        }
        .hp-accordion .accordion-body {
            background: rgba(0, 0, 0, 0.2);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.8;
            padding: 16px 20px;
        }
        .hp-accordion .accordion-body::before {
            content: '';
            display: block;
            width: 24px;
            height: 3px;
            background: var(--hp-red-light);
            border-radius: 3px;
            margin-bottom: 12px;
        }

        /* ========== CTA Section ========== */
        .hp-cta-section {
            background: linear-gradient(135deg, var(--hp-red-dark) 0%, var(--hp-red) 100%);
            padding: 56px 0;
        }
        .hp-cta-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .hp-cta-text h2 {
            font-size: clamp(1.4rem, 2.6vw, 1.8rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .hp-cta-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        .hp-cta-inner .hp-btn-primary {
            background: #fff;
            color: var(--hp-red);
            font-weight: 800;
        }
        .hp-cta-inner .hp-btn-primary:hover {
            background: var(--hp-warm-gray);
            color: var(--hp-red-dark);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        .hp-cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .hp-cta-form input {
            flex: 1 1 220px;
            min-width: 200px;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--hp-radius-md);
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: var(--hp-transition);
        }
        .hp-cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .hp-cta-form input:focus {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.22);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        }

        /* ========== Footer ========== */
        .hp-footer {
            background: var(--hp-charcoal);
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 24px;
        }
        .hp-footer h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .hp-footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .hp-footer-brand .footer-logo span:last-child {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
        }
        .hp-footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0;
        }
        .hp-footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hp-footer-links li {
            margin-bottom: 8px;
        }
        .hp-footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            transition: var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: var(--hp-red-light);
        }
        .hp-footer-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hp-footer-form input {
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--hp-radius-sm);
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 0.85rem;
            outline: none;
            transition: var(--hp-transition);
        }
        .hp-footer-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .hp-footer-form input:focus {
            border-color: var(--hp-red-light);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.3);
        }
        .hp-footer-form .hp-btn-primary {
            font-size: 0.88rem;
            padding: 10px 18px;
            justify-content: center;
        }
        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
        }
        .hp-footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            transition: var(--hp-transition);
        }
        .hp-footer-bottom a:hover {
            color: var(--hp-red-light);
        }

        /* ========== Fixed Bottom CTA ========== */
        .hp-fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--hp-red-dark);
            color: #fff;
            z-index: 1040;
            padding: 12px 0;
            transform: translateY(100%);
            transition: transform 0.35s ease;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        }
        .hp-fixed-cta.hp-fixed-visible {
            transform: translateY(0);
        }
        .hp-fixed-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hp-fixed-cta-text {
            font-size: 0.92rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.92);
        }
        .hp-fixed-cta-text strong {
            color: #fff;
            font-weight: 800;
        }
        .hp-fixed-cta .hp-btn-primary {
            background: #fff;
            color: var(--hp-red-dark);
            font-weight: 800;
            padding: 10px 20px;
            font-size: 0.88rem;
        }
        .hp-fixed-cta .hp-btn-primary:hover {
            background: var(--hp-warm-gray);
            color: var(--hp-red-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
        }
        .hp-fixed-close {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.85rem;
            transition: var(--hp-transition);
            flex-shrink: 0;
        }
        .hp-fixed-close:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* ========== Responsive ========== */
        @media (max-width: 991px) {
            .hp-core-grid {
                grid-template-columns: 1fr;
            }
            .hp-core-card.hp-core-large {
                grid-row: auto;
            }
            .hp-topic-image {
                flex: 0 0 200px;
                max-width: 200px;
            }
            .hp-data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hp-hero-content {
                flex-direction: column;
                gap: 32px;
            }
            .hp-hero-visual {
                width: 100%;
            }
            .hp-progress-card {
                max-width: 100%;
            }
        }
        @media (max-width: 767px) {
            :root {
                --hp-section-space-desktop: 64px;
                --hp-section-space-tablet: 48px;
                --hp-section-space-mobile: 40px;
            }
            .hp-navbar .nav-link {
                padding: 12px 16px !important;
            }
            .hp-nav-actions {
                gap: 8px;
            }
            .hp-subscribe-btn {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .hp-hero-text h1 {
                font-size: 1.6rem;
            }
            .hp-topic-image {
                flex: 0 0 100%;
                max-width: 100%;
                min-height: 180px;
            }
            .hp-topic-body {
                padding: 16px 18px;
            }
            .hp-topic-meta {
                flex-wrap: wrap;
                gap: 8px;
            }
            .hp-topic-link {
                align-self: flex-start;
                margin-left: 0;
            }
            .hp-deep-wrapper {
                flex-direction: column;
            }
            .hp-core-card.hp-core-large {
                padding: 24px 20px;
            }
            .hp-data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .hp-cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .hp-fixed-cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .hp-fixed-cta .hp-btn-primary {
                width: 100%;
                justify-content: center;
            }
            .hp-footer-bottom {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
            .hp-step-item {
                font-size: 0.75rem;
                padding: 4px 4px;
            }
            .hp-step-dot {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }
            .hp-step-connector {
                width: 12px;
            }
        }
        @media (max-width: 575px) {
            .hp-data-grid {
                grid-template-columns: 1fr;
            }
            .hp-progress-card {
                padding: 20px 16px;
            }
            .hp-tier-item {
                font-size: 0.78rem;
                padding: 8px 10px;
            }
            .hp-hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hp-hero-actions .hp-btn-primary,
            .hp-hero-actions .hp-btn-outline {
                width: 100%;
                justify-content: center;
            }
            .hp-breadcrumb {
                font-size: 0.78rem;
            }
            .hp-cta-form {
                width: 100%;
            }
            .hp-cta-form input {
                width: 100%;
                min-width: auto;
            }
        }

/* roulang page: category3 */
:root {
            --hp-red: #B3261E;
            --hp-red-dark: #8F1D17;
            --hp-red-light: #D45A4A;
            --hp-charcoal: #1F2937;
            --hp-charcoal-light: #2C3747;
            --hp-dark-bg: #141A22;
            --hp-dark-card: #1C252F;
            --hp-warm-gray: #F5F1EB;
            --hp-white: #FAFAFA;
            --hp-card-bg: #FFFFFF;
            --hp-text-title: #1F2937;
            --hp-text-body: #3A3A3A;
            --hp-text-muted: #7A7A7A;
            --hp-border: #E5DED6;
            --hp-green: #2E7D32;
            --hp-blue: #1E88E5;
            --hp-cyan: #00B4D8;
            --hp-radius-sm: 6px;
            --hp-radius-md: 10px;
            --hp-radius-lg: 16px;
            --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
            --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
            --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
            --hp-transition: all 0.25s ease;
            --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --hp-gutter-desktop: 32px;
            --hp-gutter-mobile: 20px;
            --hp-section-space-desktop: 100px;
            --hp-section-space-tablet: 72px;
            --hp-section-space-mobile: 52px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--hp-font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--hp-text-body);
            background-color: var(--hp-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
        }
        a {
            text-decoration: none;
            color: var(--hp-red);
            transition: var(--hp-transition);
        }
        a:hover {
            color: var(--hp-red-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea {
            font-family: inherit;
        }
        .container {
            max-width: 1170px;
            padding-left: 20px;
            padding-right: 20px;
        }
        /* ========== Header / Navigation ========== */
        .hp-header {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
        }
        .hp-navbar {
            padding: 0 0;
            background: #fff;
        }
        .hp-navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--hp-red);
            letter-spacing: 0.5px;
        }
        .hp-navbar .navbar-brand:hover {
            color: var(--hp-red-dark);
        }
        .hp-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
        }
        .hp-navbar .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            padding: 18px 14px !important;
            position: relative;
            transition: var(--hp-transition);
        }
        .hp-navbar .nav-link:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }
        .hp-navbar .nav-link.active {
            color: var(--hp-red);
        }
        .hp-navbar .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 3px 3px 0 0;
        }
        .hp-nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hp-search-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--hp-border);
            border-radius: 50%;
            background: #fff;
            color: var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--hp-transition);
            cursor: pointer;
        }
        .hp-search-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }
        .hp-subscribe-btn {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }
        .hp-subscribe-btn:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }
        .navbar-toggler {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 6px 10px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }
        /* ========== Progress Step Nav ========== */
        .hp-step-nav {
            background: var(--hp-warm-gray);
            border-bottom: 1px solid var(--hp-border);
            padding: 10px 0;
        }
        .hp-step-track {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .hp-step-track::-webkit-scrollbar {
            display: none;
        }
        .hp-step-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--hp-text-muted);
            white-space: nowrap;
            transition: var(--hp-transition);
        }
        .hp-step-item:hover {
            color: var(--hp-red);
        }
        .hp-step-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--hp-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--hp-text-muted);
            flex-shrink: 0;
            transition: var(--hp-transition);
        }
        .hp-step-item.active {
            color: var(--hp-red);
        }
        .hp-step-item.active .hp-step-dot {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
        }
        .hp-step-connector {
            flex: 1;
            height: 2px;
            background: var(--hp-border);
            min-width: 20px;
        }
        /* ========== Breadcrumb ========== */
        .hp-breadcrumb-bar {
            background: var(--hp-dark-bg);
            padding: 14px 0;
            border-bottom: 1px solid #2A3542;
        }
        .hp-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: #B8C4D0;
        }
        .hp-breadcrumb a {
            color: #B8C4D0;
            transition: var(--hp-transition);
        }
        .hp-breadcrumb a:hover {
            color: #fff;
        }
        .hp-breadcrumb .hp-crumb-sep {
            color: #5B6B7A;
        }
        .hp-breadcrumb .hp-crumb-current {
            color: #fff;
            font-weight: 600;
        }
        /* ========== E-sports Hero ========== */
        .hp-esports-hero {
            background: linear-gradient(155deg, #0F141B 0%, #1A2230 50%, #252F3E 100%);
            color: #fff;
            padding: 72px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hp-esports-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.webp') center / cover no-repeat;
            opacity: 0.16;
            pointer-events: none;
        }
        .hp-esports-hero .container {
            position: relative;
            z-index: 1;
        }
        .hp-esports-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 18px;
            color: #fff;
        }
        .hp-esports-hero h1 .hp-hero-accent {
            color: #FF5A4A;
            display: inline-block;
        }
        .hp-esports-hero .hp-hero-lead {
            font-size: 1.1rem;
            line-height: 1.85;
            color: #CBD5E1;
            max-width: 640px;
            margin-bottom: 28px;
        }
        .hp-esports-hero .hp-hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }
        .hp-btn-primary {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hp-btn-primary:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(179, 38, 30, 0.35);
        }
        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--hp-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .hp-hero-kpis {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }
        .hp-hero-kpi {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hp-hero-kpi .hp-kpi-num {
            font-size: 1.6rem;
            font-weight: 900;
            color: #FF5A4A;
            line-height: 1.2;
        }
        .hp-hero-kpi .hp-kpi-label {
            font-size: 0.85rem;
            color: #94A3B8;
        }
        .hp-esports-hero-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--hp-radius-lg);
            padding: 22px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .hp-esports-hero-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: var(--hp-radius-md);
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.15);
        }
        .hp-esports-hero-card .hp-hero-card-body {
            flex: 1;
        }
        .hp-esports-hero-card .hp-hero-card-label {
            font-size: 0.78rem;
            color: #94A3B8;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .hp-esports-hero-card .hp-hero-card-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
        }
        .hp-esports-hero-card .hp-hero-card-meta {
            font-size: 0.85rem;
            color: #CBD5E1;
        }
        /* ========== Section Common ========== */
        .hp-section {
            padding: var(--hp-section-space-desktop) 0;
        }
        .hp-section-tight {
            padding: 60px 0;
        }
        .hp-section-head {
            margin-bottom: 44px;
        }
        .hp-section-head .hp-section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--hp-red);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .hp-section-head .hp-section-eyebrow::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 2px;
        }
        .hp-section-head h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--hp-text-title);
            line-height: 1.3;
            margin-bottom: 14px;
        }
        .hp-section-head .hp-section-sub {
            font-size: 1rem;
            color: var(--hp-text-muted);
            max-width: 680px;
            line-height: 1.8;
        }
        /* ========== E-sports Matrix Cards ========== */
        .hp-esports-matrix .hp-matrix-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr;
            gap: 24px;
        }
        .hp-matrix-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-lg);
            overflow: hidden;
            box-shadow: var(--hp-shadow-sm);
            transition: var(--hp-transition);
            min-height: 360px;
            display: flex;
            flex-direction: column;
        }
        .hp-matrix-card:hover {
            box-shadow: var(--hp-shadow-lg);
            transform: translateY(-4px);
        }
        .hp-matrix-card .hp-matrix-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .hp-matrix-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--hp-transition);
        }
        .hp-matrix-card:hover img {
            transform: scale(1.04);
        }
        .hp-matrix-card .hp-matrix-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .hp-matrix-card .hp-matrix-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.08);
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            width: fit-content;
        }
        .hp-matrix-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .hp-matrix-card p {
            font-size: 0.92rem;
            color: var(--hp-text-muted);
            line-height: 1.75;
            margin-bottom: 0;
        }
        /* ========== Deep Reading Section ========== */
        .hp-deep-reading {
            background: var(--hp-warm-gray);
        }
        .hp-deep-reading .hp-deep-img-col {
            position: relative;
        }
        .hp-deep-reading .hp-deep-img {
            border-radius: var(--hp-radius-lg);
            overflow: hidden;
            box-shadow: var(--hp-shadow-lg);
            position: relative;
        }
        .hp-deep-reading .hp-deep-img img {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }
        .hp-deep-reading .hp-deep-img-float {
            position: absolute;
            bottom: -22px;
            right: -18px;
            background: var(--hp-charcoal);
            color: #fff;
            border-radius: var(--hp-radius-md);
            padding: 16px 22px;
            box-shadow: var(--hp-shadow-lg);
            max-width: 220px;
        }
        .hp-deep-reading .hp-deep-img-float .hp-float-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #FF5A4A;
            line-height: 1.2;
        }
        .hp-deep-reading .hp-deep-img-float .hp-float-label {
            font-size: 0.85rem;
            color: #CBD5E1;
        }
        .hp-deep-reading .hp-deep-text h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 18px;
            line-height: 1.4;
        }
        .hp-deep-reading .hp-deep-text p {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--hp-text-body);
            margin-bottom: 16px;
        }
        .hp-deep-reading .hp-deep-quote {
            border-left: 4px solid var(--hp-red);
            background: #fff;
            padding: 16px 20px;
            border-radius: 0 var(--hp-radius-md) var(--hp-radius-md) 0;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            font-style: italic;
            margin-top: 10px;
        }
        /* ========== Timeline / Hot Topics ========== */
        .hp-timeline-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .hp-timeline-item {
            display: grid;
            grid-template-columns: 100px 1fr auto;
            gap: 20px;
            padding: 22px 24px;
            border-bottom: 1px solid var(--hp-border);
            align-items: start;
            transition: var(--hp-transition);
            background: #fff;
        }
        .hp-timeline-item:first-child {
            border-radius: var(--hp-radius-lg) var(--hp-radius-lg) 0 0;
        }
        .hp-timeline-item:last-child {
            border-radius: 0 0 var(--hp-radius-lg) var(--hp-radius-lg);
            border-bottom: none;
        }
        .hp-timeline-item:hover {
            background: var(--hp-warm-gray);
            transform: translateX(4px);
        }
        .hp-timeline-date {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--hp-text-muted);
            padding-top: 2px;
            white-space: nowrap;
        }
        .hp-timeline-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin-bottom: 6px;
            line-height: 1.45;
        }
        .hp-timeline-body p {
            font-size: 0.9rem;
            color: var(--hp-text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .hp-timeline-action {
            white-space: nowrap;
        }
        .hp-timeline-action .hp-btn-read {
            border: 1px solid var(--hp-border);
            background: #fff;
            color: var(--hp-text-body);
            border-radius: 6px;
            padding: 6px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: var(--hp-transition);
            cursor: pointer;
        }
        .hp-timeline-action .hp-btn-read:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }
        /* ========== Social Proof ========== */
        .hp-social-proof {
            background: var(--hp-charcoal);
            color: #fff;
        }
        .hp-social-proof h2 {
            color: #fff;
        }
        .hp-social-proof .hp-proof-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 10px;
        }
        .hp-proof-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--hp-radius-md);
            padding: 22px;
            transition: var(--hp-transition);
        }
        .hp-proof-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .hp-proof-card .hp-proof-quote {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #D1D5DB;
            margin-bottom: 14px;
        }
        .hp-proof-card .hp-proof-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hp-proof-card .hp-proof-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--hp-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .hp-proof-card .hp-proof-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }
        .hp-proof-card .hp-proof-meta {
            font-size: 0.78rem;
            color: #94A3B8;
        }
        /* ========== Dark CTA ========== */
        .hp-esports-cta {
            background: linear-gradient(135deg, #1A1F2B 0%, #252F3E 100%);
            border-radius: var(--hp-radius-lg);
            padding: 48px 40px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            box-shadow: var(--hp-shadow-lg);
        }
        .hp-esports-cta .hp-cta-text h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .hp-esports-cta .hp-cta-text p {
            font-size: 0.98rem;
            color: #CBD5E1;
            margin-bottom: 0;
        }
        .hp-esports-cta .hp-cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        /* ========== FAQ ========== */
        .hp-faq .accordion-item {
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
        }
        .hp-faq .accordion-button {
            background: #fff;
            font-weight: 700;
            font-size: 1rem;
            color: var(--hp-text-title);
            padding: 18px 22px;
            box-shadow: none;
            position: relative;
        }
        .hp-faq .accordion-button:not(.collapsed) {
            background: var(--hp-warm-gray);
            color: var(--hp-red);
            box-shadow: none;
        }
        .hp-faq .accordion-button::after {
            filter: invert(18%) sepia(78%) saturate(2476%) hue-rotate(350deg) brightness(90%) contrast(90%);
        }
        .hp-faq .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }
        .hp-faq .accordion-body {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--hp-text-body);
            padding: 18px 22px 20px;
            background: #fff;
        }
        /* ========== Footer ========== */
        .hp-footer {
            background: var(--hp-charcoal);
            color: #CBD5E1;
            padding: 56px 0 30px;
        }
        .hp-footer .hp-footer-brand {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hp-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
        }
        .hp-footer .hp-footer-brand p {
            font-size: 0.88rem;
            line-height: 1.8;
            color: #94A3B8;
            margin-bottom: 0;
            max-width: 340px;
        }
        .hp-footer h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .hp-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hp-footer-links a {
            color: #94A3B8;
            font-size: 0.9rem;
            transition: var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .hp-footer-form {
            display: flex;
            gap: 8px;
            flex-direction: column;
        }
        .hp-footer-form input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 10px 14px;
            color: #fff;
            font-size: 0.9rem;
            width: 100%;
            transition: var(--hp-transition);
        }
        .hp-footer-form input:focus {
            outline: none;
            border-color: var(--hp-red);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.2);
        }
        .hp-footer-form input::placeholder {
            color: #6B7280;
        }
        .hp-footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 36px;
            padding-top: 20px;
            font-size: 0.82rem;
            color: #6B7280;
        }
        .hp-footer-bottom a {
            color: #94A3B8;
            transition: var(--hp-transition);
        }
        .hp-footer-bottom a:hover {
            color: #fff;
        }
        /* ========== Subscribe Section ========== */
        .hp-subscribe-section {
            background: none;
        }
        .hp-subscribe-box {
            background: #fff;
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-lg);
            padding: 40px 36px;
            box-shadow: var(--hp-shadow-md);
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: center;
        }
        .hp-subscribe-box .hp-subscribe-text h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 8px;
        }
        .hp-subscribe-box .hp-subscribe-text p {
            font-size: 0.92rem;
            color: var(--hp-text-muted);
            margin-bottom: 0;
        }
        .hp-subscribe-form {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .hp-subscribe-form input {
            border: 1px solid #D8D0C8;
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            width: 280px;
            transition: var(--hp-transition);
        }
        .hp-subscribe-form input:focus {
            outline: none;
            border-color: var(--hp-red);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
        }
        /* ========== Responsive ========== */
        @media (max-width: 991px) {
            .hp-esports-hero h1 {
                font-size: 2.1rem;
            }
            .hp-esports-matrix .hp-matrix-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hp-social-proof .hp-proof-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hp-subscribe-box {
                grid-template-columns: 1fr;
            }
            .hp-subscribe-form input {
                width: 100%;
            }
            .hp-timeline-item {
                grid-template-columns: 80px 1fr;
            }
            .hp-timeline-action {
                grid-column: span 2;
                padding-left: 100px;
            }
        }
        @media (max-width: 767px) {
            .hp-section {
                padding: var(--hp-section-space-tablet) 0;
            }
            .hp-esports-hero {
                padding: 48px 0 56px;
            }
            .hp-esports-hero h1 {
                font-size: 1.7rem;
            }
            .hp-esports-matrix .hp-matrix-grid {
                grid-template-columns: 1fr;
            }
            .hp-social-proof .hp-proof-grid {
                grid-template-columns: 1fr;
            }
            .hp-esports-cta {
                padding: 32px 24px;
            }
            .hp-timeline-item {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 18px 16px;
            }
            .hp-timeline-action {
                grid-column: span 1;
                padding-left: 0;
            }
            .hp-deep-reading .hp-deep-img-float {
                position: relative;
                right: 0;
                bottom: 0;
                margin-top: 0;
                width: 100%;
                max-width: none;
                border-radius: 0 0 var(--hp-radius-lg) var(--hp-radius-lg);
            }
        }
        @media (max-width: 575px) {
            .hp-esports-hero h1 {
                font-size: 1.5rem;
            }
            .hp-esports-hero .hp-hero-lead {
                font-size: 0.95rem;
            }
            .hp-hero-kpis {
                gap: 16px;
            }
            .hp-esports-hero-card {
                flex-direction: column;
                text-align: center;
            }
            .hp-esports-hero-card img {
                width: 100%;
                height: auto;
                aspect-ratio: 16/9;
            }
            .hp-footer {
                padding: 40px 0 24px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            .hp-subscribe-box {
                padding: 28px 20px;
            }
        }

/* roulang page: category4 */
:root {
        --hp-red: #B3261E;
        --hp-red-dark: #8F1D17;
        --hp-red-light: #D45A4A;
        --hp-charcoal: #1F2937;
        --hp-charcoal-light: #2C3747;
        --hp-warm-gray: #F5F1EB;
        --hp-white: #FAFAFA;
        --hp-card-bg: #FFFFFF;
        --hp-text-title: #1F2937;
        --hp-text-body: #3A3A3A;
        --hp-text-muted: #7A7A7A;
        --hp-border: #E5DED6;
        --hp-green: #2E7D32;
        --hp-blue: #1E88E5;
        --hp-radius-sm: 6px;
        --hp-radius-md: 10px;
        --hp-radius-lg: 16px;
        --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
        --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
        --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
        --hp-transition: all 0.25s ease;
        --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
        --hp-gutter-desktop: 32px;
        --hp-gutter-mobile: 20px;
        --hp-section-space-desktop: 100px;
        --hp-section-space-tablet: 72px;
        --hp-section-space-mobile: 52px;
    }
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
    body {
        font-family: var(--hp-font-family);
        font-size: 16px;
        line-height: 1.75;
        color: var(--hp-text-body);
        background-color: var(--hp-white);
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0;
    }
    a {
        text-decoration: none;
        color: var(--hp-red);
        transition: var(--hp-transition);
    }
    a:hover {
        color: var(--hp-red-dark);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    button,
    input,
    textarea {
        font-family: inherit;
    }
    .container {
        max-width: 1170px;
        padding-left: 20px;
        padding-right: 20px;
    }
    /* ========== Header / Navigation ========== */
    .hp-header {
        background: #fff;
        border-bottom: 1px solid var(--hp-border);
        position: sticky;
        top: 0;
        z-index: 1050;
        box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
    }
    .hp-navbar {
        padding: 0;
        background: #fff;
    }
    .hp-navbar .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--hp-red);
        letter-spacing: 0.5px;
    }
    .hp-navbar .navbar-brand:hover {
        color: var(--hp-red-dark);
    }
    .hp-logo-icon {
        width: 40px;
        height: 40px;
        background: var(--hp-red);
        color: #fff;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 1.25rem;
        flex-shrink: 0;
        box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
    }
    .hp-navbar .nav-link {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--hp-text-body);
        padding: 18px 14px !important;
        position: relative;
        transition: var(--hp-transition);
    }
    .hp-navbar .nav-link:hover {
        color: var(--hp-red);
        background: rgba(179, 38, 30, 0.04);
    }
    .hp-navbar .nav-link.active {
        color: var(--hp-red);
    }
    .hp-navbar .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 3px;
        background: var(--hp-red);
        border-radius: 3px 3px 0 0;
    }
    .hp-nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .hp-search-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--hp-border);
        border-radius: 50%;
        background: #fff;
        color: var(--hp-text-muted);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: var(--hp-transition);
        cursor: pointer;
    }
    .hp-search-btn:hover {
        border-color: var(--hp-red);
        color: var(--hp-red);
        background: rgba(179, 38, 30, 0.04);
    }
    .hp-subscribe-btn {
        background: var(--hp-red);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: var(--hp-transition);
        white-space: nowrap;
    }
    .hp-subscribe-btn:hover {
        background: var(--hp-red-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
    }
    .navbar-toggler {
        border: 1px solid var(--hp-border);
        border-radius: 8px;
        padding: 6px 10px;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
        outline: none;
    }
    /* ========== Progress Step Nav ========== */
    .hp-step-nav {
        background: var(--hp-warm-gray);
        border-bottom: 1px solid var(--hp-border);
        padding: 10px 0;
    }
    .hp-step-track {
        display: flex;
        align-items: center;
        gap: 0;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: var(--hp-border) transparent;
    }
    .hp-step-track::-webkit-scrollbar {
        height: 4px;
    }
    .hp-step-track::-webkit-scrollbar-thumb {
        background: var(--hp-border);
        border-radius: 2px;
    }
    .hp-step-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--hp-text-muted);
        padding: 6px 14px;
        border-radius: 20px;
        transition: var(--hp-transition);
    }
    .hp-step-item:hover {
        color: var(--hp-red);
        background: rgba(179, 38, 30, 0.05);
    }
    .hp-step-item.active {
        color: var(--hp-red);
        background: transparent;
    }
    .hp-step-dot {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--hp-border);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--hp-text-muted);
        transition: var(--hp-transition);
        flex-shrink: 0;
    }
    .hp-step-item.active .hp-step-dot {
        background: var(--hp-red);
        border-color: var(--hp-red);
        color: #fff;
    }
    .hp-step-connector {
        width: 40px;
        height: 2px;
        background: var(--hp-border);
        flex-shrink: 0;
        margin: 0 4px;
    }
    /* ========== Buttons ========== */
    .hp-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--hp-red);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: var(--hp-transition);
    }
    .hp-btn-primary:hover {
        background: var(--hp-red-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(179, 38, 30, 0.35);
    }
    .hp-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--hp-red);
        border: 1.5px solid var(--hp-red);
        border-radius: 8px;
        padding: 11px 23px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: var(--hp-transition);
    }
    .hp-btn-secondary:hover {
        background: var(--hp-red);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(179, 38, 30, 0.25);
    }
    .hp-btn-outline-light {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255,255,255,0.6);
        border-radius: 8px;
        padding: 11px 23px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: var(--hp-transition);
    }
    .hp-btn-outline-light:hover {
        background: rgba(255,255,255,0.15);
        color: #fff;
        border-color: #fff;
    }
    /* ========== Hero (walking street variant) ========== */
    .hp-hero-walking {
        position: relative;
        background: url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
        min-height: 520px;
        display: flex;
        align-items: center;
        padding: 80px 0 90px;
        margin-bottom: 0;
    }
    .hp-hero-walking::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(31, 41, 51, 0.88) 0%, rgba(31, 41, 51, 0.65) 50%, rgba(179, 38, 30, 0.55) 100%);
        z-index: 1;
    }
    .hp-hero-walking .container {
        position: relative;
        z-index: 2;
    }
    .hp-hero-walking .hero-label {
        display: inline-block;
        background: rgba(179, 38, 30, 0.9);
        color: #fff;
        padding: 4px 14px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    .hp-hero-walking h1 {
        font-size: 2.8rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.3;
        letter-spacing: 0.5px;
        margin-bottom: 18px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hp-hero-walking .hero-desc {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.9);
        max-width: 620px;
        line-height: 1.8;
        margin-bottom: 28px;
    }
    .hp-hero-walking .hero-cta-group {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }
    .hp-hero-walking .hero-kpi-row {
        display: flex;
        gap: 32px;
        margin-top: 36px;
        flex-wrap: wrap;
    }
    .hp-hero-walking .hero-kpi {
        color: #fff;
    }
    .hp-hero-walking .hero-kpi .kpi-num {
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        display: block;
        line-height: 1.2;
    }
    .hp-hero-walking .hero-kpi .kpi-label {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.75);
    }
    /* ========== Section Common ========== */
    .hp-section {
        padding: var(--hp-section-space-desktop) 0;
    }
    .hp-section-title {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--hp-text-title);
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .hp-section-subtitle {
        font-size: 1.05rem;
        color: var(--hp-text-muted);
        margin-bottom: 40px;
        max-width: 680px;
        line-height: 1.75;
    }
    .hp-breadcrumb-wrap {
        background: var(--hp-warm-gray);
        border-bottom: 1px solid var(--hp-border);
        padding: 12px 0;
    }
    .hp-breadcrumb-wrap .breadcrumb {
        margin: 0;
        padding: 0;
        font-size: 0.88rem;
        color: var(--hp-text-muted);
    }
    .hp-breadcrumb-wrap .breadcrumb a {
        color: var(--hp-text-muted);
    }
    .hp-breadcrumb-wrap .breadcrumb a:hover {
        color: var(--hp-red);
    }
    .hp-breadcrumb-wrap .breadcrumb .active {
        color: var(--hp-red);
        font-weight: 600;
    }
    /* ========== Feature Block (asymmetric) ========== */
    .hp-feature-block {
        background: #fff;
        border-radius: var(--hp-radius-lg);
        border: 1px solid var(--hp-border);
        box-shadow: var(--hp-shadow-sm);
        padding: 32px 28px;
        height: 100%;
        transition: var(--hp-transition);
    }
    .hp-feature-block:hover {
        box-shadow: var(--hp-shadow-md);
        transform: translateY(-3px);
        border-color: rgba(179, 38, 30, 0.3);
    }
    .hp-feature-block .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .hp-feature-block .feature-icon.red {
        background: rgba(179, 38, 30, 0.1);
        color: var(--hp-red);
    }
    .hp-feature-block .feature-icon.green {
        background: rgba(46, 125, 50, 0.1);
        color: var(--hp-green);
    }
    .hp-feature-block .feature-icon.blue {
        background: rgba(30, 136, 229, 0.1);
        color: var(--hp-blue);
    }
    .hp-feature-block h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--hp-text-title);
        margin-bottom: 10px;
    }
    .hp-feature-block p {
        font-size: 0.95rem;
        color: var(--hp-text-body);
        line-height: 1.75;
        margin-bottom: 0;
    }
    /* ========== Timeline Content Stream ========== */
    .hp-timeline {
        position: relative;
        padding-left: 28px;
    }
    .hp-timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: var(--hp-border);
        border-radius: 2px;
    }
    .hp-timeline-item {
        position: relative;
        padding-bottom: 28px;
    }
    .hp-timeline-item:last-child {
        padding-bottom: 0;
    }
    .hp-timeline-item::before {
        content: '';
        position: absolute;
        left: -22px;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--hp-red);
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px var(--hp-red);
    }
    .hp-timeline-card {
        background: #fff;
        border: 1px solid var(--hp-border);
        border-radius: var(--hp-radius-md);
        padding: 20px 22px;
        box-shadow: var(--hp-shadow-sm);
        transition: var(--hp-transition);
    }
    .hp-timeline-card:hover {
        box-shadow: var(--hp-shadow-md);
        transform: translateY(-2px);
    }
    .hp-timeline-card .tc-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.8rem;
        color: var(--hp-text-muted);
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    .hp-timeline-card .tc-tag {
        background: rgba(179, 38, 30, 0.08);
        color: var(--hp-red);
        padding: 2px 10px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.75rem;
    }
    .hp-timeline-card h4 {
        font-size: 1.08rem;
        font-weight: 700;
        color: var(--hp-text-title);
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .hp-timeline-card p {
        font-size: 0.9rem;
        color: var(--hp-text-body);
        margin-bottom: 0;
        line-height: 1.7;
    }
    .hp-timeline-card .tc-footer {
        margin-top: 12px;
        font-size: 0.82rem;
        color: var(--hp-text-muted);
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .hp-timeline-card .tc-footer span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    /* ========== Sidebar ========== */
    .hp-sidebar-card {
        background: #fff;
        border: 1px solid var(--hp-border);
        border-radius: var(--hp-radius-md);
        padding: 22px;
        box-shadow: var(--hp-shadow-sm);
        margin-bottom: 20px;
    }
    .hp-sidebar-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--hp-text-title);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--hp-warm-gray);
    }
    .hp-sidebar-rank-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px dashed var(--hp-border);
        transition: var(--hp-transition);
    }
    .hp-sidebar-rank-item:last-child {
        border-bottom: none;
    }
    .hp-sidebar-rank-item:hover {
        color: var(--hp-red);
    }
    .hp-rank-num {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: var(--hp-warm-gray);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 0.85rem;
        color: var(--hp-text-muted);
        flex-shrink: 0;
    }
    .hp-rank-num.top1 {
        background: var(--hp-red);
        color: #fff;
    }
    .hp-rank-num.top2 {
        background: #E8A020;
        color: #fff;
    }
    .hp-rank-num.top3 {
        background: #C05A2A;
        color: #fff;
    }
    .hp-sidebar-rank-item .rank-text {
        font-size: 0.88rem;
        color: var(--hp-text-body);
        font-weight: 500;
        line-height: 1.5;
    }
    .hp-sidebar-tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hp-sidebar-tag-cloud a {
        font-size: 0.78rem;
        padding: 4px 12px;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        color: var(--hp-text-body);
        background: #fff;
        transition: var(--hp-transition);
        font-weight: 500;
    }
    .hp-sidebar-tag-cloud a:hover {
        border-color: var(--hp-red);
        color: var(--hp-red);
        background: rgba(179, 38, 30, 0.04);
    }
    .hp-sidebar-subscribe-text {
        font-size: 0.88rem;
        color: var(--hp-text-muted);
        margin-bottom: 12px;
        line-height: 1.6;
    }
    .hp-sidebar-subscribe-input {
        width: 100%;
        border: 1px solid var(--hp-border);
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 0.88rem;
        margin-bottom: 10px;
        transition: var(--hp-transition);
        outline: none;
    }
    .hp-sidebar-subscribe-input:focus {
        border-color: var(--hp-red);
        box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.1);
    }
    /* ========== FAQ ========== */
    .hp-faq .accordion-item {
        border: 1px solid var(--hp-border);
        border-radius: var(--hp-radius-md);
        margin-bottom: 12px;
        overflow: hidden;
        background: #fff;
        transition: var(--hp-transition);
    }
    .hp-faq .accordion-item:hover {
        box-shadow: var(--hp-shadow-sm);
    }
    .hp-faq .accordion-button {
        background: #fff;
        color: var(--hp-text-title);
        font-weight: 700;
        font-size: 0.98rem;
        padding: 18px 20px;
        transition: var(--hp-transition);
        position: relative;
        border: none;
        outline: none;
    }
    .hp-faq .accordion-button::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 4px;
        background: var(--hp-red);
        border-radius: 0 4px 4px 0;
    }
    .hp-faq .accordion-button:not(.collapsed) {
        background: var(--hp-warm-gray);
        color: var(--hp-red);
        box-shadow: none;
    }
    .hp-faq .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
        outline: none;
    }
    .hp-faq .accordion-button::after {
        filter: hue-rotate(0deg);
    }
    .hp-faq .accordion-body {
        font-size: 0.93rem;
        color: var(--hp-text-body);
        line-height: 1.8;
        padding: 18px 20px 18px 24px;
        background: #fff;
    }
    /* ========== Filter Bar ========== */
    .hp-filter-bar {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        background: #fff;
        border: 1px solid var(--hp-border);
        border-radius: var(--hp-radius-md);
        padding: 12px 18px;
        box-shadow: var(--hp-shadow-sm);
        margin-bottom: 28px;
    }
    .hp-filter-bar .filter-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--hp-text-muted);
        white-space: nowrap;
    }
    .hp-filter-bar .filter-btn {
        font-size: 0.82rem;
        padding: 5px 14px;
        border-radius: 16px;
        border: 1px solid var(--hp-border);
        background: #fff;
        color: var(--hp-text-body);
        font-weight: 500;
        cursor: pointer;
        transition: var(--hp-transition);
        white-space: nowrap;
    }
    .hp-filter-bar .filter-btn:hover {
        border-color: var(--hp-red);
        color: var(--hp-red);
    }
    .hp-filter-bar .filter-btn.active {
        background: var(--hp-red);
        color: #fff;
        border-color: var(--hp-red);
    }
    /* ========== CTA Band ========== */
    .hp-cta-band {
        background: var(--hp-charcoal);
        border-radius: var(--hp-radius-lg);
        padding: 48px 40px;
        position: relative;
        overflow: hidden;
    }
    .hp-cta-band::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 200px;
        height: 200px;
        background: rgba(179, 38, 30, 0.3);
        border-radius: 50%;
        pointer-events: none;
    }
    .hp-cta-band h2 {
        font-size: 1.6rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .hp-cta-band p {
        color: rgba(255,255,255,0.8);
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 600px;
    }
    /* ========== Footer ========== */
    .hp-footer {
        background: var(--hp-charcoal);
        color: rgba(255,255,255,0.8);
        padding: 56px 0 32px;
        font-size: 0.9rem;
    }
    .hp-footer a {
        color: rgba(255,255,255,0.7);
        transition: var(--hp-transition);
    }
    .hp-footer a:hover {
        color: #fff;
    }
    .hp-footer h4 {
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 16px;
    }
    .hp-footer .hp-footer-brand p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-top: 12px;
        color: rgba(255,255,255,0.65);
    }
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 1.25rem;
        color: #fff;
    }
    .hp-footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .hp-footer-links li {
        margin-bottom: 8px;
    }
    .hp-footer-links a {
        font-size: 0.88rem;
    }
    .hp-footer-form input {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 8px;
        padding: 10px 14px;
        background: rgba(255,255,255,0.08);
        color: #fff;
        font-size: 0.88rem;
        margin-bottom: 10px;
        transition: var(--hp-transition);
        outline: none;
    }
    .hp-footer-form input::placeholder {
        color: rgba(255,255,255,0.5);
    }
    .hp-footer-form input:focus {
        border-color: var(--hp-red);
        box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.2);
    }
    .hp-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 20px;
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        align-items: center;
        justify-content: space-between;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.55);
    }
    .hp-footer-bottom a {
        color: rgba(255,255,255,0.55);
    }
    .hp-footer-bottom a:hover {
        color: #fff;
    }
    /* ========== Bottom Fixed CTA ========== */
    .hp-fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--hp-charcoal);
        color: #fff;
        padding: 12px 0;
        z-index: 1040;
        box-shadow: 0 -4px 20px rgba(31,41,51,0.2);
        transform: translateY(100%);
        transition: transform 0.35s ease;
    }
    .hp-fixed-cta.show {
        transform: translateY(0);
    }
    .hp-fixed-cta .cta-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    .hp-fixed-cta .cta-text {
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
    }
    .hp-fixed-cta .cta-close {
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.6);
        cursor: pointer;
        font-size: 1.1rem;
        padding: 4px 8px;
        transition: var(--hp-transition);
    }
    .hp-fixed-cta .cta-close:hover {
        color: #fff;
    }
    /* ========== Responsive ========== */
    @media (max-width: 991px) {
        .hp-hero-walking {
            min-height: auto;
            padding: 60px 0 70px;
        }
        .hp-hero-walking h1 {
            font-size: 2.2rem;
        }
        .hp-section {
            padding: var(--hp-section-space-tablet) 0;
        }
        .hp-section-title {
            font-size: 1.6rem;
        }
    }
    @media (max-width: 767px) {
        .hp-section {
            padding: var(--hp-section-space-mobile) 0;
        }
        .hp-hero-walking {
            padding: 48px 0 56px;
        }
        .hp-hero-walking h1 {
            font-size: 1.8rem;
        }
        .hp-hero-walking .hero-desc {
            font-size: 1rem;
        }
        .hp-hero-walking .hero-kpi-row {
            gap: 20px;
        }
        .hp-hero-walking .hero-kpi .kpi-num {
            font-size: 1.4rem;
        }
        .hp-section-title {
            font-size: 1.4rem;
        }
        .hp-fixed-cta .cta-inner {
            flex-direction: column;
            align-items: flex-start;
        }
        .hp-cta-band {
            padding: 32px 24px;
        }
        .hp-cta-band h2 {
            font-size: 1.3rem;
        }
        .hp-timeline {
            padding-left: 22px;
        }
        .hp-timeline-item::before {
            left: -16px;
            width: 10px;
            height: 10px;
        }
    }
    @media (max-width: 575px) {
        .hp-navbar .navbar-brand {
            font-size: 1.2rem;
        }
        .hp-logo-icon {
            width: 34px;
            height: 34px;
            font-size: 1rem;
            border-radius: 8px;
        }
        .hp-step-track {
            gap: 0;
        }
        .hp-step-item {
            padding: 5px 10px;
            font-size: 0.78rem;
        }
        .hp-step-dot {
            width: 20px;
            height: 20px;
            font-size: 0.65rem;
        }
        .hp-step-connector {
            width: 20px;
        }
        .hp-hero-walking h1 {
            font-size: 1.55rem;
        }
        .hp-hero-walking .hero-desc {
            font-size: 0.92rem;
        }
        .hp-btn-primary,
        .hp-btn-secondary,
        .hp-btn-outline-light {
            padding: 10px 18px;
            font-size: 0.88rem;
            width: 100%;
            justify-content: center;
        }
        .hp-hero-walking .hero-cta-group {
            flex-direction: column;
        }
        .hp-feature-block {
            padding: 22px 18px;
        }
        .hp-filter-bar {
            gap: 8px;
            padding: 10px 12px;
        }
        .hp-fixed-cta {
            padding: 10px 0;
        }
    }

/* roulang page: category5 */
:root {
      --hp-red: #B3261E;
      --hp-red-dark: #8F1D17;
      --hp-red-light: #D45A4A;
      --hp-charcoal: #1F2937;
      --hp-charcoal-light: #2C3747;
      --hp-warm-gray: #F5F1EB;
      --hp-white: #FAFAFA;
      --hp-card-bg: #FFFFFF;
      --hp-text-title: #1F2937;
      --hp-text-body: #3A3A3A;
      --hp-text-muted: #7A7A7A;
      --hp-border: #E5DED6;
      --hp-green: #2E7D32;
      --hp-blue: #1E88E5;
      --hp-radius-sm: 6px;
      --hp-radius-md: 10px;
      --hp-radius-lg: 16px;
      --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
      --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
      --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
      --hp-transition: all 0.25s ease;
      --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
      --hp-gutter-desktop: 32px;
      --hp-gutter-mobile: 20px;
      --hp-section-space-desktop: 100px;
      --hp-section-space-tablet: 72px;
      --hp-section-space-mobile: 52px;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--hp-font-family);
      font-size: 16px;
      line-height: 1.75;
      color: var(--hp-text-body);
      background-color: var(--hp-white);
      margin: 0;
      padding: 0;
      padding-bottom: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      text-decoration: none;
      color: var(--hp-red);
      transition: var(--hp-transition);
    }
    a:hover { color: var(--hp-red-dark); }

    img { max-width: 100%; height: auto; display: block; }
    button, input, textarea { font-family: inherit; }

    .container { max-width: 1170px; padding-left: 20px; padding-right: 20px; }

    /* ========== Header / Navigation ========== */
    .hp-header {
      background: #fff;
      border-bottom: 1px solid var(--hp-border);
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
    }
    .hp-navbar { padding: 0 0; background: #fff; }
    .hp-navbar .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--hp-red);
      letter-spacing: 0.5px;
    }
    .hp-navbar .navbar-brand:hover { color: var(--hp-red-dark); }
    .hp-logo-icon {
      width: 40px;
      height: 40px;
      background: var(--hp-red);
      color: #fff;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.25rem;
      flex-shrink: 0;
      box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
    }
    .hp-navbar .nav-link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--hp-text-body);
      padding: 18px 14px !important;
      position: relative;
      transition: var(--hp-transition);
    }
    .hp-navbar .nav-link:hover {
      color: var(--hp-red);
      background: rgba(179, 38, 30, 0.04);
    }
    .hp-navbar .nav-link.active { color: var(--hp-red); }
    .hp-navbar .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 14px;
      right: 14px;
      height: 3px;
      background: var(--hp-red);
      border-radius: 3px 3px 0 0;
    }
    .hp-nav-actions { display: flex; align-items: center; gap: 12px; }
    .hp-search-btn {
      width: 40px;
      height: 40px;
      border: 1px solid var(--hp-border);
      border-radius: 50%;
      background: #fff;
      color: var(--hp-text-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--hp-transition);
      cursor: pointer;
    }
    .hp-search-btn:hover {
      border-color: var(--hp-red);
      color: var(--hp-red);
      background: rgba(179, 38, 30, 0.04);
    }
    .hp-subscribe-btn {
      background: var(--hp-red);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--hp-transition);
      white-space: nowrap;
    }
    .hp-subscribe-btn:hover {
      background: var(--hp-red-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
    }
    .navbar-toggler {
      border: 1px solid var(--hp-border);
      border-radius: 8px;
      padding: 6px 10px;
    }
    .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
      outline: none;
    }

    /* ========== Progress Step Nav ========== */
    .hp-step-nav {
      background: var(--hp-warm-gray);
      border-bottom: 1px solid var(--hp-border);
      padding: 10px 0;
    }
    .hp-step-track {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .hp-step-track::-webkit-scrollbar { height: 4px; }
    .hp-step-track::-webkit-scrollbar-thumb { background: #c5bbb0; border-radius: 2px; }
    .hp-step-track::-webkit-scrollbar-track { background: transparent; }
    .hp-step-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--hp-text-muted);
      padding: 6px 14px;
      border-radius: 20px;
      transition: var(--hp-transition);
      flex-shrink: 0;
    }
    .hp-step-item:hover { color: var(--hp-red); background: rgba(179, 38, 30, 0.06); }
    .hp-step-item.active {
      color: var(--hp-red);
      background: #fff;
      box-shadow: 0 1px 6px rgba(31, 41, 51, 0.08);
    }
    .hp-step-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--hp-border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.75rem;
      color: var(--hp-text-muted);
      transition: var(--hp-transition);
      flex-shrink: 0;
    }
    .hp-step-item.active .hp-step-dot {
      background: var(--hp-red);
      border-color: var(--hp-red);
      color: #fff;
      box-shadow: 0 2px 8px rgba(179, 38, 30, 0.25);
    }
    .hp-step-connector {
      flex: 0 0 28px;
      height: 2px;
      background: var(--hp-border);
      margin: 0 2px;
    }
    .hp-step-item:last-child + .hp-step-connector { display: none; }

    /* ========== Breadcrumb ========== */
    .hp-breadcrumb-bar {
      background: #fff;
      border-bottom: 1px solid var(--hp-border);
      padding: 14px 0;
    }
    .hp-breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--hp-text-muted);
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .hp-breadcrumb li {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hp-breadcrumb li a { color: var(--hp-text-muted); }
    .hp-breadcrumb li a:hover { color: var(--hp-red); }
    .hp-breadcrumb li .separator { color: var(--hp-border); }
    .hp-breadcrumb li.current { color: var(--hp-red); font-weight: 600; }

    /* ========== Hero ========== */
    .hp-hero {
      background: linear-gradient(135deg, var(--hp-charcoal) 0%, #1a1f2a 55%, #291d1d 100%);
      color: #fff;
      padding: 70px 0 80px;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--hp-red);
    }
    .hp-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 45%;
      height: 100%;
      background: var(--hp-red);
      opacity: 0.12;
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    }
    .hp-hero .container { position: relative; z-index: 2; }
    .hp-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 0.85rem;
      margin-bottom: 22px;
      backdrop-filter: blur(6px);
    }
    .hp-hero-badge i { color: var(--hp-red-light); }
    .hp-hero h1 {
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
      line-height: 1.2;
      color: #fff;
    }
    .hp-hero h1 .highlight {
      color: #fff;
      background: linear-gradient(180deg, transparent 62%, rgba(179,38,30,0.55) 62%);
    }
    .hp-hero-subtitle {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.82);
      max-width: 560px;
      margin-bottom: 32px;
      line-height: 1.8;
    }
    .hp-hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hp-btn-primary {
      background: var(--hp-red);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px 28px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--hp-transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .hp-btn-primary:hover {
      background: var(--hp-red-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(179,38,30,0.4);
    }
    .hp-btn-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 8px;
      padding: 12px 26px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--hp-transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .hp-btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
      color: #fff;
      transform: translateY(-2px);
    }
    .hp-hero-panel {
      background: #fff;
      color: var(--hp-text-body);
      border-radius: var(--hp-radius-lg);
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
      border-left: 4px solid var(--hp-red);
    }
    .hp-hero-panel h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--hp-text-title);
      margin-bottom: 16px;
    }
    .hp-equip-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 16px;
    }
    .hp-equip-stat {
      background: var(--hp-warm-gray);
      border-radius: var(--hp-radius-sm);
      padding: 12px;
    }
    .hp-equip-stat .stat-num {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--hp-red);
      display: block;
    }
    .hp-equip-stat .stat-label {
      font-size: 0.8rem;
      color: var(--hp-text-muted);
    }
    .hp-hero-panel .panel-note {
      font-size: 0.85rem;
      color: var(--hp-text-muted);
      margin: 0;
      padding: 10px;
      background: var(--hp-warm-gray);
      border-radius: var(--hp-radius-sm);
    }

    /* ========== Sections General ========== */
    .hp-section {
      padding: 80px 0;
    }
    .hp-section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--hp-text-title);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .hp-section-subtitle {
      font-size: 1.05rem;
      color: var(--hp-text-muted);
      max-width: 700px;
      margin-bottom: 40px;
      line-height: 1.8;
    }
    .hp-section-divider {
      width: 56px;
      height: 4px;
      background: var(--hp-red);
      border-radius: 2px;
      margin-bottom: 20px;
    }

    /* ========== Equipment Category Cards ========== */
    .hp-equip-card {
      background: var(--hp-card-bg);
      border: 1px solid var(--hp-border);
      border-radius: var(--hp-radius-md);
      padding: 24px;
      transition: var(--hp-transition);
      box-shadow: var(--hp-shadow-sm);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .hp-equip-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--hp-red);
      border-radius: var(--hp-radius-md) var(--hp-radius-md) 0 0;
      opacity: 0;
      transition: var(--hp-transition);
    }
    .hp-equip-card:hover::before { opacity: 1; }
    .hp-equip-card:hover {
      box-shadow: var(--hp-shadow-md);
      transform: translateY(-3px);
      border-color: #d5c8bc;
    }
    .hp-equip-card .icon {
      width: 44px;
      height: 44px;
      background: rgba(179,38,30,0.1);
      color: var(--hp-red);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 14px;
    }
    .hp-equip-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--hp-text-title);
      margin-bottom: 10px;
    }
    .hp-equip-card p {
      font-size: 0.92rem;
      color: var(--hp-text-muted);
      line-height: 1.7;
      margin-bottom: 14px;
    }
    .hp-equip-card .link-more {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--hp-red);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hp-equip-card .link-more:hover { gap: 10px; }

    /* ========== Equipment Review List ========== */
    .hp-review-card {
      background: var(--hp-card-bg);
      border: 1px solid var(--hp-border);
      border-radius: var(--hp-radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--hp-transition);
      box-shadow: var(--hp-shadow-sm);
      height: 100%;
    }
    .hp-review-card:hover {
      box-shadow: var(--hp-shadow-md);
      transform: translateY(-3px);
    }
    .hp-review-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .hp-review-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--hp-transition);
    }
    .hp-review-card:hover .hp-review-img img { transform: scale(1.05); }
    .hp-review-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(31,41,51,0.85);
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .hp-review-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .hp-review-body h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--hp-text-title);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .hp-review-body p {
      font-size: 0.9rem;
      color: var(--hp-text-body);
      line-height: 1.7;
      margin-bottom: 14px;
      flex: 1;
    }
    .hp-review-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: var(--hp-text-muted);
      padding-top: 14px;
      border-top: 1px solid var(--hp-border);
    }
    .hp-review-score {
      color: var(--hp-blue);
      font-weight: 700;
      font-size: 0.9rem;
    }
    .hp-review-score .stars { color: #E6A817; }

    /* ========== Deep Content Section ========== */
    .hp-deep-section {
      background: var(--hp-charcoal);
      color: #fff;
      padding: 80px 0;
      position: relative;
    }
    .hp-deep-section .hp-section-title { color: #fff; }
    .hp-deep-section .hp-section-subtitle { color: rgba(255,255,255,0.75); }
    .hp-deep-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--hp-radius-md);
      padding: 24px;
      height: 100%;
      transition: var(--hp-transition);
    }
    .hp-deep-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(179,38,30,0.5);
    }
    .hp-deep-card .step-num {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--hp-red-light);
      display: block;
      margin-bottom: 8px;
      line-height: 1;
    }
    .hp-deep-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .hp-deep-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      margin: 0;
    }

    /* ========== FAQ ========== */
    .hp-faq-section {
      background: var(--hp-warm-gray);
      padding: 80px 0;
    }
    .hp-accordion .accordion-item {
      border: 1px solid var(--hp-border);
      border-radius: var(--hp-radius-md) !important;
      margin-bottom: 14px;
      overflow: hidden;
      background: var(--hp-card-bg);
      box-shadow: var(--hp-shadow-sm);
    }
    .hp-accordion .accordion-button {
      background: var(--hp-card-bg);
      color: var(--hp-text-title);
      font-weight: 700;
      font-size: 1rem;
      padding: 18px 22px;
      border: none;
      position: relative;
      box-shadow: none !important;
    }
    .hp-accordion .accordion-button::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--hp-red);
    }
    .hp-accordion .accordion-button:not(.collapsed) {
      background: #fdf8f6;
      color: var(--hp-red);
    }
    .hp-accordion .accordion-button:focus {
      border-color: var(--hp-red);
      box-shadow: 0 0 0 3px rgba(179,38,30,0.1) !important;
    }
    .hp-accordion .accordion-body {
      padding: 20px 24px 20px 26px;
      font-size: 0.95rem;
      color: var(--hp-text-body);
      line-height: 1.8;
      border-top: 1px solid var(--hp-border);
    }

    /* ========== Subscribe CTA ========== */
    .hp-cta-section {
      background: linear-gradient(135deg, var(--hp-red) 0%, var(--hp-red-dark) 100%);
      color: #fff;
      padding: 60px 0;
    }
    .hp-cta-section h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 14px;
      color: #fff;
    }
    .hp-cta-section p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.8;
      max-width: 600px;
      margin-bottom: 26px;
    }
    .hp-cta-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: stretch;
    }
    .hp-cta-form input {
      flex: 1;
      min-width: 240px;
      padding: 13px 18px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 8px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 0.95rem;
      transition: var(--hp-transition);
    }
    .hp-cta-form input::placeholder { color: rgba(255,255,255,0.6); }
    .hp-cta-form input:focus {
      outline: none;
      border-color: #fff;
      background: rgba(255,255,255,0.22);
      box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    }
    .hp-cta-form .hp-btn-primary {
      background: #fff;
      color: var(--hp-red);
      border: none;
    }
    .hp-cta-form .hp-btn-primary:hover {
      background: var(--hp-warm-gray);
      color: var(--hp-red-dark);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }
    .hp-cta-note {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      margin-top: 12px;
    }

    /* ========== Bottom Fixed Conversion Bar ========== */
    .hp-fixed-bottom {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--hp-charcoal);
      color: #fff;
      z-index: 1040;
      padding: 14px 0;
      border-top: 2px solid var(--hp-red);
      box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
      transition: transform 0.35s ease;
    }
    .hp-fixed-bottom.hidden { transform: translateY(120%); }
    .hp-fixed-bottom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hp-fixed-bottom .fb-text {
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      margin: 0;
    }
    .hp-fixed-bottom .fb-text strong { color: #fff; }
    .hp-fixed-bottom .hp-btn-primary {
      padding: 10px 22px;
      font-size: 0.9rem;
      white-space: nowrap;
    }
    .hp-fixed-bottom .fb-close {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.7);
      border-radius: 6px;
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--hp-transition);
      flex-shrink: 0;
    }
    .hp-fixed-bottom .fb-close:hover { color: #fff; border-color: #fff; }

    /* ========== Footer ========== */
    .hp-footer {
      background: var(--hp-charcoal);
      color: rgba(255,255,255,0.8);
      padding: 60px 0 40px;
      margin-bottom: 0;
    }
    .hp-footer .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 14px;
    }
    .hp-footer .footer-logo .hp-logo-icon {
      background: var(--hp-red);
      width: 36px;
      height: 36px;
      font-size: 1rem;
      border-radius: 8px;
    }
    .hp-footer-brand p {
      font-size: 0.9rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      margin-bottom: 0;
    }
    .hp-footer h4 {
      font-size: 0.95rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }
    .hp-footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .hp-footer-links li { margin-bottom: 8px; }
    .hp-footer-links a {
      color: rgba(255,255,255,0.65);
      font-size: 0.9rem;
      transition: var(--hp-transition);
    }
    .hp-footer-links a:hover { color: #fff; }
    .hp-footer-form {
      display: flex;
      gap: 10px;
      flex-direction: column;
    }
    .hp-footer-form input {
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      color: #fff;
      font-size: 0.88rem;
      transition: var(--hp-transition);
    }
    .hp-footer-form input::placeholder { color: rgba(255,255,255,0.45); }
    .hp-footer-form input:focus {
      outline: none;
      border-color: var(--hp-red-light);
      background: rgba(255,255,255,0.1);
      box-shadow: 0 0 0 3px rgba(179,38,30,0.3);
    }
    .hp-footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
    }
    .hp-footer-bottom a { color: rgba(255,255,255,0.6); }
    .hp-footer-bottom a:hover { color: #fff; }

    /* ========== Responsive ========== */
    @media (max-width: 991px) {
      .hp-navbar .navbar-collapse {
        background: #fff;
        border-top: 1px solid var(--hp-border);
        padding: 12px 0;
        margin-top: 8px;
      }
      .hp-navbar .nav-link.active::after { display: none; }
      .hp-nav-actions {
        flex-wrap: wrap;
        padding: 10px 0;
      }
      .hp-hero h1 { font-size: 2.2rem; }
      .hp-section { padding: 60px 0; }
      .hp-deep-section { padding: 60px 0; }
    }

    @media (max-width: 767px) {
      .hp-hero { padding: 50px 0 60px; }
      .hp-hero h1 { font-size: 1.8rem; }
      .hp-hero-subtitle { font-size: 1rem; }
      .hp-step-track { gap: 0; }
      .hp-step-item { padding: 5px 10px; font-size: 0.78rem; }
      .hp-step-connector { flex-basis: 16px; }
      .hp-section-title { font-size: 1.5rem; }
      .hp-equip-stat-grid { grid-template-columns: 1fr; }
      .hp-cta-section h2 { font-size: 1.5rem; }
      .hp-fixed-bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .hp-fixed-bottom .fb-close {
        position: absolute;
        top: 8px;
        right: 12px;
      }
      .hp-fixed-bottom { padding: 16px 0; }
      .hp-footer { padding: 40px 0 30px; }
    }

    @media (max-width: 575px) {
      .hp-hero h1 { font-size: 1.6rem; }
      .hp-hero-actions { flex-direction: column; align-items: stretch; }
      .hp-btn-primary, .hp-btn-secondary { width: 100%; }
      .hp-review-img { height: 160px; }
      .hp-cta-form { flex-direction: column; }
      .hp-cta-form input { min-width: 0; }
      .hp-cta-form .hp-btn-primary { width: 100%; }
      .hp-fixed-bottom .hp-btn-primary { width: 100%; }
    }

/* roulang page: category6 */
:root {
            --hp-red: #B3261E;
            --hp-red-dark: #8F1D17;
            --hp-red-light: #D45A4A;
            --hp-charcoal: #1F2937;
            --hp-charcoal-light: #2C3747;
            --hp-warm-gray: #F5F1EB;
            --hp-white: #FAFAFA;
            --hp-card-bg: #FFFFFF;
            --hp-text-title: #1F2937;
            --hp-text-body: #3A3A3A;
            --hp-text-muted: #7A7A7A;
            --hp-border: #E5DED6;
            --hp-green: #2E7D32;
            --hp-blue: #1E88E5;
            --hp-radius-sm: 6px;
            --hp-radius-md: 10px;
            --hp-radius-lg: 16px;
            --hp-shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.04);
            --hp-shadow-md: 0 4px 16px rgba(31, 41, 51, 0.07);
            --hp-shadow-lg: 0 10px 30px rgba(31, 41, 51, 0.10);
            --hp-transition: all 0.25s ease;
            --hp-font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --hp-gutter-desktop: 32px;
            --hp-gutter-mobile: 20px;
            --hp-section-space-desktop: 100px;
            --hp-section-space-tablet: 72px;
            --hp-section-space-mobile: 52px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--hp-font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--hp-text-body);
            background-color: var(--hp-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
        }

        a {
            text-decoration: none;
            color: var(--hp-red);
            transition: var(--hp-transition);
        }

        a:hover {
            color: var(--hp-red-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: 1170px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Navigation */
        .hp-header {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(31, 41, 51, 0.04);
        }

        .hp-navbar {
            padding: 0 0;
            background: #fff;
        }

        .hp-navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--hp-red);
            letter-spacing: 0.5px;
        }

        .hp-navbar .navbar-brand:hover {
            color: var(--hp-red-dark);
        }

        .hp-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(179, 38, 30, 0.25);
        }

        .hp-navbar .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--hp-text-body);
            padding: 18px 14px !important;
            position: relative;
            transition: var(--hp-transition);
        }

        .hp-navbar .nav-link:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-navbar .nav-link.active {
            color: var(--hp-red);
        }

        .hp-navbar .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--hp-red);
            border-radius: 3px 3px 0 0;
        }

        .hp-nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hp-search-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--hp-border);
            border-radius: 50%;
            background: #fff;
            color: var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--hp-transition);
            cursor: pointer;
        }

        .hp-search-btn:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.04);
        }

        .hp-subscribe-btn {
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-subscribe-btn:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 38, 30, 0.3);
        }

        .navbar-toggler {
            border: 1px solid var(--hp-border);
            border-radius: 8px;
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.15);
            outline: none;
        }

        /* Progress Step Nav */
        .hp-step-nav {
            background: var(--hp-warm-gray);
            border-bottom: 1px solid var(--hp-border);
            padding: 10px 0;
        }

        .hp-step-track {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: thin;
            scrollbar-color: var(--hp-red-light) transparent;
        }

        .hp-step-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--hp-text-muted);
            padding: 4px 10px;
            border-radius: 20px;
            transition: var(--hp-transition);
            flex-shrink: 0;
        }

        .hp-step-item:hover {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.05);
        }

        .hp-step-item.active {
            color: var(--hp-red);
            background: rgba(179, 38, 30, 0.08);
        }

        .hp-step-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid var(--hp-text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
            transition: var(--hp-transition);
        }

        .hp-step-item.active .hp-step-dot {
            border-color: var(--hp-red);
            background: var(--hp-red);
            color: #fff;
        }

        .hp-step-connector {
            width: 24px;
            height: 2px;
            background: var(--hp-border);
            flex-shrink: 0;
        }

        /* Category Hero */
        .hp-cat-hero {
            background: var(--hp-charcoal);
            background-image: linear-gradient(rgba(31, 41, 51, 0.82), rgba(31, 41, 51, 0.88)), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center center;
            color: #fff;
            padding: 72px 0 64px;
            position: relative;
        }

        .hp-cat-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--hp-red), var(--hp-red-light), var(--hp-green));
        }

        .hp-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 24px;
        }

        .hp-breadcrumb a {
            color: rgba(255, 255, 255, 0.65);
        }

        .hp-breadcrumb a:hover {
            color: #fff;
        }

        .hp-breadcrumb-sep {
            color: rgba(255, 255, 255, 0.4);
        }

        .hp-cat-hero h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .hp-cat-hero .hp-hero-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 640px;
            line-height: 1.7;
        }

        .hp-cat-hero .hp-hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 28px;
        }

        .hp-hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hp-hero-stat .hp-stat-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
        }

        .hp-hero-stat .hp-stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
        }

        /* Filter Bar */
        .hp-filter-bar {
            background: #fff;
            border-bottom: 1px solid var(--hp-border);
            padding: 14px 0;
            position: sticky;
            top: 101px;
            z-index: 900;
        }

        .hp-filter-inner {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hp-filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--hp-text-muted);
            white-space: nowrap;
        }

        .hp-filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border: 1px solid var(--hp-border);
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--hp-text-body);
            background: #fff;
            cursor: pointer;
            transition: var(--hp-transition);
        }

        .hp-filter-chip:hover {
            border-color: var(--hp-red);
            color: var(--hp-red);
        }

        .hp-filter-chip.active {
            background: var(--hp-red);
            border-color: var(--hp-red);
            color: #fff;
        }

        /* Section Base */
        .hp-section {
            padding: var(--hp-section-space-desktop) 0;
        }

        .hp-section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 12px;
        }

        .hp-section-subtitle {
            font-size: 0.95rem;
            color: var(--hp-text-muted);
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* Timeline Schedule */
        .hp-timeline {
            position: relative;
            padding-left: 24px;
        }

        .hp-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: var(--hp-border);
        }

        .hp-timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 20px;
        }

        .hp-timeline-dot {
            position: absolute;
            left: -24px;
            top: 4px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--hp-red);
        }

        .hp-timeline-dot.live {
            background: var(--hp-green);
            border-color: var(--hp-green);
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
            animation: hp-pulse 2s infinite;
        }

        @keyframes hp-pulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2); }
            50% { box-shadow: 0 0 0 8px rgba(46, 125, 50, 0.08); }
        }

        .hp-schedule-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            box-shadow: var(--hp-shadow-sm);
            transition: var(--hp-transition);
        }

        .hp-schedule-card:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
            border-color: var(--hp-red-light);
        }

        .hp-schedule-date {
            flex-shrink: 0;
            min-width: 72px;
            text-align: center;
        }

        .hp-schedule-date .hp-date-day {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--hp-red);
            line-height: 1;
        }

        .hp-schedule-date .hp-date-month {
            font-size: 0.75rem;
            color: var(--hp-text-muted);
            font-weight: 600;
        }

        .hp-schedule-main {
            flex: 1;
            min-width: 180px;
        }

        .hp-schedule-match {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--hp-text-title);
        }

        .hp-schedule-tags {
            display: flex;
            gap: 6px;
            margin-top: 6px;
            flex-wrap: wrap;
        }

        .hp-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            background: var(--hp-warm-gray);
            color: var(--hp-text-muted);
        }

        .hp-tag.hot {
            background: rgba(179, 38, 30, 0.08);
            color: var(--hp-red);
        }

        .hp-tag.live-tag {
            background: rgba(46, 125, 50, 0.1);
            color: var(--hp-green);
        }

        .hp-schedule-action {
            flex-shrink: 0;
        }

        .hp-btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border: 1px solid var(--hp-red);
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--hp-red);
            background: transparent;
            cursor: pointer;
            transition: var(--hp-transition);
        }

        .hp-btn-outline-sm:hover {
            background: var(--hp-red);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(179, 38, 30, 0.25);
        }

        /* Sidebar */
        .hp-sidebar-card {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            padding: 20px;
            margin-bottom: 24px;
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-sidebar-card h4 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--hp-text-title);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--hp-red);
            display: inline-block;
        }

        .hp-rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hp-rank-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--hp-border);
            font-size: 0.88rem;
            transition: var(--hp-transition);
        }

        .hp-rank-list li:last-child {
            border-bottom: none;
        }

        .hp-rank-list li:hover {
            background: rgba(179, 38, 30, 0.03);
            padding-left: 6px;
        }

        .hp-rank-badge {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: var(--hp-warm-gray);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.78rem;
            color: var(--hp-text-muted);
            flex-shrink: 0;
        }

        .hp-rank-badge.top1 {
            background: var(--hp-red);
            color: #fff;
        }

        .hp-rank-badge.top2 {
            background: var(--hp-red-light);
            color: #fff;
        }

        .hp-rank-badge.top3 {
            background: #E8A87C;
            color: #fff;
        }

        .hp-rank-text {
            flex: 1;
            font-weight: 600;
            color: var(--hp-text-body);
        }

        .hp-rank-heat {
            font-size: 0.75rem;
            color: var(--hp-text-muted);
            white-space: nowrap;
        }

        .hp-hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hp-hot-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.78rem;
            font-weight: 600;
            background: var(--hp-warm-gray);
            color: var(--hp-text-body);
            cursor: pointer;
            transition: var(--hp-transition);
        }

        .hp-hot-tag:hover {
            background: rgba(179, 38, 30, 0.08);
            color: var(--hp-red);
        }

        .hp-sidebar-subscribe {
            background: var(--hp-charcoal);
            color: #fff;
            border-radius: var(--hp-radius-md);
            padding: 24px 20px;
            text-align: center;
        }

        .hp-sidebar-subscribe h5 {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .hp-sidebar-subscribe p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 16px;
        }

        .hp-sidebar-subscribe .hp-btn-primary-sm {
            display: inline-block;
            padding: 8px 20px;
            background: var(--hp-red);
            color: #fff;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.82rem;
            transition: var(--hp-transition);
        }

        .hp-sidebar-subscribe .hp-btn-primary-sm:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        /* News List */
        .hp-news-horizontal {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hp-news-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px;
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            transition: var(--hp-transition);
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-news-item:hover {
            box-shadow: var(--hp-shadow-md);
            transform: translateY(-2px);
            border-color: var(--hp-red-light);
        }

        .hp-news-img {
            width: 100px;
            height: 70px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .hp-news-content {
            flex: 1;
            min-width: 0;
        }

        .hp-news-date {
            font-size: 0.75rem;
            color: var(--hp-text-muted);
            font-weight: 600;
        }

        .hp-news-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--hp-text-title);
            margin: 4px 0 6px;
            line-height: 1.4;
        }

        .hp-news-summary {
            font-size: 0.82rem;
            color: var(--hp-text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hp-news-more {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--hp-red);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .hp-news-more:hover {
            color: var(--hp-red-dark);
        }

        /* CTA Section */
        .hp-cta-section {
            background: var(--hp-charcoal);
            background-image: linear-gradient(135deg, var(--hp-charcoal) 0%, #2C3747 100%);
            color: #fff;
            padding: 56px 0;
        }

        .hp-cta-section h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .hp-cta-section p {
            color: rgba(255, 255, 255, 0.65);
            max-width: 500px;
        }

        .hp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--hp-transition);
            cursor: pointer;
        }

        .hp-btn-primary:hover {
            background: var(--hp-red-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(179, 38, 30, 0.35);
        }

        .hp-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--hp-transition);
            cursor: pointer;
        }

        .hp-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        /* FAQ */
        .hp-faq-item {
            background: var(--hp-card-bg);
            border: 1px solid var(--hp-border);
            border-radius: var(--hp-radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--hp-shadow-sm);
        }

        .hp-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--hp-text-title);
            cursor: pointer;
            transition: var(--hp-transition);
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
        }

        .hp-faq-question:hover {
            background: var(--hp-warm-gray);
        }

        .hp-faq-question .hp-faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--hp-warm-gray);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--hp-red);
            flex-shrink: 0;
            transition: var(--hp-transition);
        }

        .hp-faq-answer {
            padding: 0 24px 20px 24px;
            font-size: 0.88rem;
            color: var(--hp-text-body);
            line-height: 1.8;
        }

        /* Fixed Bottom CTA */
        .hp-bottom-fixed {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--hp-charcoal);
            color: #fff;
            padding: 14px 0;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -4px 20px rgba(31, 41, 51, 0.2);
        }

        .hp-bottom-fixed.visible {
            transform: translateY(0);
        }

        .hp-bottom-fixed-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hp-bottom-fixed-text {
            font-size: 0.88rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
        }

        .hp-bottom-fixed .hp-fixed-btn {
            padding: 10px 22px;
            background: var(--hp-red);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--hp-transition);
            white-space: nowrap;
        }

        .hp-bottom-fixed .hp-fixed-btn:hover {
            background: var(--hp-red-dark);
            transform: translateY(-1px);
        }

        .hp-bottom-fixed-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            font-size: 1rem;
            padding: 4px;
        }

        .hp-bottom-fixed-close:hover {
            color: #fff;
        }

        /* Footer */
        .hp-footer {
            background: var(--hp-charcoal);
            color: rgba(255, 255, 255, 0.72);
            padding: 60px 0 120px;
            font-size: 0.88rem;
        }

        .hp-footer h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .hp-footer-brand {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
        }

        .footer-logo .hp-logo-icon {
            width: 36px;
            height: 36px;
            font-size: 1rem;
            border-radius: 8px;
        }

        .hp-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hp-footer-links li {
            margin-bottom: 8px;
        }

        .hp-footer-links a {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.85rem;
            transition: var(--hp-transition);
        }

        .hp-footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .hp-footer-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hp-footer-form input {
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 0.85rem;
            outline: none;
            transition: var(--hp-transition);
        }

        .hp-footer-form input:focus {
            border-color: var(--hp-red-light);
            box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.2);
        }

        .hp-footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
        }

        .hp-footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }

        .hp-footer-bottom a:hover {
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hp-navbar .nav-link {
                padding: 12px 16px !important;
            }

            .hp-nav-actions {
                gap: 8px;
                margin-top: 8px;
                padding-bottom: 12px;
            }

            .hp-filter-bar {
                top: 61px;
            }

            .hp-section {
                padding: 60px 0;
            }

            .hp-cat-hero {
                padding: 48px 0 44px;
            }

            .hp-cat-hero h1 {
                font-size: 1.9rem;
            }

            .hp-hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767.98px) {
            body {
                font-size: 15px;
            }

            .hp-cat-hero h1 {
                font-size: 1.5rem;
            }

            .hp-cat-hero .hp-hero-desc {
                font-size: 0.9rem;
            }

            .hp-section-title {
                font-size: 1.4rem;
            }

            .hp-schedule-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .hp-schedule-date {
                display: flex;
                align-items: baseline;
                gap: 6px;
                min-width: auto;
            }

            .hp-schedule-date .hp-date-day {
                font-size: 1.2rem;
            }

            .hp-news-item {
                flex-direction: column;
            }

            .hp-news-img {
                width: 100%;
                height: 140px;
            }

            .hp-footer {
                padding: 40px 0 140px;
            }

            .hp-footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .hp-bottom-fixed-inner {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .hp-step-nav {
                padding: 6px 0;
            }

            .hp-step-track {
                gap: 4px;
            }

            .hp-step-item {
                font-size: 0.72rem;
                padding: 3px 8px;
            }

            .hp-step-dot {
                width: 20px;
                height: 20px;
                font-size: 0.6rem;
            }

            .hp-filter-bar {
                top: 57px;
                position: relative;
            }
        }

        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .hp-cat-hero {
                padding: 32px 0 32px;
            }

            .hp-cat-hero h1 {
                font-size: 1.35rem;
            }

            .hp-hero-stats {
                gap: 16px;
            }

            .hp-hero-stat .hp-stat-num {
                font-size: 1.3rem;
            }

            .hp-news-img {
                height: 120px;
            }

            .hp-sidebar-card {
                padding: 16px;
            }

            .hp-cta-section {
                padding: 32px 0;
            }

            .hp-cta-section h3 {
                font-size: 1.2rem;
            }
        }
