/* roulang page: index */
:root {
            --hp-primary: #D63D2A;
            --hp-primary-dark: #C63D2F;
            --hp-primary-light: #F8E8E4;
            --hp-secondary-dark: #17181C;
            --hp-secondary-cyan: #1FA8FF;
            --hp-secondary-lime: #D7FF3F;
            --hp-bg-warm: #F6F3EF;
            --hp-bg-card: #FFFFFF;
            --hp-text-main: #1E1F23;
            --hp-text-weak: #6B6F7A;
            --hp-border-light: #E8E4DD;
            --hp-border-hover: #D63D2A;
            --hp-radius-card: 24px;
            --hp-radius-badge: 14px;
            --hp-radius-btn: 999px;
            --hp-radius-input: 13px;
            --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
            --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
            --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
            --hp-spacing-section: 80px;
            --hp-spacing-card-pad: 28px;
            --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --hp-transition: 0.25s ease;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--hp-font-family);
            color: var(--hp-text-main);
            background-color: var(--hp-bg-warm);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }
        a:hover {
            color: var(--hp-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }
        .hp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .hp-section {
            padding-top: var(--hp-spacing-section);
            padding-bottom: var(--hp-spacing-section);
            position: relative;
        }
        .hp-section--dark {
            background-color: var(--hp-secondary-dark);
            color: #E8E6E1;
        }
        .hp-section--compact {
            padding-top: 48px;
            padding-bottom: 48px;
        }
        .hp-bg-light {
            background-color: #FBF9F7;
        }
        .hp-bg-white {
            background-color: #FFFFFF;
        }
        .hp-text-primary {
            color: var(--hp-primary) !important;
        }
        .hp-text-weak {
            color: var(--hp-text-weak);
        }
        .hp-text-light {
            color: #E8E6E1;
        }
        .hp-section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .hp-section-subtitle {
            font-size: 16px;
            color: var(--hp-text-weak);
            margin-bottom: 36px;
            max-width: 680px;
            line-height: 1.8;
        }
        .hp-section-head {
            margin-bottom: 28px;
        }
        .hp-section-head--center {
            text-align: center;
        }
        .hp-section-head--center .hp-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }
        .hp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hp-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }
        .hp-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }
        .hp-badge--dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .hp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--hp-radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .hp-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }
        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(214, 61, 42, 0.35);
            outline-offset: 2px;
        }
        .hp-btn-outline-dark {
            background: transparent;
            color: var(--hp-secondary-dark);
            border-color: var(--hp-secondary-dark);
        }
        .hp-btn-outline-dark:hover {
            background: rgba(23, 24, 28, 0.06);
            border-color: var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            transform: translateY(-2px);
        }
        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .hp-btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }
        .hp-btn-lg {
            padding: 15px 36px;
            font-size: 16px;
        }
        .hp-btn-block {
            width: 100%;
            display: flex;
        }
        .hp-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            padding: var(--hp-spacing-card-pad);
            transition: all var(--hp-transition);
            border: 1px solid rgba(232, 228, 221, 0.5);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .hp-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.18);
        }
        .hp-card--dark {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.08);
            color: #E8E6E1;
        }
        .hp-card--dark:hover {
            border-color: rgba(214, 61, 42, 0.35);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        }
        .hp-card-title {
            font-size: 21px;
            font-weight: 600;
            line-height: 1.35;
            margin-bottom: 10px;
        }
        .hp-card-text {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .hp-card--dark .hp-card-text {
            color: #B8B5AD;
        }
        .hp-card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }
        .hp-card-list li {
            position: relative;
            padding-left: 22px;
            font-size: 14px;
            color: var(--hp-text-weak);
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .hp-card-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--hp-primary);
            opacity: 0.65;
        }
        .hp-card--dark .hp-card-list li {
            color: #B8B5AD;
        }
        .hp-data-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #F7F4F0;
            border-radius: var(--hp-radius-badge);
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--hp-secondary-dark);
            border: 1px solid rgba(232, 228, 221, 0.6);
            white-space: nowrap;
        }
        .hp-data-badge--brand {
            background: var(--hp-primary-light);
            border-color: rgba(214, 61, 42, 0.2);
            color: var(--hp-primary);
        }
        .hp-data-badge--dark {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .hp-data-badge .num {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .hp-stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .hp-tag {
            display: inline-inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            background: #F0ECE6;
            font-size: 12px;
            color: var(--hp-text-weak);
            font-weight: 500;
            white-space: nowrap;
        }
        .hp-tag--hot {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
        }
        .hp-tag--lime {
            background: rgba(215, 255, 63, 0.3);
            color: #4F6D00;
        }
        .hp-divider {
            border-top: 1px solid var(--hp-border-light);
            margin: 24px 0;
        }
        .hp-img-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
        .hp-img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: #E8E4DD;
        }
        .hp-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hp-card:hover .hp-img-wrapper img {
            transform: scale(1.04);
        }
        .hp-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 24, 28, 0.1) 0%, rgba(23, 24, 28, 0.55) 100%);
            border-radius: 16px;
        }
        .hp-img-overlay-text {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            z-index: 2;
        }
        .hp-ratio-16x9 {
            aspect-ratio: 16 / 9;
        }
        .hp-ratio-4x3 {
            aspect-ratio: 4 / 3;
        }
        .hp-ratio-3x2 {
            aspect-ratio: 3 / 2;
        }
        .hp-ratio-1x1 {
            aspect-ratio: 1 / 1;
        }
        /* Header & Navigation */
        .hp-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(246, 243, 239, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(232, 228, 221, 0.6);
            transition: background var(--hp-transition), box-shadow var(--hp-transition);
        }
        .hp-header.scrolled {
            background: rgba(23, 24, 28, 0.92);
            border-bottom-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        .hp-header.scrolled .hp-header-logo-text {
            color: #fff;
        }
        .hp-header.scrolled .hp-nav-link {
            color: #D8D5CD;
        }
        .hp-header.scrolled .hp-nav-link:hover,
        .hp-header.scrolled .hp-nav-link.active {
            color: #fff;
        }
        .hp-header.scrolled .hp-nav-btn-outline {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }
        .hp-header.scrolled .hp-nav-btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
        }
        .hp-header.scrolled .hp-navbar-toggler {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }
        .hp-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            position: relative;
        }
        .hp-header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            letter-spacing: -0.02em;
            color: var(--hp-secondary-dark);
            transition: color var(--hp-transition);
        }
        .hp-header-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .hp-nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .hp-nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--hp-secondary-dark);
            position: relative;
            padding: 6px 0;
            transition: color var(--hp-transition);
        }
        .hp-nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--hp-primary);
            border-radius: 2px;
            transition: width var(--hp-transition);
        }
        .hp-nav-link:hover::after,
        .hp-nav-link.active::after {
            width: 100%;
        }
        .hp-nav-link.active {
            color: var(--hp-primary);
            font-weight: 600;
        }
        .hp-nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hp-nav-btn-outline {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: 1.5px solid var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            background: transparent;
            transition: all var(--hp-transition);
        }
        .hp-nav-btn-outline:hover {
            background: var(--hp-secondary-dark);
            color: #fff;
        }
        .hp-nav-btn-primary {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border: none;
            box-shadow: var(--hp-shadow-brand);
            transition: all var(--hp-transition);
        }
        .hp-nav-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(214, 61, 42, 0.3);
            color: #fff;
        }
        .hp-navbar-toggler {
            display: none;
            background: none;
            border: 1px solid var(--hp-border-light);
            border-radius: 10px;
            padding: 8px 12px;
            font-size: 20px;
            color: var(--hp-secondary-dark);
            cursor: pointer;
            transition: all var(--hp-transition);
        }
        .hp-navbar-toggler:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }
        .hp-mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--hp-secondary-dark);
            border-radius: 0 0 20px 20px;
            padding: 20px 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            z-index: 1001;
        }
        .hp-mobile-menu.open {
            display: block;
        }
        .hp-mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hp-mobile-menu-list a {
            display: block;
            padding: 12px 16px;
            color: #D8D5CD;
            font-size: 15px;
            font-weight: 500;
            border-radius: 12px;
            transition: all var(--hp-transition);
        }
        .hp-mobile-menu-list a:hover,
        .hp-mobile-menu-list a.active {
            background: rgba(214, 61, 42, 0.2);
            color: #fff;
        }
        .hp-mobile-menu-list a.active {
            color: var(--hp-primary);
            font-weight: 600;
        }
        @media (max-width: 991.98px) {
            .hp-nav-menu,
            .hp-nav-cta {
                display: none;
            }
            .hp-navbar-toggler {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }
            .hp-mobile-menu {
                display: none;
            }
            .hp-mobile-menu.open {
                display: block;
            }
        }
        @media (min-width: 992px) {
            .hp-mobile-menu {
                display: none !important;
            }
        }
        /* Hero */
        .hp-hero {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            padding: 56px 0 40px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 32px 32px;
            overflow: hidden;
        }
        .hp-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(23, 24, 28, 0.78) 0%, rgba(198, 61, 47, 0.55) 100%);
            z-index: 1;
        }
        .hp-hero-overlay-pattern {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(115deg, transparent, transparent 40px, rgba(255, 255, 255, 0.04) 40px, rgba(255, 255, 255, 0.04) 41px);
            z-index: 1;
            pointer-events: none;
        }
        .hp-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hp-hero-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 28px;
            padding: 32px 36px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            max-width: 760px;
            margin: 0 auto;
        }
        .hp-hero-title {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--hp-secondary-dark);
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }
        .hp-hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: var(--hp-text-weak);
            margin-bottom: 22px;
            max-width: 560px;
        }
        .hp-hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 18px;
        }
        .hp-hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        @media (max-width: 768px) {
            .hp-hero {
                min-height: 360px;
                padding: 32px 0;
            }
            .hp-hero-title {
                font-size: 30px;
            }
            .hp-hero-desc {
                font-size: 15px;
            }
            .hp-hero-card {
                padding: 24px 20px;
            }
        }
        /* Flat entry cards */
        .hp-entry-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin-top: 20px;
        }
        .hp-entry-card {
            background: #fff;
            border-radius: 18px;
            padding: 22px 18px;
            text-align: center;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid rgba(232, 228, 221, 0.5);
            transition: all var(--hp-transition);
            cursor: pointer;
            display: block;
            color: var(--hp-text-main);
        }
        .hp-entry-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.25);
            color: var(--hp-text-main);
        }
        .hp-entry-card-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            background: var(--hp-primary-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--hp-primary);
        }
        .hp-entry-card-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 4px;
        }
        .hp-entry-card-sub {
            font-size: 12px;
            color: var(--hp-text-weak);
        }
        @media (max-width: 991.98px) {
            .hp-entry-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hp-entry-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .hp-entry-card {
                padding: 16px 12px;
            }
        }
        /* Countdown */
        .hp-countdown-wrap {
            background: var(--hp-secondary-dark);
            border-radius: 24px;
            padding: 32px 36px;
            color: #fff;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .hp-countdown-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .hp-countdown-sub {
            font-size: 14px;
            color: #B8B5AD;
        }
        .hp-countdown-timer {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .hp-countdown-item {
            text-align: center;
            min-width: 60px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 12px 16px;
        }
        .hp-countdown-num {
            font-size: 32px;
            font-weight: 700;
            display: block;
            letter-spacing: -0.02em;
        }
        .hp-countdown-label {
            font-size: 12px;
            color: #B8B5AD;
            display: block;
        }
        .hp-countdown-colon {
            font-size: 24px;
            font-weight: 700;
            color: var(--hp-primary);
        }
        @media (max-width: 768px) {
            .hp-countdown-wrap {
                padding: 24px 20px;
                flex-direction: column;
                text-align: center;
            }
            .hp-countdown-num {
                font-size: 24px;
            }
            .hp-countdown-item {
                min-width: 50px;
                padding: 8px 12px;
            }
        }
        /* Activity wall */
        .hp-activity-wall {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .hp-activity-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid rgba(232, 228, 221, 0.5);
            transition: all var(--hp-transition);
            display: flex;
            flex-direction: column;
        }
        .hp-activity-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.2);
        }
        .hp-activity-card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .hp-activity-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hp-activity-card:hover .hp-activity-card-img img {
            transform: scale(1.05);
        }
        .hp-activity-card-body {
            padding: 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .hp-activity-card-title {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .hp-activity-card-desc {
            font-size: 14px;
            color: var(--hp-text-weak);
            line-height: 1.7;
            margin-bottom: 14px;
            flex: 1;
        }
        @media (max-width: 991.98px) {
            .hp-activity-wall {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hp-activity-wall {
                grid-template-columns: 1fr;
            }
        }
        /* Deep content */
        .hp-deep-content {
            background: #fff;
            border-radius: 28px;
            padding: 40px 44px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid rgba(232, 228, 221, 0.5);
        }
        .hp-deep-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }
        .hp-deep-text {
            font-size: 16px;
            line-height: 1.9;
            color: #3A3D44;
            margin-bottom: 18px;
        }
        .hp-deep-text:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .hp-deep-content {
                padding: 24px 20px;
            }
            .hp-deep-title {
                font-size: 20px;
            }
        }
        /* Ticket comparison */
        .hp-ticket-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .hp-ticket-card {
            background: #fff;
            border-radius: 24px;
            padding: 32px 26px;
            box-shadow: var(--hp-shadow-default);
            border: 1.5px solid rgba(232, 228, 221, 0.5);
            transition: all var(--hp-transition);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .hp-ticket-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
        }
        .hp-ticket-card--featured {
            border-color: var(--hp-primary);
            box-shadow: 0 12px 36px rgba(214, 61, 42, 0.18);
            transform: scale(1.02);
        }
        .hp-ticket-card--featured:hover {
            transform: scale(1.02) translateY(-5px);
        }
        .hp-ticket-card--featured::before {
            content: '推荐';
            position: absolute;
            top: 16px;
            right: -32px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 36px;
            transform: rotate(45deg);
        }
        .hp-ticket-tag {
            font-size: 13px;
            font-weight: 600;
            color: var(--hp-primary);
            margin-bottom: 8px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .hp-ticket-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .hp-ticket-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--hp-secondary-dark);
            margin-bottom: 4px;
            letter-spacing: -0.02em;
        }
        .hp-ticket-price span {
            font-size: 16px;
            font-weight: 500;
            color: var(--hp-text-weak);
        }
        .hp-ticket-desc {
            font-size: 14px;
            color: var(--hp-text-weak);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .hp-ticket-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            flex: 1;
        }
        .hp-ticket-benefits li {
            padding: 7px 0 7px 26px;
            position: relative;
            font-size: 14px;
            color: #3A3D44;
        }
        .hp-ticket-benefits li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 7px;
            color: var(--hp-primary);
            font-size: 13px;
        }
        .hp-ticket-card--featured .hp-ticket-price {
            color: var(--hp-primary);
        }
        @media (max-width: 991.98px) {
            .hp-ticket-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .hp-ticket-card--featured {
                transform: scale(1);
            }
            .hp-ticket-card--featured:hover {
                transform: translateY(-5px);
            }
        }
        /* News */
        .hp-news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hp-news-item {
            background: #fff;
            border-radius: 18px;
            padding: 22px 24px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid rgba(232, 228, 221, 0.5);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all var(--hp-transition);
        }
        .hp-news-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.2);
        }
        .hp-news-date {
            min-width: 76px;
            text-align: center;
            background: var(--hp-primary-light);
            border-radius: 12px;
            padding: 10px 8px;
            color: var(--hp-primary);
            font-weight: 600;
            font-size: 13px;
            flex-shrink: 0;
        }
        .hp-news-date .day {
            font-size: 24px;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }
        .hp-news-body {
            flex: 1;
        }
        .hp-news-title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.45;
        }
        .hp-news-desc {
            font-size: 14px;
            color: var(--hp-text-weak);
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .hp-news-btn {
            font-size: 13px;
            color: var(--hp-primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--hp-transition);
        }
        .hp-news-btn:hover {
            gap: 8px;
            color: var(--hp-primary-dark);
        }
        @media (max-width: 576px) {
            .hp-news-item {
                flex-direction: column;
                gap: 12px;
                padding: 18px 16px;
            }
            .hp-news-date {
                min-width: auto;
                display: inline-flex;
                gap: 7px;
                align-items: baseline;
                padding: 6px 14px;
            }
            .hp-news-date .day {
                font-size: 16px;
                display: inline;
            }
        }
        /* Strong CTA */
        .hp-cta-banner {
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            border-radius: 28px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        .hp-cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(23, 24, 28, 0.82) 0%, rgba(214, 61, 42, 0.65) 100%);
            z-index: 1;
        }
        .hp-cta-banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .hp-cta-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .hp-cta-sub {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.78);
            max-width: 460px;
            line-height: 1.7;
        }
        .hp-cta-btn-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .hp-cta-banner {
                padding: 32px 22px;
            }
            .hp-cta-title {
                font-size: 22px;
            }
            .hp-cta-banner-content {
                flex-direction: column;
                text-align: center;
            }
            .hp-cta-sub {
                margin: 0 auto;
            }
            .hp-cta-btn-row {
                justify-content: center;
            }
        }
        /* FAQ */
        .hp-accordion .accordion-item {
            border: 1px solid var(--hp-border-light);
            border-radius: 16px !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: none;
        }
        .hp-accordion .accordion-button {
            background: #F7F4F0;
            color: var(--hp-text-main);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 22px;
            border-radius: 16px !important;
            transition: all var(--hp-transition);
            box-shadow: none;
        }
        .hp-accordion .accordion-button:not(.collapsed) {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            border-radius: 16px 16px 0 0 !important;
        }
        .hp-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(214, 61, 42, 0.15);
            border-color: var(--hp-primary);
        }
        .hp-accordion .accordion-button::after {
            background-image: none;
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }
        .hp-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--hp-primary);
        }
        .hp-accordion .accordion-body {
            padding: 18px 22px;
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            background: #fff;
            border-radius: 0 0 16px 16px;
        }
        /* Form */
        .hp-form-input {
            border: 1.5px solid var(--hp-border-light);
            border-radius: var(--hp-radius-input);
            padding: 12px 18px;
            font-size: 15px;
            color: var(--hp-text-main);
            background: #fff;
            transition: all var(--hp-transition);
            width: 100%;
            outline: none;
        }
        .hp-form-input:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 4px rgba(214, 61, 42, 0.1);
        }
        .hp-form-input::placeholder {
            color: #A8A49C;
        }
        .hp-form-label {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            display: block;
            color: var(--hp-text-main);
        }
        /* Brand intro */
        .hp-brand-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hp-brand-intro-text {
            font-size: 16px;
            line-height: 1.9;
            color: #3A3D44;
        }
        .hp-brand-intro-text p {
            margin-bottom: 16px;
        }
        .hp-brand-intro-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .hp-brand-stat {
            background: #fff;
            border-radius: 18px;
            padding: 20px 22px;
            text-align: center;
            flex: 1;
            min-width: 120px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid rgba(232, 228, 221, 0.5);
        }
        .hp-brand-stat-num {
            font-size: 32px;
            font-weight: 700;
            color: var(--hp-primary);
            display: block;
            letter-spacing: -0.02em;
        }
        .hp-brand-stat-label {
            font-size: 13px;
            color: var(--hp-text-weak);
            margin-top: 4px;
        }
        @media (max-width: 991.98px) {
            .hp-brand-intro {
                grid-template-columns: 1fr;
            }
        }
        /* Footer */
        .hp-footer {
            background: var(--hp-secondary-dark);
            color: #B8B5AD;
            padding: 52px 0 28px;
            margin-top: 20px;
        }
        .hp-footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        .hp-footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #98958D;
            max-width: 340px;
        }
        .hp-footer-title {
            font-size: 16px;
            font-weight: 600;
            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: #B8B5AD;
            font-size: 14px;
            transition: color var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: #fff;
        }
        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: #98958D;
        }
        .hp-footer-bottom a {
            color: #B8B5AD;
            font-size: 13px;
            transition: color var(--hp-transition);
        }
        .hp-footer-bottom a:hover {
            color: #fff;
        }
        .hp-footer-bottom .sep {
            margin: 0 8px;
            color: #555;
        }
        /* Floating CTA bar */
        .hp-float-cta {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            background: var(--hp-secondary-dark);
            border-radius: 999px;
            padding: 10px 14px 10px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
            max-width: 96%;
            flex-wrap: wrap;
            justify-content: center;
        }
        .hp-float-cta-text {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }
        .hp-float-cta .hp-btn {
            white-space: nowrap;
        }
        @media (max-width: 576px) {
            .hp-float-cta {
                bottom: 10px;
                padding: 10px 16px;
                gap: 10px;
                border-radius: 20px;
            }
            .hp-float-cta-text {
                font-size: 12px;
            }
        }
        /* Progress bar */
        .hp-progress {
            height: 6px;
            background: #E8E4DD;
            border-radius: 99px;
            overflow: hidden;
            margin: 8px 0 16px;
        }
        .hp-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 99px;
            transition: width 1s ease;
        }
        /* utility */
        .hp-mt-0 {
            margin-top: 0;
        }
        .hp-mb-0 {
            margin-bottom: 0;
        }
        .hp-mb-16 {
            margin-bottom: 16px;
        }
        .hp-mb-24 {
            margin-bottom: 24px;
        }
        .hp-gap-12 {
            gap: 12px;
        }
        .hp-gap-16 {
            gap: 16px;
        }
        .hp-gap-20 {
            gap: 20px;
        }
        .hp-gap-24 {
            gap: 24px;
        }
        .hp-d-flex {
            display: flex;
        }
        .hp-flex-wrap {
            flex-wrap: wrap;
        }
        .hp-align-center {
            align-items: center;
        }
        .hp-justify-between {
            justify-content: space-between;
        }
        .hp-text-center {
            text-align: center;
        }
        @media (max-width: 768px) {
            :root {
                --hp-spacing-section: 56px;
                --hp-spacing-card-pad: 20px;
            }
            .hp-section-title {
                font-size: 24px;
            }
            .hp-container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

/* roulang page: category2 */
:root {
            --hp-primary: #D63D2A;
            --hp-primary-dark: #C63D2F;
            --hp-primary-light: #F8E8E4;
            --hp-secondary-dark: #17181C;
            --hp-secondary-cyan: #1FA8FF;
            --hp-secondary-lime: #D7FF3F;
            --hp-bg-warm: #F6F3EF;
            --hp-bg-card: #FFFFFF;
            --hp-text-main: #1E1F23;
            --hp-text-weak: #6B6F7A;
            --hp-border-light: #E8E4DD;
            --hp-border-hover: #D63D2A;
            --hp-radius-card: 24px;
            --hp-radius-badge: 14px;
            --hp-radius-btn: 999px;
            --hp-radius-input: 13px;
            --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
            --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
            --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
            --hp-spacing-section: 72px;
            --hp-spacing-card-pad: 28px;
            --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --hp-transition: 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--hp-font-family);
            color: var(--hp-text-main);
            background-color: var(--hp-bg-warm);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }
        a:hover {
            color: var(--hp-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .hp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .hp-section {
            padding-top: var(--hp-spacing-section);
            padding-bottom: var(--hp-spacing-section);
            position: relative;
        }
        .hp-section--dark {
            background-color: var(--hp-secondary-dark);
            color: #E8E6E1;
        }
        .hp-section--compact {
            padding-top: 48px;
            padding-bottom: 48px;
        }
        .hp-section--warm {
            background-color: var(--hp-bg-warm);
        }
        .hp-text-primary {
            color: var(--hp-primary) !important;
        }
        .hp-text-weak {
            color: var(--hp-text-weak);
        }
        .hp-text-light {
            color: #E8E6E1;
        }
        .hp-section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .hp-section-subtitle {
            font-size: 16px;
            color: var(--hp-text-weak);
            margin-bottom: 36px;
            max-width: 680px;
            line-height: 1.8;
        }
        .hp-section-head {
            margin-bottom: 28px;
        }
        .hp-section-head--center {
            text-align: center;
        }
        .hp-section-head--center .hp-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .hp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hp-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }
        .hp-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }
        .hp-badge--dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .hp-badge--outline {
            background: transparent;
            border: 1px solid var(--hp-border-light);
            color: var(--hp-text-weak);
        }

        .hp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--hp-radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .hp-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }
        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(214, 61, 42, 0.35);
            outline-offset: 2px;
        }
        .hp-btn-outline-dark {
            background: transparent;
            color: var(--hp-secondary-dark);
            border-color: var(--hp-secondary-dark);
        }
        .hp-btn-outline-dark:hover {
            background: rgba(23, 24, 28, 0.06);
            border-color: var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            transform: translateY(-2px);
        }
        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .hp-btn-sm {
            padding: 8px 18px;
            font-size: 14px;
        }

        /* Header & Navigation */
        .hp-header {
            background: #ffffff;
            border-bottom: 1px solid var(--hp-border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--hp-transition);
        }
        .hp-header.scrolled {
            box-shadow: 0 4px 20px rgba(20, 22, 26, 0.08);
        }
        .hp-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
            width: 100%;
        }
        .hp-header-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--hp-secondary-dark);
            white-space: nowrap;
        }
        .hp-header-logo:hover {
            color: var(--hp-primary);
        }
        .hp-header-logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-radius: 12px;
            font-size: 17px;
        }
        .hp-header-logo-text {
            letter-spacing: 0.02em;
        }
        .hp-nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hp-nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 8px 2px;
            font-size: 15px;
            font-weight: 500;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
            white-space: nowrap;
        }
        .hp-nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -4px;
            height: 2px;
            background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 999px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform var(--hp-transition);
        }
        .hp-nav-link:hover {
            color: var(--hp-primary);
        }
        .hp-nav-link:hover::after {
            transform: scaleX(1);
        }
        .hp-nav-link.active {
            color: var(--hp-primary);
            font-weight: 600;
        }
        .hp-nav-link.active::after {
            transform: scaleX(1);
        }
        .hp-nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }
        .hp-nav-btn-outline {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            font-size: 14px;
            font-weight: 600;
            border: 2px solid var(--hp-primary);
            color: var(--hp-primary);
            transition: all var(--hp-transition);
        }
        .hp-nav-btn-outline:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            transform: translateY(-1px);
        }
        .hp-nav-btn-primary {
            padding: 9px 22px;
            border-radius: var(--hp-radius-btn);
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
            transition: all var(--hp-transition);
        }
        .hp-nav-btn-primary:hover {
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }
        .hp-navbar-toggler {
            display: none;
            background: transparent;
            border: 1px solid var(--hp-border-light);
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-text-main);
            cursor: pointer;
            transition: all var(--hp-transition);
        }
        .hp-navbar-toggler:hover {
            background: var(--hp-primary-light);
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }
        .hp-mobile-menu {
            display: none;
            background: var(--hp-secondary-dark);
            border-radius: 0 0 20px 20px;
            padding: 16px 20px;
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 999;
        }
        .hp-mobile-menu.open {
            display: block;
        }
        .hp-mobile-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .hp-mobile-menu-list a {
            display: block;
            padding: 12px 14px;
            color: #E8E6E1;
            font-size: 15px;
            font-weight: 500;
            border-radius: 10px;
            transition: all var(--hp-transition);
        }
        .hp-mobile-menu-list a:hover,
        .hp-mobile-menu-list a.active {
            background: rgba(214, 61, 42, 0.18);
            color: var(--hp-primary);
        }

        /* Breadcrumb */
        .hp-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 14px;
            color: var(--hp-text-weak);
            padding: 20px 0;
            margin: 0;
            list-style: none;
        }
        .hp-breadcrumb a {
            color: var(--hp-text-weak);
            transition: color var(--hp-transition);
        }
        .hp-breadcrumb a:hover {
            color: var(--hp-primary);
        }
        .hp-breadcrumb .sep {
            color: var(--hp-border-light);
        }
        .hp-breadcrumb .current {
            color: var(--hp-primary);
            font-weight: 600;
        }

        /* Category Hero */
        .hp-cat-hero {
            background: linear-gradient(135deg, #1E1F23 0%, #2A2B30 55%, #3A2B28 100%);
            border-radius: var(--hp-radius-card);
            padding: 56px 48px;
            position: relative;
            overflow: hidden;
            color: #E8E6E1;
            box-shadow: var(--hp-shadow-default);
        }
        .hp-cat-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            pointer-events: none;
        }
        .hp-cat-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(23, 24, 28, 0.82) 0%, rgba(214, 61, 42, 0.28) 100%);
            pointer-events: none;
        }
        .hp-cat-hero > * {
            position: relative;
            z-index: 2;
        }
        .hp-cat-hero-title {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
            color: #fff;
        }
        .hp-cat-hero-subtitle {
            font-size: 16px;
            color: rgba(232, 230, 225, 0.85);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .hp-cat-hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
        }
        .hp-cat-hero-stat {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 14px 22px;
            min-width: 120px;
            text-align: center;
        }
        .hp-cat-hero-stat-num {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        .hp-cat-hero-stat-label {
            font-size: 13px;
            color: rgba(232, 230, 225, 0.7);
            margin-top: 4px;
        }

        /* Filter Bar */
        .hp-filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            background: #fff;
            border-radius: 18px;
            padding: 16px 24px;
            box-shadow: var(--hp-shadow-default);
            margin-top: -24px;
            position: relative;
            z-index: 5;
            border: 1px solid var(--hp-border-light);
        }
        .hp-filter-tabs {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .hp-filter-tab {
            padding: 9px 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--hp-border-light);
            background: #fff;
            color: var(--hp-text-weak);
            cursor: pointer;
            transition: all var(--hp-transition);
        }
        .hp-filter-tab:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
            background: var(--hp-primary-light);
        }
        .hp-filter-tab.active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-filter-search {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--hp-bg-warm);
            border-radius: 999px;
            padding: 6px 16px 6px 18px;
            border: 1px solid var(--hp-border-light);
            min-width: 220px;
        }
        .hp-filter-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: var(--hp-text-main);
            width: 100%;
        }
        .hp-filter-search i {
            color: var(--hp-text-weak);
            font-size: 14px;
        }

        /* Hot Topics Tags */
        .hp-topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .hp-topic-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            background: #fff;
            border: 1px solid var(--hp-border-light);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            color: var(--hp-text-weak);
            transition: all var(--hp-transition);
        }
        .hp-topic-tag:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
            background: var(--hp-primary-light);
        }
        .hp-topic-tag i {
            color: var(--hp-primary);
            font-size: 11px;
        }

        /* Post List Cards */
        .hp-post-card {
            background: #fff;
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            margin-bottom: 24px;
            transition: all var(--hp-transition);
            border: 1px solid var(--hp-border-light);
        }
        .hp-post-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.3);
        }
        .hp-post-card-img {
            flex: 0 0 260px;
            min-height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hp-post-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(23, 24, 28, 0.02) 60%, rgba(23, 24, 28, 0.35) 100%);
            pointer-events: none;
        }
        .hp-post-card-body {
            flex: 1;
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 14px;
        }
        .hp-post-card-top {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .hp-post-card-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--hp-text-main);
            margin: 0;
        }
        .hp-post-card-title a {
            color: inherit;
            transition: color var(--hp-transition);
        }
        .hp-post-card-title a:hover {
            color: var(--hp-primary);
        }
        .hp-post-card-summary {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hp-post-card-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--hp-text-weak);
        }
        .hp-post-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hp-post-card-meta i {
            color: var(--hp-primary);
            font-size: 13px;
        }
        .hp-post-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            border-top: 1px solid var(--hp-border-light);
            padding-top: 16px;
            margin-top: 4px;
        }
        .hp-post-card-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hp-post-card-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--hp-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hp-primary);
            font-weight: 700;
            font-size: 14px;
        }
        .hp-post-card-author-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-text-main);
        }
        .hp-post-card-time {
            font-size: 12px;
            color: var(--hp-text-weak);
        }

        /* Pagination */
        .hp-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 40px;
            list-style: none;
            padding: 0;
        }
        .hp-pagination a,
        .hp-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 14px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            background: #fff;
            border: 1px solid var(--hp-border-light);
            color: var(--hp-text-main);
            transition: all var(--hp-transition);
        }
        .hp-pagination a:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
            background: var(--hp-primary-light);
        }
        .hp-pagination .active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-pagination .disabled {
            opacity: 0.45;
            pointer-events: none;
        }

        /* New Post CTA */
        .hp-post-cta {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: var(--hp-radius-card);
            padding: 44px 40px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-post-cta-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 6px;
        }
        .hp-post-cta-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            max-width: 520px;
            line-height: 1.7;
        }

        /* Community Rules */
        .hp-rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .hp-rule-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid var(--hp-border-light);
            transition: all var(--hp-transition);
        }
        .hp-rule-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.3);
        }
        .hp-rule-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }
        .hp-rule-card h5 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .hp-rule-card p {
            font-size: 14px;
            color: var(--hp-text-weak);
            line-height: 1.75;
            margin: 0;
        }

        /* FAQ Accordion */
        .hp-faq-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            border: 1px solid var(--hp-border-light);
            transition: all var(--hp-transition);
        }
        .hp-faq-item:hover {
            border-color: rgba(214, 61, 42, 0.3);
        }
        .hp-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--hp-text-main);
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
            transition: all var(--hp-transition);
        }
        .hp-faq-question:hover {
            color: var(--hp-primary);
        }
        .hp-faq-question .icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--hp-bg-warm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--hp-primary);
            transition: transform var(--hp-transition);
        }
        .hp-faq-item.open .hp-faq-question .icon {
            transform: rotate(45deg);
            background: var(--hp-primary-light);
        }
        .hp-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
            color: var(--hp-text-weak);
            font-size: 15px;
            line-height: 1.8;
        }
        .hp-faq-item.open .hp-faq-answer {
            max-height: 400px;
            padding: 0 24px 20px;
        }

        /* Footer */
        .hp-footer {
            background: var(--hp-secondary-dark);
            color: #E8E6E1;
            padding: 60px 0 0;
        }
        .hp-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            margin-bottom: 16px;
        }
        .hp-footer-logo:hover {
            color: var(--hp-primary);
        }
        .hp-footer-desc {
            font-size: 14px;
            color: #98958D;
            line-height: 1.75;
            max-width: 320px;
            margin: 0;
        }
        .hp-footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .hp-footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hp-footer-links a {
            color: #98958D;
            font-size: 14px;
            transition: color var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: var(--hp-primary);
        }
        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 48px;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: #98958D;
        }
        .hp-footer-bottom a {
            color: #98958D;
            transition: color var(--hp-transition);
        }
        .hp-footer-bottom a:hover {
            color: var(--hp-primary);
        }
        .hp-footer-bottom .sep {
            margin: 0 6px;
            opacity: 0.4;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hp-nav-menu {
                gap: 20px;
            }
            .hp-nav-cta {
                display: none;
            }
            .hp-post-card-img {
                flex: 0 0 200px;
            }
            .hp-cat-hero {
                padding: 40px 32px;
            }
            .hp-cat-hero-title {
                font-size: 30px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --hp-spacing-section: 48px;
                --hp-spacing-card-pad: 20px;
            }
            .hp-nav-menu {
                display: none;
            }
            .hp-navbar-toggler {
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }
            .hp-post-card {
                flex-direction: column;
            }
            .hp-post-card-img {
                flex: 0 0 180px;
                min-height: 180px;
                width: 100%;
            }
            .hp-post-card-body {
                padding: 22px 20px 20px;
            }
            .hp-cat-hero {
                padding: 32px 24px;
                border-radius: 18px;
            }
            .hp-cat-hero-title {
                font-size: 26px;
            }
            .hp-cat-hero-subtitle {
                font-size: 15px;
            }
            .hp-post-cta {
                padding: 32px 24px;
                flex-direction: column;
                text-align: center;
            }
            .hp-post-cta-title {
                font-size: 20px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .hp-container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hp-cat-hero-stats {
                gap: 8px;
            }
            .hp-cat-hero-stat {
                min-width: 90px;
                padding: 10px 14px;
            }
            .hp-cat-hero-stat-num {
                font-size: 20px;
            }
            .hp-section-title {
                font-size: 24px;
            }
            .hp-filter-bar {
                flex-direction: column;
                align-items: stretch;
                padding: 14px 16px;
            }
            .hp-filter-tabs {
                justify-content: center;
            }
            .hp-filter-search {
                min-width: 100%;
            }
            .hp-post-card-title {
                font-size: 17px;
            }
        }

/* roulang page: category1 */
:root {
            --hp-primary: #D63D2A;
            --hp-primary-dark: #C63D2F;
            --hp-primary-light: #F8E8E4;
            --hp-secondary-dark: #17181C;
            --hp-secondary-cyan: #1FA8FF;
            --hp-secondary-lime: #D7FF3F;
            --hp-bg-warm: #F6F3EF;
            --hp-bg-card: #FFFFFF;
            --hp-text-main: #1E1F23;
            --hp-text-weak: #6B6F7A;
            --hp-border-light: #E8E4DD;
            --hp-border-hover: #D63D2A;
            --hp-radius-card: 24px;
            --hp-radius-badge: 14px;
            --hp-radius-btn: 999px;
            --hp-radius-input: 13px;
            --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
            --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
            --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
            --hp-spacing-section: 56px;
            --hp-spacing-card-pad: 20px;
            --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --hp-transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--hp-font-family);
            color: var(--hp-text-main);
            background-color: var(--hp-bg-warm);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }
        a:hover {
            color: var(--hp-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }
        .hp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .hp-section {
            padding-top: var(--hp-spacing-section);
            padding-bottom: var(--hp-spacing-section);
            position: relative;
        }
        .hp-section--dark {
            background-color: var(--hp-secondary-dark);
            color: #E8E6E1;
        }
        .hp-section--compact {
            padding-top: 36px;
            padding-bottom: 36px;
        }
        .hp-text-primary {
            color: var(--hp-primary) !important;
        }
        .hp-text-weak {
            color: var(--hp-text-weak);
        }
        .hp-text-light {
            color: #E8E6E1;
        }
        .hp-section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .hp-section-subtitle {
            font-size: 16px;
            color: var(--hp-text-weak);
            margin-bottom: 36px;
            max-width: 680px;
            line-height: 1.8;
        }
        .hp-section-head {
            margin-bottom: 28px;
        }
        .hp-section-head--center {
            text-align: center;
        }
        .hp-section-head--center .hp-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }
        .hp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hp-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }
        .hp-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }
        .hp-badge--dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .hp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--hp-radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .hp-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }
        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(214, 61, 42, 0.35);
            outline-offset: 2px;
        }
        .hp-btn-outline-dark {
            background: transparent;
            color: var(--hp-secondary-dark);
            border-color: var(--hp-secondary-dark);
        }
        .hp-btn-outline-dark:hover {
            background: rgba(23, 24, 28, 0.06);
            border-color: var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            transform: translateY(-2px);
        }
        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .hp-btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }
        .hp-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            transition: all var(--hp-transition);
            border: 1px solid var(--hp-border-light);
            overflow: hidden;
        }
        .hp-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--hp-shadow-hover);
            border-color: var(--hp-border-hover);
        }
        .hp-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--hp-border-light);
        }
        .hp-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 24px;
        }
        .hp-header-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: var(--hp-secondary-dark);
            white-space: nowrap;
        }
        .hp-header-logo:hover {
            color: var(--hp-primary);
        }
        .hp-header-logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-radius: 12px;
            font-size: 18px;
        }
        .hp-nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hp-nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--hp-text-main);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: color var(--hp-transition);
        }
        .hp-nav-link:hover {
            color: var(--hp-primary);
        }
        .hp-nav-link.active {
            color: var(--hp-primary);
            font-weight: 700;
        }
        .hp-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 99px;
        }
        .hp-nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hp-nav-btn-outline,
        .hp-nav-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: var(--hp-radius-btn);
            font-size: 13px;
            font-weight: 600;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            white-space: nowrap;
        }
        .hp-nav-btn-outline {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }
        .hp-nav-btn-outline:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
        }
        .hp-nav-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-nav-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-1px);
        }
        .hp-navbar-toggler {
            display: none;
            background: var(--hp-bg-card);
            border: 1px solid var(--hp-border-light);
            border-radius: 10px;
            padding: 6px 14px;
            font-size: 14px;
            color: var(--hp-text-main);
            cursor: pointer;
            transition: all var(--hp-transition);
        }
        .hp-navbar-toggler:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            border-color: var(--hp-primary);
        }
        .hp-mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--hp-secondary-dark);
            border-radius: 0 0 20px 20px;
            padding: 16px 24px 24px;
            z-index: 1049;
        }
        .hp-mobile-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .hp-mobile-menu-list a {
            color: #E8E6E1;
            font-size: 16px;
            padding: 10px 16px;
            border-radius: 12px;
            transition: all var(--hp-transition);
            display: block;
        }
        .hp-mobile-menu-list a:hover,
        .hp-mobile-menu-list a.active {
            background: rgba(214, 61, 42, 0.2);
            color: #fff;
        }
        .hp-breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 14px;
            color: var(--hp-text-weak);
        }
        .hp-breadcrumb a {
            color: var(--hp-text-weak);
        }
        .hp-breadcrumb a:hover {
            color: var(--hp-primary);
        }
        .hp-breadcrumb .breadcrumb-item.active {
            color: var(--hp-primary);
            font-weight: 600;
        }
        .hp-hero-banner {
            background: linear-gradient(135deg, var(--hp-secondary-dark) 0%, #3D1F1A 60%, var(--hp-primary-dark) 100%);
            border-radius: var(--hp-radius-card);
            padding: 48px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .hp-hero-banner::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 60%;
            height: 180%;
            background: radial-gradient(circle at center, rgba(214, 61, 42, 0.35) 0%, transparent 70%);
            pointer-events: none;
        }
        .hp-hero-banner .hp-banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            pointer-events: none;
            border-radius: var(--hp-radius-card);
        }
        .hp-hero-banner-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }
        .hp-hero-banner h1 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .hp-hero-banner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
            max-width: 620px;
        }
        .hp-filter-bar {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            padding: 20px 24px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid var(--hp-border-light);
            margin-bottom: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            align-items: center;
        }
        .hp-filter-bar .form-select,
        .hp-filter-bar .form-control {
            border-radius: var(--hp-radius-input);
            border: 1px solid var(--hp-border-light);
            font-size: 14px;
            padding: 10px 16px;
            background: var(--hp-bg-warm);
            color: var(--hp-text-main);
            transition: all var(--hp-transition);
        }
        .hp-filter-bar .form-select:focus,
        .hp-filter-bar .form-control:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 3px rgba(214, 61, 42, 0.12);
            background: #fff;
        }
        .hp-data-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            border: 1px solid var(--hp-border-light);
            padding: 24px;
            margin-bottom: 20px;
            transition: all var(--hp-transition);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hp-data-card:hover {
            box-shadow: var(--hp-shadow-hover);
            border-color: var(--hp-border-hover);
            transform: translateY(-3px);
        }
        .hp-match-teams {
            flex: 2;
            min-width: 260px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .hp-match-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
            text-align: center;
        }
        .hp-match-team-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--hp-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: var(--hp-primary);
        }
        .hp-match-team-name {
            font-size: 15px;
            font-weight: 600;
        }
        .hp-match-score {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 0.04em;
            min-width: 80px;
            text-align: center;
            color: var(--hp-secondary-dark);
        }
        .hp-match-meta {
            flex: 1.5;
            min-width: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }
        .hp-match-meta-item {
            font-size: 14px;
            color: var(--hp-text-weak);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hp-match-meta-item i {
            color: var(--hp-primary);
            width: 16px;
            text-align: center;
        }
        .hp-stat-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hp-stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
        }
        .hp-stat-badge--dark {
            background: var(--hp-secondary-dark);
            color: #fff;
        }
        .hp-stat-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }
        .hp-stat-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }
        .hp-deep-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            border: 1px solid var(--hp-border-light);
            padding: 32px;
            margin-bottom: 28px;
        }
        .hp-deep-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .hp-deep-card p {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.9;
            margin-bottom: 16px;
        }
        .hp-deep-card p:last-child {
            margin-bottom: 0;
        }
        .hp-accordion-item {
            border: 1px solid var(--hp-border-light);
            border-radius: 16px !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--hp-bg-card);
        }
        .hp-accordion-button {
            background: var(--hp-bg-card);
            color: var(--hp-text-main);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 20px;
            border: none;
            box-shadow: none !important;
            border-radius: 16px !important;
            cursor: pointer;
            transition: all var(--hp-transition);
        }
        .hp-accordion-button:not(.collapsed) {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
        }
        .hp-accordion-button:focus {
            box-shadow: none;
        }
        .hp-accordion-button::after {
            filter: brightness(0) saturate(100%) invert(45%) sepia(45%) saturate(3000%) hue-rotate(340deg);
        }
        .hp-accordion-body {
            padding: 16px 20px 20px;
            font-size: 14px;
            color: var(--hp-text-weak);
            line-height: 1.85;
        }
        .hp-pagination {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .hp-pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            background: var(--hp-bg-card);
            border: 1px solid var(--hp-border-light);
            color: var(--hp-text-main);
            transition: all var(--hp-transition);
            cursor: pointer;
        }
        .hp-pagination-btn:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
            background: var(--hp-primary-light);
        }
        .hp-pagination-btn.active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-cta-card {
            background: linear-gradient(135deg, var(--hp-secondary-dark) 0%, #4A2A24 50%, var(--hp-primary-dark) 100%);
            border-radius: var(--hp-radius-card);
            padding: 48px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hp-cta-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .hp-cta-card p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
            max-width: 560px;
        }
        .hp-footer {
            background: var(--hp-secondary-dark);
            color: #E8E6E1;
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .hp-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .hp-footer-logo:hover {
            color: #fff;
        }
        .hp-footer-desc {
            font-size: 14px;
            color: #98958D;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .hp-footer-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }
        .hp-footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hp-footer-links a {
            color: #98958D;
            font-size: 14px;
            transition: color var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: var(--hp-primary);
        }
        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #98958D;
        }
        .hp-footer-bottom a {
            color: #98958D;
        }
        .hp-footer-bottom a:hover {
            color: var(--hp-primary);
        }
        .hp-footer-bottom .sep {
            margin: 0 8px;
            color: #4A4D55;
        }
        @media (max-width: 991.98px) {
            .hp-nav-menu {
                gap: 16px;
            }
            .hp-nav-cta {
                display: none;
            }
            .hp-hero-banner h1 {
                font-size: 30px;
            }
        }
        @media (max-width: 767.98px) {
            .hp-navbar {
                flex-wrap: nowrap;
                min-height: 60px;
                gap: 12px;
            }
            .hp-header-logo-text {
                font-size: 18px;
            }
            .hp-header-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }
            .hp-nav-menu {
                display: none;
            }
            .hp-navbar-toggler {
                display: inline-flex;
                align-items: center;
                gap: 4px;
            }
            .hp-mobile-menu {
                display: block;
            }
            .hp-hero-banner {
                padding: 28px 20px;
                border-radius: 20px;
            }
            .hp-hero-banner h1 {
                font-size: 26px;
            }
            .hp-hero-banner p {
                font-size: 14px;
            }
            .hp-section-title {
                font-size: 24px;
            }
            .hp-filter-bar {
                padding: 16px;
                gap: 12px;
            }
            .hp-data-card {
                padding: 18px;
                flex-direction: column;
            }
            .hp-match-teams {
                width: 100%;
            }
            .hp-match-score {
                font-size: 26px;
                min-width: 60px;
            }
            .hp-deep-card {
                padding: 20px;
            }
            .hp-cta-card {
                padding: 28px 20px;
            }
            .hp-cta-card h3 {
                font-size: 24px;
            }
            .hp-footer {
                padding: 32px 0 20px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }
        @media (max-width: 575.98px) {
            .hp-container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hp-hero-banner h1 {
                font-size: 22px;
            }
            .hp-section {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            .hp-match-team-avatar {
                width: 42px;
                height: 42px;
                font-size: 15px;
            }
            .hp-match-score {
                font-size: 22px;
                min-width: 50px;
            }
            .hp-stat-badge-row {
                gap: 6px;
            }
            .hp-stat-badge {
                font-size: 11px;
                padding: 4px 8px;
            }
        }

/* roulang page: category3 */
:root {
            --hp-primary: #D63D2A;
            --hp-primary-dark: #C63D2F;
            --hp-primary-light: #F8E8E4;
            --hp-secondary-dark: #17181C;
            --hp-secondary-cyan: #1FA8FF;
            --hp-secondary-lime: #D7FF3F;
            --hp-bg-warm: #F6F3EF;
            --hp-bg-card: #FFFFFF;
            --hp-text-main: #1E1F23;
            --hp-text-weak: #6B6F7A;
            --hp-border-light: #E8E4DD;
            --hp-border-hover: #D63D2A;
            --hp-radius-card: 24px;
            --hp-radius-badge: 14px;
            --hp-radius-btn: 999px;
            --hp-radius-input: 13px;
            --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
            --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
            --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
            --hp-spacing-section: 80px;
            --hp-spacing-card-pad: 28px;
            --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --hp-transition: 0.25s ease;
        }

        @media (max-width: 576px) {
            :root {
                --hp-spacing-section: 56px;
                --hp-spacing-card-pad: 20px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--hp-font-family);
            color: var(--hp-text-main);
            background-color: var(--hp-bg-warm);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }

        a:hover {
            color: var(--hp-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .hp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .hp-section {
            padding-top: var(--hp-spacing-section);
            padding-bottom: var(--hp-spacing-section);
            position: relative;
        }

        .hp-section--dark {
            background-color: var(--hp-secondary-dark);
            color: #E8E6E1;
        }

        .hp-section--compact {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .hp-text-primary {
            color: var(--hp-primary) !important;
        }

        .hp-text-weak {
            color: var(--hp-text-weak);
        }

        .hp-text-light {
            color: #E8E6E1;
        }

        .hp-section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .hp-section-subtitle {
            font-size: 16px;
            color: var(--hp-text-weak);
            margin-bottom: 36px;
            max-width: 680px;
            line-height: 1.8;
        }

        .hp-section-head {
            margin-bottom: 28px;
        }

        .hp-section-head--center {
            text-align: center;
        }

        .hp-section-head--center .hp-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .hp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .hp-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }

        .hp-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }

        .hp-badge--dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .hp-badge--green {
            background: rgba(34, 197, 94, 0.12);
            color: #15803D;
        }

        .hp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--hp-radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .hp-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }

        .hp-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }

        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(214, 61, 42, 0.35);
            outline-offset: 2px;
        }

        .hp-btn-outline-dark {
            background: transparent;
            color: var(--hp-secondary-dark);
            border-color: var(--hp-secondary-dark);
        }

        .hp-btn-outline-dark:hover {
            background: rgba(23, 24, 28, 0.06);
            border-color: var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            transform: translateY(-2px);
        }

        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .hp-btn-light {
            background: #fff;
            color: var(--hp-primary);
            border-color: #fff;
        }

        .hp-btn-light:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary-dark);
            transform: translateY(-2px);
        }

        /* Header & Navigation */
        .hp-header {
            background: rgba(246, 243, 239, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--hp-border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--hp-transition), background-color var(--hp-transition);
        }

        .hp-header.scrolled {
            box-shadow: 0 8px 30px rgba(20, 22, 26, 0.08);
            background: rgba(246, 243, 239, 0.98);
        }

        .hp-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 24px;
            position: relative;
        }

        .hp-header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--hp-text-main);
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.01em;
            flex-shrink: 0;
        }

        .hp-header-logo:hover {
            color: var(--hp-primary);
        }

        .hp-header-logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 14px;
            color: #fff;
            font-size: 18px;
            box-shadow: var(--hp-shadow-brand);
        }

        .hp-nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 28px;
        }

        .hp-nav-link {
            display: inline-flex;
            align-items: center;
            position: relative;
            padding: 8px 2px;
            font-weight: 500;
            font-size: 15px;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
            letter-spacing: 0.01em;
        }

        .hp-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 2px;
            transition: width var(--hp-transition);
        }

        .hp-nav-link:hover::after,
        .hp-nav-link.active::after {
            width: 100%;
        }

        .hp-nav-link:hover {
            color: var(--hp-primary);
        }

        .hp-nav-link.active {
            color: var(--hp-primary);
            font-weight: 600;
        }

        .hp-nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .hp-nav-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            border: 2px solid var(--hp-primary);
            color: var(--hp-primary);
            font-weight: 600;
            font-size: 14px;
            transition: all var(--hp-transition);
            white-space: nowrap;
        }

        .hp-nav-btn-outline:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary-dark);
            transform: translateY(-1px);
        }

        .hp-nav-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            box-shadow: var(--hp-shadow-brand);
            transition: all var(--hp-transition);
            white-space: nowrap;
        }

        .hp-nav-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(214, 61, 42, 0.3);
        }

        .hp-navbar-toggler {
            display: none;
            background: var(--hp-primary-light);
            border: none;
            color: var(--hp-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--hp-radius-btn);
            cursor: pointer;
            align-items: center;
            gap: 6px;
        }

        .hp-mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--hp-secondary-dark);
            border-radius: 0 0 20px 20px;
            padding: 20px 24px;
            box-shadow: 0 16px 40px rgba(20, 22, 26, 0.16);
            z-index: 1001;
        }

        .hp-mobile-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hp-mobile-menu-list a {
            display: block;
            padding: 12px 16px;
            color: #E8E6E1;
            font-size: 16px;
            font-weight: 500;
            border-radius: 12px;
            transition: all var(--hp-transition);
        }

        .hp-mobile-menu-list a:hover,
        .hp-mobile-menu-list a.active {
            background: rgba(214, 61, 42, 0.2);
            color: var(--hp-primary);
            font-weight: 600;
        }

        /* Breadcrumb */
        .hp-breadcrumb-wrapper {
            background: var(--hp-bg-warm);
            padding: 18px 0;
            border-bottom: 1px solid var(--hp-border-light);
        }

        .hp-breadcrumb {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--hp-text-weak);
        }

        .hp-breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hp-breadcrumb li:not(:last-child)::after {
            content: '/';
            color: var(--hp-border-light);
            font-size: 13px;
        }

        .hp-breadcrumb a {
            color: var(--hp-text-weak);
            transition: color var(--hp-transition);
        }

        .hp-breadcrumb a:hover {
            color: var(--hp-primary);
        }

        .hp-breadcrumb .current {
            color: var(--hp-primary);
            font-weight: 600;
        }

        /* Category Hero */
        .hp-category-hero {
            background: linear-gradient(150deg, #17181C 0%, #2A1F1C 40%, #3D1D15 75%, #C63D2F 100%);
            padding: 72px 0 60px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .hp-category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.16;
            pointer-events: none;
        }

        .hp-category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(23, 24, 28, 0.75) 0%, rgba(63, 29, 21, 0.5) 60%, rgba(198, 61, 47, 0.35) 100%);
            pointer-events: none;
        }

        .hp-category-hero .hp-container {
            position: relative;
            z-index: 1;
        }

        .hp-category-hero-title {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #fff;
        }

        .hp-category-hero-desc {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 680px;
            line-height: 1.85;
            margin-bottom: 24px;
        }

        .hp-category-hero-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hp-hero-stat {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--hp-radius-badge);
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .hp-hero-stat strong {
            font-weight: 700;
            color: var(--hp-secondary-lime);
            font-size: 16px;
        }

        /* Filter Bar */
        .hp-filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hp-filter-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hp-filter-tab {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            background: var(--hp-bg-card);
            border: 1px solid var(--hp-border-light);
            color: var(--hp-text-main);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--hp-transition);
            white-space: nowrap;
        }

        .hp-filter-tab:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }

        .hp-filter-tab.active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: var(--hp-primary);
            box-shadow: var(--hp-shadow-brand);
        }

        .hp-filter-sort {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--hp-text-weak);
        }

        .hp-filter-sort select {
            padding: 9px 16px;
            border-radius: var(--hp-radius-input);
            border: 1px solid var(--hp-border-light);
            background: var(--hp-bg-card);
            font-size: 14px;
            color: var(--hp-text-main);
            cursor: pointer;
            outline: none;
            transition: border-color var(--hp-transition);
        }

        .hp-filter-sort select:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 3px rgba(214, 61, 42, 0.12);
        }

        /* Archive Card */
        .hp-archive-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .hp-archive-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            overflow: hidden;
            transition: all var(--hp-transition);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--hp-border-light);
        }

        .hp-archive-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
            border-color: var(--hp-primary);
        }

        .hp-archive-card-img-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #E8E6E1;
        }

        .hp-archive-card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--hp-transition);
        }

        .hp-archive-card:hover .hp-archive-card-img-wrapper img {
            transform: scale(1.04);
        }

        .hp-archive-card-img-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(23, 24, 28, 0.75);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: var(--hp-radius-badge);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hp-archive-card-body {
            padding: 24px 28px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .hp-archive-card-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 8px;
            color: var(--hp-text-main);
        }

        .hp-archive-card-title a {
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }

        .hp-archive-card-title a:hover {
            color: var(--hp-primary);
        }

        .hp-archive-card-subtitle {
            font-size: 14px;
            color: var(--hp-text-weak);
            margin-bottom: 14px;
        }

        .hp-archive-card-desc {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            margin-bottom: 16px;
            flex: 1;
        }

        .hp-archive-card-stats {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .hp-stat-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-bg-warm);
            border-radius: 10px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--hp-text-main);
        }

        .hp-stat-pill strong {
            color: var(--hp-primary);
            font-size: 15px;
        }

        .hp-stat-pill--cyan strong {
            color: #0B8AD1;
        }

        .hp-stat-pill--green strong {
            color: #15803D;
        }

        .hp-archive-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-primary);
            transition: all var(--hp-transition);
            align-self: flex-start;
        }

        .hp-archive-card-link:hover {
            color: var(--hp-primary-dark);
            gap: 10px;
        }

        /* Deep content */
        .hp-deep-content {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            padding: 36px 40px;
            box-shadow: var(--hp-shadow-default);
            border: 1px solid var(--hp-border-light);
            margin-bottom: 28px;
        }

        .hp-deep-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.35;
        }

        .hp-deep-content p {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .hp-deep-content p:last-of-type {
            margin-bottom: 0;
        }

        .hp-deep-content strong {
            color: var(--hp-text-main);
        }

        /* FAQ */
        .hp-faq-wrapper {
            max-width: 820px;
            margin: 0 auto;
        }

        .hp-accordion-item {
            background: var(--hp-bg-card);
            border-radius: 16px;
            border: 1px solid var(--hp-border-light);
            margin-bottom: 14px;
            overflow: hidden;
            transition: all var(--hp-transition);
        }

        .hp-accordion-item:hover {
            border-color: #D0CBC3;
        }

        .hp-accordion-button {
            background: var(--hp-bg-card);
            border: none;
            width: 100%;
            padding: 20px 24px;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--hp-text-main);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            transition: all var(--hp-transition);
        }

        .hp-accordion-button:hover {
            background: var(--hp-bg-warm);
        }

        .hp-accordion-button .icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            border-radius: 50%;
            font-size: 14px;
            transition: transform var(--hp-transition);
        }

        .hp-accordion-button.collapsed .icon {
            transform: rotate(0deg);
        }

        .hp-accordion-button:not(.collapsed) .icon {
            transform: rotate(45deg);
        }

        .hp-accordion-body {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.85;
        }

        /* CTA */
        .hp-cta-panel {
            background: linear-gradient(135deg, var(--hp-secondary-dark) 0%, #2A1F1C 50%, #3D1D15 100%);
            border-radius: var(--hp-radius-card);
            padding: 48px 44px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--hp-shadow-hover);
        }

        .hp-cta-panel::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(214, 61, 42, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hp-cta-panel h3 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .hp-cta-panel p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
            max-width: 560px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .hp-cta-panel .hp-btn {
            position: relative;
            z-index: 1;
        }

        /* Pagination */
        .hp-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 36px;
            list-style: none;
            padding: 0;
        }

        .hp-pagination a,
        .hp-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border-radius: 12px;
            background: var(--hp-bg-card);
            border: 1px solid var(--hp-border-light);
            font-size: 14px;
            font-weight: 500;
            color: var(--hp-text-main);
            transition: all var(--hp-transition);
        }

        .hp-pagination a:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }

        .hp-pagination .active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: var(--hp-primary);
            box-shadow: var(--hp-shadow-brand);
        }

        .hp-pagination .disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* Footer */
        .hp-footer {
            background: var(--hp-secondary-dark);
            color: #98958D;
            padding: 56px 0 28px;
            margin-top: 0;
        }

        .hp-footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 14px;
        }

        .hp-footer-logo:hover {
            color: var(--hp-primary);
        }

        .hp-footer-logo .hp-header-logo-icon {
            width: 36px;
            height: 36px;
            font-size: 16px;
            border-radius: 12px;
        }

        .hp-footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #98958D;
            margin-bottom: 0;
        }

        .hp-footer-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .hp-footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hp-footer-links a {
            color: #98958D;
            font-size: 14px;
            transition: color var(--hp-transition);
        }

        .hp-footer-links a:hover {
            color: var(--hp-primary);
        }

        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: #98958D;
        }

        .hp-footer-bottom a {
            color: #98958D;
        }

        .hp-footer-bottom a:hover {
            color: var(--hp-primary);
        }

        .hp-footer-bottom .sep {
            margin: 0 8px;
            opacity: 0.4;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hp-archive-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hp-category-hero-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hp-nav-menu {
                display: none;
            }
            .hp-navbar-toggler {
                display: inline-flex;
            }
            .hp-mobile-menu {
                display: none;
            }
            .hp-mobile-menu.open {
                display: block;
            }
            .hp-nav-cta .hp-nav-btn-outline {
                display: none;
            }
            .hp-archive-grid {
                grid-template-columns: 1fr;
            }
            .hp-category-hero-title {
                font-size: 32px;
            }
            .hp-category-hero-desc {
                font-size: 15px;
            }
            .hp-deep-content {
                padding: 28px 24px;
            }
            .hp-cta-panel {
                padding: 36px 28px;
            }
            .hp-filter-bar {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .hp-navbar {
                min-height: 64px;
                gap: 12px;
            }
            .hp-header-logo-text {
                font-size: 18px;
            }
            .hp-nav-btn-primary {
                padding: 8px 14px;
                font-size: 13px;
            }
            .hp-category-hero {
                padding: 48px 0 40px;
            }
            .hp-category-hero-title {
                font-size: 28px;
            }
            .hp-hero-stat {
                padding: 6px 14px;
                font-size: 12px;
            }
            .hp-archive-card-body {
                padding: 20px 20px 22px;
            }
            .hp-archive-card-title {
                font-size: 18px;
            }
            .hp-archive-card-desc {
                font-size: 14px;
            }
            .hp-stat-pill {
                padding: 5px 10px;
                font-size: 12px;
            }
            .hp-deep-content h3 {
                font-size: 19px;
            }
            .hp-cta-panel h3 {
                font-size: 22px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .hp-pagination a,
            .hp-pagination span {
                min-width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }

        @media (max-width: 400px) {
            .hp-nav-btn-primary {
                padding: 7px 12px;
                font-size: 12px;
            }
            .hp-category-hero-title {
                font-size: 24px;
            }
        }

/* roulang page: category4 */
:root {
        --hp-primary: #D63D2A;
        --hp-primary-dark: #C63D2F;
        --hp-primary-light: #F8E8E4;
        --hp-secondary-dark: #17181C;
        --hp-secondary-cyan: #1FA8FF;
        --hp-secondary-lime: #D7FF3F;
        --hp-bg-warm: #F6F3EF;
        --hp-bg-card: #FFFFFF;
        --hp-text-main: #1E1F23;
        --hp-text-weak: #6B6F7A;
        --hp-border-light: #E8E4DD;
        --hp-border-hover: #D63D2A;
        --hp-radius-card: 24px;
        --hp-radius-badge: 14px;
        --hp-radius-btn: 999px;
        --hp-radius-input: 13px;
        --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
        --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
        --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
        --hp-spacing-section: 80px;
        --hp-spacing-card-pad: 28px;
        --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
        --hp-transition: 0.25s ease;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--hp-font-family);
        color: var(--hp-text-main);
        background-color: var(--hp-bg-warm);
        line-height: 1.75;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }
    a {
        text-decoration: none;
        color: var(--hp-text-main);
        transition: color var(--hp-transition);
    }
    a:hover {
        color: var(--hp-primary);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }
    button,
    input,
    textarea,
    select {
        font-family: inherit;
    }
    .hp-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
    }
    .hp-section {
        padding-top: var(--hp-spacing-section);
        padding-bottom: var(--hp-spacing-section);
        position: relative;
    }
    .hp-section--dark {
        background-color: var(--hp-secondary-dark);
        color: #E8E6E1;
    }
    .hp-section--compact {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .hp-section--white {
        background-color: #fff;
    }
    .hp-text-primary {
        color: var(--hp-primary) !important;
    }
    .hp-text-weak {
        color: var(--hp-text-weak);
    }
    .hp-text-light {
        color: #E8E6E1;
    }
    .hp-section-title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }
    .hp-section-subtitle {
        font-size: 16px;
        color: var(--hp-text-weak);
        margin-bottom: 36px;
        max-width: 680px;
        line-height: 1.8;
    }
    .hp-section-head {
        margin-bottom: 28px;
    }
    .hp-section-head--center {
        text-align: center;
    }
    .hp-section-head--center .hp-section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hp-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--hp-primary-light);
        color: var(--hp-primary);
        font-size: 13px;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: var(--hp-radius-badge);
        white-space: nowrap;
        letter-spacing: 0.02em;
    }
    .hp-badge--cyan {
        background: rgba(31, 168, 255, 0.12);
        color: #0B8AD1;
    }
    .hp-badge--lime {
        background: rgba(215, 255, 63, 0.25);
        color: #4F6D00;
    }
    .hp-badge--dark {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .hp-badge--gold {
        background: rgba(255, 170, 0, 0.15);
        color: #B87300;
    }
    .hp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: var(--hp-radius-btn);
        font-weight: 600;
        font-size: 15px;
        border: 2px solid transparent;
        transition: all var(--hp-transition);
        cursor: pointer;
        line-height: 1.5;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }
    .hp-btn-primary {
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        box-shadow: var(--hp-shadow-brand);
    }
    .hp-btn-primary:hover {
        background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
    }
    .hp-btn-primary:focus-visible {
        outline: 3px solid rgba(214, 61, 42, 0.35);
        outline-offset: 2px;
    }
    .hp-btn-outline-dark {
        background: transparent;
        color: var(--hp-secondary-dark);
        border-color: var(--hp-secondary-dark);
    }
    .hp-btn-outline-dark:hover {
        background: rgba(23, 24, 28, 0.06);
        border-color: var(--hp-secondary-dark);
        color: var(--hp-secondary-dark);
        transform: translateY(-2px);
    }
    .hp-btn-outline-light {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.6);
    }
    .hp-btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: #fff;
        color: #fff;
        transform: translateY(-2px);
    }
    /* Header */
    .hp-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--hp-border-light);
        transition: box-shadow var(--hp-transition);
    }
    .hp-header.scrolled {
        box-shadow: 0 4px 24px rgba(20, 22, 26, 0.08);
    }
    .hp-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        gap: 24px;
        flex-wrap: wrap;
    }
    .hp-header-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--hp-text-main);
        font-weight: 700;
        font-size: 20px;
        letter-spacing: -0.01em;
        flex-shrink: 0;
    }
    .hp-header-logo:hover {
        color: var(--hp-primary);
    }
    .hp-header-logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    .hp-nav-menu {
        display: flex;
        align-items: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
    .hp-nav-link {
        position: relative;
        font-size: 15px;
        font-weight: 500;
        color: var(--hp-text-main);
        padding: 8px 0;
        transition: color var(--hp-transition);
    }
    .hp-nav-link:hover {
        color: var(--hp-primary);
    }
    .hp-nav-link.active {
        color: var(--hp-primary);
        font-weight: 600;
    }
    .hp-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        border-radius: 2px;
    }
    .hp-nav-cta {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    .hp-nav-btn-outline {
        padding: 9px 18px;
        border-radius: var(--hp-radius-btn);
        border: 2px solid var(--hp-primary);
        color: var(--hp-primary);
        font-size: 14px;
        font-weight: 600;
        transition: all var(--hp-transition);
        background: transparent;
    }
    .hp-nav-btn-outline:hover {
        background: rgba(214, 61, 42, 0.06);
        color: var(--hp-primary);
        transform: translateY(-1px);
    }
    .hp-nav-btn-primary {
        padding: 9px 18px;
        border-radius: var(--hp-radius-btn);
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border: none;
        transition: all var(--hp-transition);
        box-shadow: var(--hp-shadow-brand);
    }
    .hp-nav-btn-primary:hover {
        background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
        color: #fff;
        transform: translateY(-1px);
    }
    .hp-navbar-toggler {
        display: none;
        background: transparent;
        border: 2px solid var(--hp-border-light);
        border-radius: 10px;
        padding: 8px 14px;
        font-size: 14px;
        color: var(--hp-text-main);
        cursor: pointer;
        transition: all var(--hp-transition);
    }
    .hp-navbar-toggler:hover {
        border-color: var(--hp-primary);
        color: var(--hp-primary);
    }
    .hp-mobile-menu {
        display: none;
        background: var(--hp-secondary-dark);
        border-radius: 16px;
        padding: 16px;
        width: 100%;
        margin-top: 8px;
    }
    .hp-mobile-menu.open {
        display: block;
    }
    .hp-mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .hp-mobile-menu-list a {
        color: #E8E6E1;
        font-size: 15px;
        padding: 10px 14px;
        border-radius: 10px;
        display: block;
        transition: all var(--hp-transition);
    }
    .hp-mobile-menu-list a:hover,
    .hp-mobile-menu-list a.active {
        background: rgba(214, 61, 42, 0.2);
        color: #fff;
    }
    /* Breadcrumb */
    .hp-breadcrumb-wrap {
        background: transparent;
        padding: 24px 0 0;
    }
    .hp-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--hp-text-weak);
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
    .hp-breadcrumb li {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .hp-breadcrumb li:not(:last-child)::after {
        content: '/';
        color: var(--hp-text-weak);
        opacity: 0.6;
    }
    .hp-breadcrumb a {
        color: var(--hp-text-weak);
        transition: color var(--hp-transition);
    }
    .hp-breadcrumb a:hover {
        color: var(--hp-primary);
    }
    .hp-breadcrumb .active {
        color: var(--hp-primary);
        font-weight: 600;
    }
    /* Hero */
    .hp-page-hero {
        background: linear-gradient(135deg, var(--hp-secondary-dark) 0%, #2A241F 100%);
        color: #fff;
        padding: 64px 0;
        position: relative;
        overflow: hidden;
    }
    .hp-page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/assets/images/backpic/back-2.webp');
        background-size: cover;
        background-position: center;
        opacity: 0.35;
        z-index: 0;
    }
    .hp-page-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(23, 24, 28, 0.85) 0%, rgba(214, 61, 42, 0.6) 100%);
        z-index: 1;
    }
    .hp-page-hero .hp-container {
        position: relative;
        z-index: 2;
    }
    .hp-page-hero h1 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }
    .hp-page-hero p {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.85);
        max-width: 780px;
        line-height: 1.8;
        margin-bottom: 24px;
    }
    .hp-hero-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    .hp-hero-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    /* Filter bar */
    .hp-filter-bar {
        background: #fff;
        border-radius: 20px;
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        box-shadow: var(--hp-shadow-default);
        margin-top: -28px;
        position: relative;
        z-index: 5;
    }
    .hp-filter-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .hp-filter-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--hp-text-weak);
        white-space: nowrap;
    }
    .hp-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: var(--hp-radius-btn);
        font-size: 13px;
        font-weight: 500;
        border: 1px solid var(--hp-border-light);
        background: #fff;
        color: var(--hp-text-main);
        cursor: pointer;
        transition: all var(--hp-transition);
    }
    .hp-filter-btn:hover {
        border-color: var(--hp-primary);
        color: var(--hp-primary);
    }
    .hp-filter-btn.active {
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: var(--hp-shadow-brand);
    }
    .hp-filter-right {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--hp-text-weak);
    }
    /* Review card */
    .hp-review-card {
        background: #fff;
        border-radius: var(--hp-radius-card);
        box-shadow: var(--hp-shadow-default);
        overflow: hidden;
        transition: all var(--hp-transition);
        margin-bottom: 24px;
        border: 2px solid transparent;
    }
    .hp-review-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--hp-shadow-hover);
        border-color: rgba(214, 61, 42, 0.25);
    }
    .hp-review-card-inner {
        display: flex;
        align-items: stretch;
    }
    .hp-review-img {
        width: 32%;
        min-height: 220px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }
    .hp-review-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hp-review-content {
        flex: 1;
        padding: 26px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .hp-review-top {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .hp-review-title {
        font-size: 21px;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 10px;
        color: var(--hp-text-main);
        letter-spacing: -0.01em;
    }
    .hp-review-summary {
        font-size: 15px;
        color: var(--hp-text-weak);
        line-height: 1.8;
        margin-bottom: 16px;
    }
    .hp-review-footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    .hp-review-stats {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 13px;
        color: var(--hp-text-weak);
    }
    .hp-review-stats span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .hp-score-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        padding: 6px 14px;
        border-radius: 14px;
        letter-spacing: 0.02em;
        box-shadow: var(--hp-shadow-brand);
    }
    .hp-score-badge--high {
        background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
    }
    .hp-score-badge--medium {
        background: linear-gradient(135deg, #FF8C42 0%, #E06A30 100%);
    }
    /* Deep content */
    .hp-deep-card {
        background: #fff;
        border-radius: var(--hp-radius-card);
        padding: 36px;
        box-shadow: var(--hp-shadow-default);
        margin-bottom: 32px;
        border: 1px solid var(--hp-border-light);
    }
    .hp-deep-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--hp-text-main);
        letter-spacing: -0.01em;
    }
    .hp-deep-card p {
        font-size: 15px;
        color: var(--hp-text-weak);
        line-height: 1.9;
        margin-bottom: 16px;
    }
    .hp-deep-card p:last-child {
        margin-bottom: 0;
    }
    .hp-deep-card ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 16px;
    }
    .hp-deep-card ul li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 8px;
        font-size: 15px;
        color: var(--hp-text-weak);
        line-height: 1.7;
    }
    .hp-deep-card ul li::before {
        content: '●';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--hp-primary);
        font-size: 12px;
    }
    /* FAQ */
    .hp-accordion .accordion-item {
        border: 1px solid var(--hp-border-light);
        border-radius: 16px !important;
        margin-bottom: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 10px rgba(20, 22, 26, 0.03);
    }
    .hp-accordion .accordion-button {
        background: #fff;
        font-size: 16px;
        font-weight: 600;
        color: var(--hp-text-main);
        padding: 18px 24px;
        border-radius: 16px !important;
        transition: all var(--hp-transition);
        box-shadow: none;
    }
    .hp-accordion .accordion-button:not(.collapsed) {
        background: var(--hp-primary-light);
        color: var(--hp-primary);
        box-shadow: none;
    }
    .hp-accordion .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(214, 61, 42, 0.2);
        border-color: var(--hp-primary);
    }
    .hp-accordion .accordion-button::after {
        background-size: 16px;
        transition: transform var(--hp-transition);
    }
    .hp-accordion .accordion-body {
        padding: 16px 24px 20px;
        font-size: 15px;
        color: var(--hp-text-weak);
        line-height: 1.8;
    }
    /* CTA */
    .hp-cta-box {
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        border-radius: 28px;
        padding: 48px 40px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        box-shadow: var(--hp-shadow-brand);
        position: relative;
        overflow: hidden;
    }
    .hp-cta-box::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }
    .hp-cta-box::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -30px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
    }
    .hp-cta-box h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -0.01em;
        position: relative;
        z-index: 2;
    }
    .hp-cta-box p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }
    .hp-cta-box .hp-btn {
        position: relative;
        z-index: 2;
    }
    .hp-btn-light {
        background: #fff;
        color: var(--hp-primary);
        border: none;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .hp-btn-light:hover {
        background: rgba(255, 255, 255, 0.9);
        color: var(--hp-primary-dark);
        transform: translateY(-2px);
    }
    /* Pagination */
    .hp-pagination-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
        flex-wrap: wrap;
    }
    .hp-page-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 16px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid var(--hp-border-light);
        background: #fff;
        color: var(--hp-text-main);
        transition: all var(--hp-transition);
        cursor: pointer;
    }
    .hp-page-btn:hover {
        border-color: var(--hp-primary);
        color: var(--hp-primary);
    }
    .hp-page-btn.active {
        background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: var(--hp-shadow-brand);
    }
    .hp-page-btn.disabled {
        opacity: 0.5;
        pointer-events: none;
    }
    /* Footer */
    .hp-footer {
        background-color: var(--hp-secondary-dark);
        color: #E8E6E1;
        padding-top: 56px;
        padding-bottom: 32px;
    }
    .hp-footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .hp-footer-logo:hover {
        color: #fff;
    }
    .hp-footer-desc {
        font-size: 14px;
        color: #98958D;
        line-height: 1.8;
        max-width: 340px;
    }
    .hp-footer-title {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 14px;
    }
    .hp-footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .hp-footer-links li {
        margin-bottom: 8px;
    }
    .hp-footer-links a {
        font-size: 14px;
        color: #98958D;
        transition: color var(--hp-transition);
    }
    .hp-footer-links a:hover {
        color: #fff;
    }
    .hp-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 40px;
        padding-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 12px;
        color: #98958D;
    }
    .hp-footer-bottom .sep {
        margin: 0 4px;
        opacity: 0.6;
    }
    .hp-footer-bottom a {
        color: #98958D;
        transition: color var(--hp-transition);
    }
    .hp-footer-bottom a:hover {
        color: #fff;
    }
    /* Responsive */
    @media (max-width: 991.98px) {
        :root {
            --hp-spacing-section: 56px;
            --hp-spacing-card-pad: 20px;
        }
        .hp-nav-menu {
            display: none;
        }
        .hp-nav-cta {
            display: none;
        }
        .hp-navbar-toggler {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hp-review-img {
            width: 40%;
        }
        .hp-page-hero h1 {
            font-size: 32px;
        }
        .hp-page-hero p {
            font-size: 16px;
        }
    }
    @media (max-width: 767.98px) {
        .hp-review-card-inner {
            flex-direction: column;
        }
        .hp-review-img {
            width: 100%;
            min-height: 200px;
            max-height: 240px;
        }
        .hp-review-content {
            padding: 20px;
        }
        .hp-review-title {
            font-size: 19px;
        }
        .hp-section-title {
            font-size: 26px;
        }
        .hp-cta-box {
            padding: 36px 28px;
        }
        .hp-cta-box h3 {
            font-size: 24px;
        }
        .hp-footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .hp-filter-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }
    }
    @media (max-width: 575.98px) {
        :root {
            --hp-spacing-section: 44px;
            --hp-spacing-card-pad: 18px;
        }
        .hp-page-hero {
            padding: 48px 0;
        }
        .hp-page-hero h1 {
            font-size: 28px;
        }
        .hp-page-hero p {
            font-size: 15px;
        }
        .hp-deep-card {
            padding: 24px 20px;
        }
        .hp-deep-card h3 {
            font-size: 21px;
        }
        .hp-review-footer-row {
            flex-direction: column;
            align-items: flex-start;
        }
        .hp-filter-btn {
            padding: 7px 13px;
            font-size: 12px;
        }
        .hp-page-btn {
            min-width: 38px;
            height: 38px;
            font-size: 13px;
        }
    }

/* roulang page: category5 */
:root {
            --hp-primary: #D63D2A;
            --hp-primary-dark: #C63D2F;
            --hp-primary-light: #F8E8E4;
            --hp-secondary-dark: #17181C;
            --hp-secondary-cyan: #1FA8FF;
            --hp-secondary-lime: #D7FF3F;
            --hp-bg-warm: #F6F3EF;
            --hp-bg-card: #FFFFFF;
            --hp-text-main: #1E1F23;
            --hp-text-weak: #6B6F7A;
            --hp-border-light: #E8E4DD;
            --hp-border-hover: #D63D2A;
            --hp-radius-card: 24px;
            --hp-radius-badge: 14px;
            --hp-radius-btn: 999px;
            --hp-radius-input: 13px;
            --hp-shadow-default: 0 8px 30px rgba(20, 22, 26, 0.06);
            --hp-shadow-hover: 0 16px 40px rgba(20, 22, 26, 0.12);
            --hp-shadow-brand: 0 8px 28px rgba(214, 61, 42, 0.24);
            --hp-spacing-section: 80px;
            --hp-spacing-card-pad: 28px;
            --hp-font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --hp-transition: 0.25s ease;
        }
        @media (max-width: 576px) {
            :root {
                --hp-spacing-section: 56px;
                --hp-spacing-card-pad: 20px;
            }
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--hp-font-family);
            color: var(--hp-text-main);
            background-color: var(--hp-bg-warm);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: var(--hp-text-main);
            transition: color var(--hp-transition);
        }
        a:hover {
            color: var(--hp-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }
        .hp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .hp-section {
            padding-top: var(--hp-spacing-section);
            padding-bottom: var(--hp-spacing-section);
            position: relative;
        }
        .hp-section--dark {
            background-color: var(--hp-secondary-dark);
            color: #E8E6E1;
        }
        .hp-section--compact {
            padding-top: 48px;
            padding-bottom: 48px;
        }
        .hp-section--warm {
            background-color: var(--hp-bg-warm);
        }
        .hp-text-primary {
            color: var(--hp-primary) !important;
        }
        .hp-text-weak {
            color: var(--hp-text-weak);
        }
        .hp-text-light {
            color: #E8E6E1;
        }
        .hp-section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .hp-section-subtitle {
            font-size: 16px;
            color: var(--hp-text-weak);
            margin-bottom: 36px;
            max-width: 680px;
            line-height: 1.8;
        }
        .hp-section-head {
            margin-bottom: 28px;
        }
        .hp-section-head--center {
            text-align: center;
        }
        .hp-section-head--center .hp-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }
        .hp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hp-primary-light);
            color: var(--hp-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--hp-radius-badge);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hp-badge--cyan {
            background: rgba(31, 168, 255, 0.12);
            color: #0B8AD1;
        }
        .hp-badge--lime {
            background: rgba(215, 255, 63, 0.25);
            color: #4F6D00;
        }
        .hp-badge--dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .hp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--hp-radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .hp-btn-primary {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-btn-primary:hover {
            background: linear-gradient(135deg, #E04A3A 0%, #B53628 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(214, 61, 42, 0.32);
        }
        .hp-btn-primary:focus-visible {
            outline: 3px solid rgba(214, 61, 42, 0.35);
            outline-offset: 2px;
        }
        .hp-btn-outline-dark {
            background: transparent;
            color: var(--hp-secondary-dark);
            border-color: var(--hp-secondary-dark);
        }
        .hp-btn-outline-dark:hover {
            background: rgba(23, 24, 28, 0.06);
            border-color: var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            transform: translateY(-2px);
        }
        .hp-btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hp-btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .hp-btn-lg {
            padding: 14px 34px;
            font-size: 16px;
        }
        .hp-btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }
        .hp-btn-block {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .hp-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            padding: var(--hp-spacing-card-pad);
            border: 2px solid transparent;
            transition: all var(--hp-transition);
            position: relative;
            height: 100%;
        }
        .hp-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.25);
        }
        .hp-card--featured {
            border-color: var(--hp-primary);
            background: linear-gradient(135deg, #FFF8F7 0%, #FFFFFF 40%);
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-card--featured:hover {
            border-color: var(--hp-primary-dark);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(214, 61, 42, 0.18);
        }
        .hp-card__title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .hp-card__text {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .hp-card__list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px 0;
        }
        .hp-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--hp-text-main);
            padding: 6px 0;
            line-height: 1.6;
        }
        .hp-card__list li i {
            color: var(--hp-primary);
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .hp-metric-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: stretch;
        }
        .hp-metric {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-badge);
            padding: 16px 22px;
            box-shadow: var(--hp-shadow-default);
            text-align: center;
            min-width: 120px;
            flex: 1 1 auto;
            transition: all var(--hp-transition);
            border: 1px solid var(--hp-border-light);
        }
        .hp-metric:hover {
            transform: translateY(-3px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.25);
        }
        .hp-metric__number {
            font-size: 28px;
            font-weight: 700;
            color: var(--hp-primary);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        .hp-metric__label {
            font-size: 13px;
            color: var(--hp-text-weak);
            margin-top: 4px;
            letter-spacing: 0.02em;
        }
        .hp-metric--dark {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: none;
        }
        .hp-metric--dark .hp-metric__number {
            color: #fff;
        }
        .hp-metric--dark .hp-metric__label {
            color: #A5A3A0;
        }
        .hp-metric--dark:hover {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .hp-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(246, 243, 239, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--hp-border-light);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .hp-header.scrolled {
            background: rgba(23, 18, 16, 0.94);
            border-bottom-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        }
        .hp-header.scrolled .hp-header-logo-text,
        .hp-header.scrolled .hp-nav-link,
        .hp-header.scrolled .hp-navbar-toggler {
            color: #fff;
        }
        .hp-header.scrolled .hp-nav-link.active {
            color: #fff;
        }
        .hp-header.scrolled .hp-nav-btn-outline {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.55);
        }
        .hp-header.scrolled .hp-nav-btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
        }
        .hp-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 24px;
        }
        .hp-header-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--hp-text-main);
            letter-spacing: 0.01em;
            flex-shrink: 0;
        }
        .hp-header-logo:hover {
            color: var(--hp-primary);
        }
        .hp-header-logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-radius: 12px;
            font-size: 16px;
        }
        .hp-header-logo-text {
            transition: color var(--hp-transition);
        }
        .hp-nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 32px;
        }
        .hp-nav-menu li {
            position: relative;
        }
        .hp-nav-link {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            color: var(--hp-text-main);
            padding: 8px 0;
            position: relative;
            letter-spacing: 0.01em;
            transition: color var(--hp-transition);
        }
        .hp-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform var(--hp-transition);
        }
        .hp-nav-link:hover {
            color: var(--hp-primary);
        }
        .hp-nav-link.active {
            color: var(--hp-primary);
        }
        .hp-nav-link.active::after {
            transform: scaleX(1);
        }
        .hp-nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .hp-nav-btn-outline {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            border: 2px solid var(--hp-secondary-dark);
            color: var(--hp-secondary-dark);
            font-size: 13px;
            font-weight: 600;
            background: transparent;
            transition: all var(--hp-transition);
            white-space: nowrap;
        }
        .hp-nav-btn-outline:hover {
            background: rgba(23, 24, 28, 0.06);
            color: var(--hp-secondary-dark);
        }
        .hp-nav-btn-primary {
            padding: 9px 20px;
            border-radius: var(--hp-radius-btn);
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            box-shadow: var(--hp-shadow-brand);
            transition: all var(--hp-transition);
            white-space: nowrap;
            border: 2px solid transparent;
        }
        .hp-nav-btn-primary:hover {
            transform: translateY(-1px);
            color: #fff;
            box-shadow: 0 10px 24px rgba(214, 61, 42, 0.35);
        }
        .hp-navbar-toggler {
            display: none;
            background: none;
            border: 1px solid var(--hp-border-light);
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 14px;
            color: var(--hp-text-main);
            cursor: pointer;
            align-items: center;
            gap: 6px;
            transition: all var(--hp-transition);
        }
        .hp-navbar-toggler:hover {
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }
        .hp-mobile-menu {
            display: none;
            position: absolute;
            top: 76px;
            left: 0;
            right: 0;
            background: var(--hp-secondary-dark);
            border-radius: 0 0 18px 18px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            padding: 18px 24px 24px;
            z-index: 1001;
        }
        .hp-mobile-menu.open {
            display: block;
        }
        .hp-mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .hp-mobile-menu-list a {
            display: block;
            color: #E8E6E1;
            font-size: 16px;
            font-weight: 600;
            padding: 12px 14px;
            border-radius: 10px;
            transition: all var(--hp-transition);
        }
        .hp-mobile-menu-list a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        .hp-mobile-menu-list a.active {
            background: rgba(214, 61, 42, 0.25);
            color: #fff;
        }
        .hp-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--hp-text-weak);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .hp-breadcrumb a {
            color: var(--hp-primary);
            font-weight: 500;
        }
        .hp-breadcrumb a:hover {
            text-decoration: underline;
            color: var(--hp-primary-dark);
        }
        .hp-breadcrumb .sep {
            color: #B8B5AE;
        }
        .hp-breadcrumb .current {
            color: var(--hp-text-weak);
        }
        .hp-hero {
            position: relative;
            background: linear-gradient(155deg, #2B1A17 0%, #4A2019 45%, #6B2C1F 100%);
            color: #fff;
            overflow: hidden;
        }
        .hp-hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 60%;
            height: 180%;
            background: radial-gradient(ellipse, rgba(214, 61, 42, 0.3) 0%, transparent 65%);
            pointer-events: none;
        }
        .hp-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 50%;
            height: 120%;
            background: radial-gradient(ellipse, rgba(31, 168, 255, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .hp-hero .hp-container {
            position: relative;
            z-index: 2;
            padding-top: 72px;
            padding-bottom: 72px;
        }
        .hp-hero h1 {
            font-size: 44px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            max-width: 700px;
        }
        .hp-hero p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(232, 230, 225, 0.88);
            max-width: 600px;
            margin-bottom: 28px;
        }
        .hp-hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .hp-hero-trust {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #B8B5AE;
            flex-wrap: wrap;
        }
        .hp-hero-trust i {
            color: var(--hp-secondary-lime);
        }
        .hp-pricing-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: stretch;
        }
        .hp-price-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            padding: 32px 28px;
            border: 2px solid var(--hp-border-light);
            transition: all var(--hp-transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .hp-price-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.3);
        }
        .hp-price-card--featured {
            border-color: var(--hp-primary);
            background: linear-gradient(160deg, #FFF8F6 0%, #FFFFFF 50%);
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-price-card--featured:hover {
            border-color: var(--hp-primary-dark);
            box-shadow: 0 20px 48px rgba(214, 61, 42, 0.2);
        }
        .hp-price-card__tag {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: var(--hp-radius-badge);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .hp-price-card__name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--hp-text-main);
        }
        .hp-price-card__price {
            font-size: 42px;
            font-weight: 700;
            color: var(--hp-primary);
            line-height: 1.1;
            margin-bottom: 6px;
            letter-spacing: -0.03em;
        }
        .hp-price-card__price small {
            font-size: 16px;
            font-weight: 500;
            color: var(--hp-text-weak);
            letter-spacing: 0;
        }
        .hp-price-card__desc {
            font-size: 14px;
            color: var(--hp-text-weak);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .hp-price-card__list {
            list-style: none;
            padding: 0;
            margin: 0 0 26px 0;
            flex-grow: 1;
        }
        .hp-price-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--hp-text-main);
            padding: 7px 0;
            line-height: 1.6;
        }
        .hp-price-card__list li i {
            color: var(--hp-primary);
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .hp-scenario-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            overflow: hidden;
            transition: all var(--hp-transition);
            border: 2px solid var(--hp-border-light);
            height: 100%;
        }
        .hp-scenario-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hp-shadow-hover);
            border-color: rgba(214, 61, 42, 0.25);
        }
        .hp-scenario-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .hp-scenario-card__body {
            padding: 24px 26px 26px;
        }
        .hp-scenario-card__title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .hp-scenario-card__text {
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            margin-bottom: 0;
        }
        .hp-faq-item {
            background: var(--hp-bg-card);
            border-radius: 16px;
            border: 1px solid var(--hp-border-light);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--hp-transition);
        }
        .hp-faq-item:hover {
            border-color: rgba(214, 61, 42, 0.25);
        }
        .hp-faq-question {
            background: #FAF7F4;
            border: none;
            width: 100%;
            text-align: left;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--hp-text-main);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: all var(--hp-transition);
            border-radius: 16px;
        }
        .hp-faq-question:hover {
            background: var(--hp-primary-light);
            color: var(--hp-primary);
        }
        .hp-faq-question i {
            transition: transform var(--hp-transition);
            font-size: 14px;
            color: var(--hp-primary);
            flex-shrink: 0;
        }
        .hp-faq-item.open .hp-faq-question i {
            transform: rotate(45deg);
        }
        .hp-faq-answer {
            display: none;
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--hp-text-weak);
            line-height: 1.8;
            background: var(--hp-bg-card);
        }
        .hp-faq-item.open .hp-faq-answer {
            display: block;
        }
        .hp-form-card {
            background: var(--hp-bg-card);
            border-radius: var(--hp-radius-card);
            box-shadow: var(--hp-shadow-default);
            padding: 32px;
            border: 1px solid var(--hp-border-light);
        }
        .hp-form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-text-main);
            margin-bottom: 6px;
        }
        .hp-form-control {
            width: 100%;
            border: 1.5px solid var(--hp-border-light);
            border-radius: var(--hp-radius-input);
            padding: 12px 16px;
            font-size: 15px;
            color: var(--hp-text-main);
            background: #fff;
            transition: all var(--hp-transition);
            outline: none;
        }
        .hp-form-control:focus {
            border-color: var(--hp-primary);
            box-shadow: 0 0 0 4px rgba(214, 61, 42, 0.12);
        }
        .hp-form-control::placeholder {
            color: #B8B5AE;
        }
        .hp-form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .hp-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 24px 0 8px;
        }
        .hp-pagination a,
        .hp-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--hp-text-main);
            background: var(--hp-bg-card);
            border: 1px solid var(--hp-border-light);
            transition: all var(--hp-transition);
        }
        .hp-pagination a:hover {
            background: var(--hp-primary-light);
            border-color: var(--hp-primary);
            color: var(--hp-primary);
        }
        .hp-pagination .active {
            background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
            color: #fff;
            border-color: var(--hp-primary);
            box-shadow: var(--hp-shadow-brand);
        }
        .hp-footer {
            background: var(--hp-secondary-dark);
            color: #A5A3A0;
            padding-top: 60px;
            padding-bottom: 28px;
        }
        .hp-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .hp-footer-logo:hover {
            color: #fff;
        }
        .hp-footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #98958D;
            max-width: 320px;
            margin-bottom: 0;
        }
        .hp-footer-title {
            font-size: 15px;
            font-weight: 700;
            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: #98958D;
            font-size: 14px;
            transition: color var(--hp-transition);
        }
        .hp-footer-links a:hover {
            color: #fff;
        }
        .hp-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: #98958D;
        }
        .hp-footer-bottom .sep {
            margin: 0 8px;
            color: #5A5853;
        }
        .hp-footer-bottom a {
            color: #98958D;
        }
        .hp-footer-bottom a:hover {
            color: #fff;
        }
        @media (max-width: 992px) {
            .hp-nav-menu {
                display: none;
            }
            .hp-navbar-toggler {
                display: inline-flex;
            }
            .hp-nav-cta {
                display: none;
            }
            .hp-pricing-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hp-hero h1 {
                font-size: 36px;
            }
        }
        @media (max-width: 768px) {
            .hp-hero .hp-container {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .hp-hero h1 {
                font-size: 30px;
            }
            .hp-section-title {
                font-size: 26px;
            }
            .hp-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
        @media (max-width: 520px) {
            .hp-container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hp-hero h1 {
                font-size: 26px;
            }
            .hp-hero p {
                font-size: 15px;
            }
            .hp-metric-row {
                gap: 10px;
            }
            .hp-metric {
                padding: 12px 16px;
                min-width: 90px;
            }
            .hp-metric__number {
                font-size: 22px;
            }
            .hp-form-card {
                padding: 22px 18px;
            }
            .hp-price-card {
                padding: 26px 20px;
            }
            .hp-price-card__price {
                font-size: 34px;
            }
            .hp-section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
        }
