/* roulang page: index */
*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #2C4A3B;
            --primary-deep: #1E352A;
            --gold: #C6A15B;
            --gold-bright: #D9B874;
            --bg: #F7F5F0;
            --bg-alt: #EFEBE2;
            --dark: #1B241F;
            --text: #222924;
            --text-secondary: #6B726D;
            --border: #E0DBD0;
            --accent: #B85C3A;
            --radius: 8px;
            --shadow-sm: 0 2px 8px rgba(27, 36, 31, 0.06);
            --shadow-md: 0 6px 24px rgba(27, 36, 31, 0.08);
            --shadow-lg: 0 12px 40px rgba(27, 36, 31, 0.14);
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
            outline: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: clamp(20px, 4vw, 48px);
            padding-right: clamp(20px, 4vw, 48px);
        }
        .section-pad {
            padding-top: 96px;
            padding-bottom: 96px;
        }
        .section-title {
            font-size: 28px;
            line-height: 1.4;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
        .section-title::before {
            content: "";
            display: block;
            width: 40px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 16px;
        }
        .section-sub {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 48px;
            padding: 0 28px;
            border-radius: var(--radius);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
            cursor: pointer;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(44, 74, 59, 0.3);
            color: #fff;
        }
        .btn-outline {
            border: 1px solid var(--gold);
            color: var(--gold);
            background: transparent;
        }
        .btn-outline:hover {
            background: rgba(198, 161, 91, 0.1);
            color: var(--gold);
            transform: translateY(-2px);
        }
        .btn-cta {
            height: 56px;
            padding: 0 36px;
            font-size: 17px;
            font-weight: 700;
        }
        .btn-cta i {
            transition: transform var(--transition);
        }
        .btn-cta:hover i {
            transform: translateX(4px);
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 48px;
            padding: 0 32px;
            border-radius: var(--radius);
            background: #fff;
            color: var(--primary);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
        }
        .btn-hero-primary:hover {
            background: var(--bg-alt);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 48px;
            padding: 0 32px;
            border-radius: var(--radius);
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 15px;
            font-weight: 600;
            background: transparent;
            transition: all var(--transition);
        }
        .btn-hero-outline:hover {
            background: rgba(198, 161, 91, 0.15);
            color: var(--gold-bright);
            transform: translateY(-2px);
        }
        .badge {
            display: inline-block;
            height: 20px;
            line-height: 20px;
            padding: 0 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .badge-accent {
            background: var(--accent);
            color: #fff;
        }
        .badge-gold {
            background: var(--gold);
            color: #fff;
        }

        /* ===== Sidebar ===== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 240px;
            height: 100vh;
            background: var(--dark);
            z-index: 50;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            height: 88px;
            padding: 0 24px;
            border-bottom: 1px solid rgba(198, 161, 91, 0.3);
            flex-shrink: 0;
        }
        .logo-badge {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: #F7F5F0;
            white-space: nowrap;
        }
        .sidebar-nav {
            flex: 1;
            padding: 8px 0;
        }
        .menu-group-title {
            font-size: 12px;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            padding: 24px 24px 8px;
            text-transform: uppercase;
        }
        .nav-item {
            display: flex;
            align-items: center;
            gap: 14px;
            height: 52px;
            padding: 0 24px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            position: relative;
            transition: color var(--transition);
            border-left: 3px solid transparent;
        }
        .nav-item i {
            width: 20px;
            text-align: center;
            font-size: 16px;
        }
        .nav-item:hover {
            color: var(--gold);
            border-left-color: var(--gold);
        }
        .nav-item.active {
            color: var(--gold-bright);
            border-left-color: var(--gold);
            background: linear-gradient(90deg, rgba(198, 161, 91, 0.1), transparent);
        }
        .sidebar-user {
            padding: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }
        .sidebar-user a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }
        .sidebar-user a:hover {
            color: var(--gold);
        }

        /* ===== Mobile Header ===== */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--dark);
            z-index: 45;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            border-bottom: 1px solid rgba(198, 161, 91, 0.2);
        }
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-logo .logo-text {
            font-size: 16px;
        }
        .hamburger {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            border-radius: 6px;
        }
        .hamburger span {
            width: 20px;
            height: 2px;
            background: #fff;
            background: #F7F5F0;
            transition: all 0.3s ease;
        }

        /* ===== Drawer ===== */
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 59;
        }
        .drawer-overlay.active {
            display: block;
        }
        .drawer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 272px;
            background: var(--dark);
            z-index: 60;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            flex-direction: column;
        }
        .drawer.open {
            transform: translateX(0);
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            padding: 0 20px;
            border-bottom: 1px solid rgba(198, 161, 91, 0.2);
        }
        .drawer-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            border-radius: 6px;
        }
        .drawer-close:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }
        .drawer-nav {
            flex: 1;
            padding: 8px 0;
            overflow-y: auto;
        }
        .drawer-nav .nav-item {
            height: 56px;
            font-size: 17px;
            color: rgba(255, 255, 255, 0.8);
            border-left-width: 3px;
        }

        /* ===== Main Wrapper ===== */
        .main-wrapper {
            margin-left: 240px;
            min-height: 100vh;
            overflow: hidden;
        }
        main {
            width: 100%;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: clamp(480px, 90vh, 720px);
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1E352A, #1B241F);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(27, 36, 31, 0.9) 0%, rgba(27, 36, 31, 0.6) 50%, rgba(27, 36, 31, 0.3) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            padding: 0 clamp(20px, 4vw, 48px);
        }
        .hero-title {
            font-size: clamp(40px, 5vw, 72px);
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 20px;
        }
        .hero-title .highlight {
            color: var(--gold-bright);
        }
        .hero-sub {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 36px;
            max-width: 560px;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            right: 48px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            animation: scrollDown 2s infinite;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }
        .scroll-indicator:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        @keyframes scrollDown {
            0%,
            100% {
                transform: translateY(0);
                opacity: 1;
            }
            50% {
                transform: translateY(8px);
                opacity: 0.6;
            }
        }

        /* ===== Brand Statement ===== */
        .brand-statement {
            background: var(--bg);
            padding-top: 96px;
            padding-bottom: 64px;
            text-align: center;
        }
        .brand-statement .quote {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 500;
            line-height: 1.5;
            color: var(--text);
            max-width: 760px;
            margin: 0 auto 48px;
        }
        .brand-points {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 48px;
            max-width: 900px;
            margin: 0 auto;
        }
        .brand-point {
            text-align: center;
            padding: 0 12px;
        }
        .brand-point .point-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 20px;
            color: var(--primary);
            transition: transform 0.25s ease;
        }
        .brand-point:hover .point-icon {
            transform: scale(1.08);
        }
        .brand-point h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
        .brand-point p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== Story ===== */
        .story-section {
            background: var(--bg-alt);
            padding-top: 96px;
            padding-bottom: 96px;
        }
        .story-grid {
            display: grid;
            grid-template-columns: 6fr 6fr;
            gap: 64px;
            align-items: center;
        }
        .story-text .section-title {
            margin-bottom: 24px;
        }
        .story-text p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 24px;
            max-width: 480px;
        }
        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.25s ease;
        }
        .story-link:hover {
            color: var(--gold);
            gap: 10px;
        }
        .story-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 4/3;
        }
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .story-image:hover img {
            transform: scale(1.04);
        }

        /* ===== Featured Cards ===== */
        .featured-section {
            background: var(--bg);
            padding-top: 96px;
            padding-bottom: 96px;
        }
        .featured-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }
        .featured-link:hover {
            color: var(--primary);
            gap: 10px;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        .featured-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .card-large {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }
        .card-large:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .card-large .card-media {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }
        .card-large .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-large:hover .card-media img {
            transform: scale(1.04);
        }
        .card-large .card-body {
            padding: 24px;
        }
        .card-large .card-body h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 12px 0 8px;
            line-height: 1.4;
            color: var(--text);
        }
        .card-large .card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.6;
        }
        .card-large .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .card-vertical {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }
        .card-vertical:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .card-vertical .card-media {
            aspect-ratio: 3/4;
            overflow: hidden;
            position: relative;
        }
        .card-vertical .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-vertical:hover .card-media img {
            transform: scale(1.04);
        }
        .card-vertical .card-body {
            padding: 20px;
        }
        .card-vertical .card-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text);
            margin-top: 10px;
        }
        .card-vertical .card-body p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 8px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-standard {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }
        .card-standard:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .card-standard .card-media {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .card-standard .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-standard:hover .card-media img {
            transform: scale(1.04);
        }
        .card-standard .card-body {
            padding: 20px;
        }
        .card-standard .card-body h4 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text);
            margin-top: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-standard .card-body .card-date {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 8px;
        }
        .card-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            background: var(--bg-alt);
            color: var(--primary);
        }

        /* ===== Latest News (CMS) ===== */
        .latest-news-section {
            background: var(--bg-alt);
            padding-top: 96px;
            padding-bottom: 96px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 48px;
        }
        .news-featured {
            background: var(--dark);
            border-radius: 12px;
            padding: 32px;
            color: #fff;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .news-featured:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .news-featured::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(198, 161, 91, 0.15), transparent 70%);
        }
        .news-featured .card-tag {
            background: var(--gold);
            color: var(--dark);
            align-self: flex-start;
            margin-bottom: 16px;
        }
        .news-featured h3 {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
            color: #fff;
        }
        .news-featured p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-featured .news-date {
            font-size: 13px;
            color: var(--gold-bright);
            margin-top: 20px;
            font-family: "DIN Alternate", "Bebas Neue", "Oswald", sans-serif;
            letter-spacing: 0.05em;
        }
        .news-list {
            display: flex;
            flex-direction: column;
        }
        .news-list-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .news-list-item:last-child {
            border-bottom: none;
        }
        .news-list-item:hover {
            background: var(--bg);
            padding-left: 12px;
            padding-right: 12px;
            border-radius: 8px;
        }
        .news-list-item .news-date {
            width: 56px;
            height: 56px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        .news-list-item .news-date .day {
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            color: var(--gold);
            font-family: "DIN Alternate", "Bebas Neue", "Oswald", sans-serif;
        }
        .news-list-item .news-date .month {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 2px;
            line-height: 1;
        }
        .news-list-item .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .news-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.25s ease;
        }
        .news-list-item:hover .news-info h4 {
            color: var(--primary);
        }
        .news-list-item .news-info p {
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-list-item .news-arrow {
            color: var(--text-secondary);
            font-size: 14px;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }
        .news-list-item:hover .news-arrow {
            color: var(--gold);
            transform: translateX(4px);
        }
        .news-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 24px;
            border: 2px dashed var(--border);
            border-radius: 12px;
            grid-column: 1 / -1;
            text-align: center;
        }
        .news-empty i {
            font-size: 36px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        .news-empty p {
            font-size: 15px;
            color: var(--text-secondary);
        }

        /* ===== Trust ===== */
        .trust-section {
            background: var(--dark);
            padding-top: 96px;
            padding-bottom: 96px;
            position: relative;
            overflow: hidden;
        }
        .trust-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 80px);
        }
        .trust-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 48px;
            text-align: center;
        }
        .trust-item .trust-number {
            font-size: clamp(56px, 6vw, 80px);
            font-weight: 800;
            color: var(--gold-bright);
            font-family: "DIN Alternate", "Bebas Neue", "Oswald", sans-serif;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }
        .trust-item p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-top: 12px;
            letter-spacing: 0.04em;
        }

        /* ===== CTA Subscribe ===== */
        .cta-section {
            background: var(--bg);
            padding-top: 96px;
            padding-bottom: 96px;
            text-align: center;
        }
        .cta-section .section-title {
            text-align: center;
        }
        .cta-section .section-title::before {
            margin: 0 auto 16px;
        }
        .cta-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 480px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 0 auto;
        }
        .cta-form input {
            flex: 1;
            height: 48px;
            padding: 0 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            font-size: 15px;
            color: var(--text);
            transition: all 0.25s ease;
        }
        .cta-form input::placeholder {
            color: var(--text-secondary);
            opacity: 0.7;
        }
        .cta-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
            outline: none;
        }
        .cta-form .btn {
            flex-shrink: 0;
        }
        .cta-privacy {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 16px;
            text-align: center;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--dark);
            padding-top: 80px;
            padding-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 3fr 2fr 2fr 3fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .footer-brand .footer-logo .logo-text {
            font-size: 18px;
            color: #fff;
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }
        .footer-links h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.05em;
        }
        .footer-links a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            transition: color 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--gold);
        }
        .footer-contact h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.05em;
        }
        .footer-contact p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .footer-contact .contact-icon {
            margin-right: 8px;
            color: var(--gold);
            width: 16px;
            text-align: center;
        }
        .footer-bottom {
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Reveal Animation ===== */
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .sidebar {
                display: none;
            }
            .mobile-header {
                display: flex;
            }
            .drawer {
                display: flex;
            }
            .main-wrapper {
                margin-left: 0;
                padding-top: 60px;
            }
            .hero {
                min-height: 520px;
            }
            .story-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .story-text p {
                max-width: 100%;
            }
            .featured-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .featured-grid-2 {
                grid-template-columns: 1fr 1fr;
            }
            .brand-points {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 24px;
            }
            .news-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 767px) {
            .section-pad {
                padding-top: 56px;
                padding-bottom: 56px;
            }
            .featured-section,
            .latest-news-section,
            .story-section,
            .trust-section,
            .cta-section,
            .brand-statement {
                padding-top: 56px;
                padding-bottom: 56px;
            }
            .brand-points {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .featured-grid-2 {
                grid-template-columns: 1fr;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            .hero-buttons .btn-hero-primary,
            .hero-buttons .btn-hero-outline {
                width: 100%;
                justify-content: center;
            }
            .hero-content {
                padding: 0 20px;
            }
            .scroll-indicator {
                right: 20px;
                bottom: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .news-list-item {
                gap: 14px;
                padding: 16px 0;
            }
            .news-list-item .news-date {
                width: 48px;
                height: 48px;
            }
            .news-list-item .news-info p {
                display: none;
            }
            .news-list-item .news-info h4 {
                white-space: normal;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }
        }
        @media (max-width: 520px) {
            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .trust-item .trust-number {
                font-size: 48px;
            }
            .news-featured {
                padding: 24px;
            }
            .news-featured h3 {
                font-size: 20px;
            }
        }

        /* Focus accessibility */
        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

/* roulang page: category1 */
:root {
            --primary: #2C4A3B;
            --primary-deep: #1E352A;
            --gold: #C6A15B;
            --gold-bright: #D9B874;
            --bg: #F7F5F0;
            --bg-alt: #EFEBE2;
            --dark: #1B241F;
            --text: #222924;
            --text-secondary: #6B726D;
            --border: #E0DBD0;
            --accent: #B85C3A;
            --radius: 12px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.12);
            --ease: 0.25s ease;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        input {
            font-family: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: clamp(20px, 4vw, 48px);
            padding-right: clamp(20px, 4vw, 48px);
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 240px;
            height: 100vh;
            background: var(--dark);
            z-index: 50;
            display: flex;
            flex-direction: column;
            padding: 0 0 24px;
        }
        .sidebar-logo {
            height: 88px;
            display: flex;
            align-items: center;
            padding: 0 24px;
            border-bottom: 1px solid rgba(198, 161, 91, 0.3);
            gap: 12px;
            flex-shrink: 0;
        }
        .logo-badge {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #D9B874, #C6A15B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
            flex-shrink: 0;
        }
        .logo-text {
            color: #F7F5F0;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.08em;
            white-space: nowrap;
        }
        .sidebar-nav {
            padding: 8px 0;
            flex: 1;
            overflow-y: auto;
        }
        .menu-group-title {
            padding: 24px 24px 8px;
            font-size: 12px;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
        }
        .nav-item {
            display: flex;
            align-items: center;
            height: 52px;
            padding: 0 24px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            gap: 14px;
            position: relative;
            transition: color 0.25s ease;
        }
        .nav-item i {
            width: 20px;
            text-align: center;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.25s ease;
        }
        .nav-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.25s ease;
            border-radius: 0 2px 2px 0;
        }
        .nav-item:hover {
            color: var(--gold-bright);
        }
        .nav-item:hover i {
            color: var(--gold-bright);
        }
        .nav-item:hover::before {
            transform: scaleY(1);
        }
        .nav-item.active {
            color: var(--gold-bright);
            background: rgba(198, 161, 91, 0.08);
        }
        .nav-item.active i {
            color: var(--gold);
        }
        .nav-item.active::before {
            transform: scaleY(1);
        }
        .sidebar-bottom {
            padding: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }
        .user-area {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }
        .user-meta {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        .user-meta .user-name {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        .user-meta .user-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }
        .main-wrapper {
            margin-left: 240px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--dark);
            z-index: 45;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        .mobile-header .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-toggle {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .mobile-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: #F7F5F0;
            transition: all 0.3s ease;
        }
        .mobile-toggle.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        .mobile-drawer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 272px;
            background: var(--dark);
            z-index: 60;
            padding-top: 60px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
        }
        .mobile-drawer.open {
            transform: translateX(0);
        }
        .mobile-drawer .nav-item {
            height: 56px;
            font-size: 17px;
        }
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 55;
        }
        .drawer-overlay.open {
            display: block;
        }
        .main-content {
            flex: 1;
        }
        .breadcrumb {
            padding: 24px 0 0;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: var(--border);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 500;
        }
        .cat-hero {
            position: relative;
            height: clamp(320px, 40vh, 480px);
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 24px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .cat-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--dark) 0%, rgba(27, 36, 31, 0.75) 100%);
            z-index: 1;
        }
        .cat-hero-content {
            position: relative;
            z-index: 2;
            padding: 48px clamp(24px, 5vw, 72px);
            color: #fff;
            max-width: 720px;
        }
        .cat-hero h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .cat-hero h1 .gold-text {
            color: var(--gold-bright);
        }
        .cat-hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
        }
        .hero-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .hero-tags .tag {
            background: rgba(198, 161, 91, 0.2);
            border: 1px solid rgba(198, 161, 91, 0.4);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 0.04em;
            color: var(--gold-bright);
        }
        .section {
            padding-block: 96px;
        }
        .section-tight {
            padding-block: 64px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-top: 24px;
            line-height: 1.4;
        }
        .section-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        .section-title .title-en {
            display: block;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            color: var(--text-secondary);
            margin-bottom: 4px;
            text-transform: uppercase;
        }
        .section-link {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease;
        }
        .section-link i {
            transition: transform 0.25s ease;
        }
        .section-link:hover {
            color: var(--gold);
        }
        .section-link:hover i {
            transform: translateX(4px);
        }
        .schedule-list {
            border-top: 1px solid var(--border);
        }
        .schedule-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s ease;
        }
        .schedule-item:hover {
            background: var(--bg-alt);
            padding-left: 8px;
        }
        .schedule-date {
            flex-shrink: 0;
            width: 64px;
            text-align: center;
            font-family: "DIN Alternate", "Bebas Neue", "Oswald", "Archivo Narrow", Arial Narrow, sans-serif;
            line-height: 1.2;
        }
        .schedule-date .day {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        .schedule-date .month {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .schedule-info {
            flex: 1;
        }
        .schedule-info .match-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .schedule-info .match-meta {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .match-status {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 4px;
            letter-spacing: 0.02em;
        }
        .match-status.live {
            background: rgba(184, 92, 58, 0.12);
            color: var(--accent);
        }
        .match-status.live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 1.2s ease infinite;
        }
        .match-status.ended {
            background: var(--bg-alt);
            color: var(--text-secondary);
        }
        .match-status.scheduled {
            background: rgba(44, 74, 59, 0.1);
            color: var(--primary);
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.75);
            }
        }
        .feature-card {
            background: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .feature-card .card-img {
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .feature-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .feature-card:hover .card-img img {
            transform: scale(1.04);
        }
        .feature-card .card-body {
            padding: 24px;
        }
        .feature-card .card-body .badge {
            display: inline-block;
            background: rgba(198, 161, 91, 0.15);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }
        .feature-card .card-body h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .feature-card .card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }
        .card-footer .meta-text {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .card-footer a {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease;
        }
        .card-footer a i {
            transition: transform 0.25s ease;
        }
        .card-footer a:hover {
            color: var(--gold);
        }
        .card-footer a:hover i {
            transform: translateX(4px);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 48px;
            padding: 0 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--gold);
        }
        .btn-outline:hover {
            background: rgba(198, 161, 91, 0.1);
            transform: translateY(-2px);
        }
        .btn-lg {
            height: 56px;
            padding: 0 36px;
            font-size: 17px;
            font-weight: 700;
        }
        .btn-lg i {
            transition: transform 0.25s ease;
        }
        .btn-lg:hover i {
            transform: translateX(4px);
        }
        .btn-light {
            background: #fff;
            color: var(--primary);
        }
        .btn-light:hover {
            background: var(--bg-alt);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.04);
        }
        .gallery-item .gallery-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 40px 16px 14px;
            background: linear-gradient(180deg, transparent, rgba(27, 36, 31, 0.75));
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }
        .faq-section {
            background: var(--bg-alt);
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 56px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s ease;
            user-select: none;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            position: relative;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .faq-question .faq-icon::before,
        .faq-question .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--gold);
            transition: transform 0.3s ease;
        }
        .faq-question .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 7px;
            left: 0;
        }
        .faq-question .faq-icon::after {
            width: 2px;
            height: 16px;
            top: 0;
            left: 7px;
        }
        .faq-question.open .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer-inner {
            padding: 0 24px 24px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }
        .cta-section {
            background: var(--dark);
            position: relative;
            overflow: hidden;
            text-align: center;
            padding: 88px 0;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px);
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 700;
            margin-bottom: 14px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            margin-bottom: 32px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }
        .cta-form input {
            flex: 1;
            height: 48px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding: 0 16px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .cta-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.2);
        }
        .cta-disclaimer {
            margin-top: 16px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
        }
        .site-footer {
            background: var(--dark);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin-top: 8px;
        }
        .footer-links h4 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.04em;
        }
        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            padding: 6px 0;
            transition: color 0.25s ease, padding-left 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--gold-bright);
            padding-left: 6px;
        }
        .footer-contact p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-contact .contact-icon {
            color: var(--gold);
            font-size: 13px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 32px;
            text-align: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 14px;
        }
        @media (max-width: 1023px) {
            .sidebar {
                display: none;
            }
            .main-wrapper {
                margin-left: 0;
            }
            .mobile-header {
                display: flex;
            }
            .mobile-drawer {
                display: block;
            }
            .main-content {
                padding-top: 60px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .section {
                padding-block: 64px;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .cat-hero {
                height: auto;
                min-height: 320px;
                border-radius: 0;
                margin-top: 0;
            }
            .cat-hero-content {
                padding: 56px 20px;
            }
            .schedule-item {
                flex-wrap: wrap;
                gap: 12px;
            }
            .schedule-info {
                min-width: calc(100% - 90px);
            }
            .feature-card .card-body {
                padding: 16px;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form .btn {
                width: 100%;
            }
        }
        @media (max-width: 520px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .section-title {
                font-size: 24px;
            }
        }
        .stat-block {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 32px 16px;
        }
        .stat-number {
            font-family: "DIN Alternate", "Bebas Neue", "Oswald", "Archivo Narrow", Arial Narrow, sans-serif;
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            color: var(--gold-bright);
            line-height: 1;
            letter-spacing: -0.03em;
        }
        .stat-label {
            margin-top: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        @media (max-width: 767px) {
            .stat-block {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .split-section .text-col h2 {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 20px;
        }
        .split-section .text-col p {
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        .split-section .text-col .btn {
            margin-top: 16px;
        }
        .split-section .img-col {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 4/3;
        }
        .split-section .img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (max-width: 767px) {
            .split-section {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .tab-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }
        @media (max-width: 520px) {
            .tab-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
        .schedule-col {
            background: var(--bg-alt);
            border-radius: var(--radius);
            padding: 28px;
        }
        .big-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 5/4;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: flex-end;
        }
        .big-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .big-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(27, 36, 31, 0.85) 100%);
        }
        .big-card-content {
            position: relative;
            z-index: 2;
            padding: 24px;
            color: #fff;
        }
        .big-card-content .badge {
            display: inline-block;
            background: rgba(198, 161, 91, 0.25);
            color: var(--gold-bright);
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .big-card-content h3 {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .big-card-content p {
            font-size: 14px;
            opacity: 0.85;
            margin-bottom: 14px;
        }
        .zero-state {
            border: 2px dashed var(--border);
            padding: 48px;
            text-align: center;
            color: var(--text-secondary);
            border-radius: var(--radius);
            margin: 20px 0;
        }
        .zero-state i {
            font-size: 32px;
            margin-bottom: 8px;
            color: var(--gold);
        }

/* roulang page: article */
:root {
  --primary: #2C4A3B;
  --primary-deep: #1E352A;
  --gold: #C6A15B;
  --gold-bright: #D9B874;
  --bg: #F7F5F0;
  --bg-alt: #EFEBE2;
  --dark: #1B241F;
  --text: #222924;
  --text-secondary: #6B726D;
  --border: #E0DBD0;
  --accent: #B85C3A;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input { font-family: inherit; }

/* ===== 侧边栏 ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: var(--dark);
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
  border-bottom: 1px solid rgba(198,161,91,0.2);
  flex-shrink: 0;
}

.logo-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F7F5F0;
  white-space: nowrap;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 0 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-group-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  padding: 24px 24px 8px;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 24px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  gap: 12px;
  border-left: 3px solid transparent;
}

.nav-item i {
  width: 22px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.nav-item:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
}

.nav-item:hover i { color: var(--gold); }

.nav-item.active {
  color: var(--gold-bright);
  border-left-color: var(--gold);
  background: rgba(198,161,91,0.06);
}

.nav-item.active i { color: var(--gold-bright); }

.sidebar-user {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-user .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(198,161,91,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.user-name {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===== 移动端头部 ===== */
.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  height: 60px;
  background: var(--dark);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 45;
}

.mobile-logo { display: flex; align-items: center; gap: 10px; }

.hamburger-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== 抽屉 ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 272px;
  height: 100vh;
  background: var(--dark);
  z-index: 60;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.drawer.open { left: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(198,161,91,0.2);
  margin-bottom: 16px;
}

.drawer-logo { display: flex; align-items: center; gap: 10px; }

.drawer-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.drawer-close:hover { background: rgba(255,255,255,0.08); }

.drawer-nav { flex: 1; }

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 12px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  border-radius: 8px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.drawer-nav-item:hover { color: var(--gold); background: rgba(255,255,255,0.04); border-left-color: var(--gold); }
.drawer-nav-item.active { color: var(--gold-bright); border-left-color: var(--gold); background: rgba(198,161,91,0.06); }
.drawer-nav-item i { width: 22px; color: rgba(255,255,255,0.4); }
.drawer-nav-item.active i { color: var(--gold-bright); }

/* ===== 主内容区 ===== */
.main-wrapper {
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 48px) 40px;
}

/* ===== 面包屑 ===== */
.breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--primary); font-weight: 500; }

/* ===== 文章容器 ===== */
.article-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
}

/* 文章封面 */
.article-cover {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--bg-alt);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 文章头 ===== */
.article-header { margin-bottom: 40px; }

.article-header h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.meta-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.meta-item { display: flex; align-items: center; gap: 6px; }
.meta-item i { color: var(--gold); font-size: 12px; }

.category-tag {
  display: inline-block;
  background: rgba(198,161,91,0.12);
  color: #A5833F;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== 文章正文 ===== */
.article-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-top: 8px;
}

.article-body p { margin-bottom: 1.8em; }

.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 24px;
  line-height: 1.4;
}

.article-body h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 16px;
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
}

.article-body a:hover { color: var(--gold); }

.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--bg-alt);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
}

.article-body blockquote p:last-child { margin-bottom: 0; }

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.8em 1.6em;
}

.article-body ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.article-body ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.article-body table th,
.article-body table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}

.article-body table th { background: var(--bg-alt); font-weight: 600; }

/* ===== 文章标签 ===== */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-tags .tag {
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.article-tags .tag:hover { background: var(--primary); color: #fff; }

/* ===== 相关推荐 ===== */
.related-section { margin-top: 64px; }

.related-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.related-section h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card .thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}

.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .thumb img { transform: scale(1.04); }

.related-card .card-body { padding: 20px 20px 24px; }

.related-card .card-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  background: rgba(198,161,91,0.1);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.related-card .card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.related-card:hover .card-title { color: var(--primary); }

.related-card .card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== 未找到 ===== */
.not-found {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.not-found .icon-circle {
  width: 72px;
  height: 72px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
  color: var(--gold);
}

.not-found h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.not-found p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

/* ===== 返回入口 ===== */
.back-nav {
  text-align: center;
  margin-top: 48px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-back:hover {
  background: rgba(198,161,91,0.1);
  transform: translateX(-4px);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,0.015) 20px 21px);
  pointer-events: none;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ===== 滚动入场 ===== */
.js .fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .fade-up.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1023px) {
  .sidebar { display: none; }
  .main-wrapper { margin-left: 0; }
  .mobile-header { display: flex; }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 20px 16px 32px;
  }

  .article-wrap {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .article-header h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .meta-info {
    gap: 10px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-card .thumb {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 520px) {
  .breadcrumb { font-size: 12px; gap: 5px; }
  .meta-info { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-body { font-size: 15px; }
  .article-body h2 { font-size: 22px; }
  .not-found { padding: 60px 24px; }
  .not-found h2 { font-size: 24px; }
}

/* roulang page: category2 */
:root {
        --primary: #2C4A3B;
        --primary-deep: #1E352A;
        --gold: #C6A15B;
        --gold-bright: #D9B874;
        --bg: #F7F5F0;
        --bg-alt: #EFEBE2;
        --dark: #1B241F;
        --text: #222924;
        --text-secondary: #6B726D;
        --border: #E0DBD0;
        --accent: #B85C3A;
        --radius: 12px;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
        --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
        --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
        --transition: 0.25s ease;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.7;
        font-size: 16px;
    }

    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition);
    }
    a:hover { color: var(--gold); }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    button,
    input {
        font-family: inherit;
        font-size: inherit;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(20px, 4vw, 48px);
    }

    /* ===== 左侧导航 ===== */
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 240px;
        height: 100vh;
        background: var(--dark);
        z-index: 50;
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
        overflow-y: auto;
    }

    .sidebar-logo {
        height: 88px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 24px;
        border-bottom: 1px solid rgba(198, 161, 91, 0.25);
        flex-shrink: 0;
    }

    .logo-badge {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold-bright), var(--gold));
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .logo-text {
        color: #F7F5F0;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .sidebar-nav {
        flex: 1;
        padding: 12px 0;
    }

    .menu-group-title {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        padding: 20px 24px 8px;
    }

    .nav-item {
        display: flex;
        align-items: center;
        gap: 14px;
        height: 52px;
        padding: 0 24px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        font-weight: 500;
        position: relative;
        transition: color var(--transition), background var(--transition);
        border-left: 3px solid transparent;
    }

    .nav-item i {
        width: 20px;
        text-align: center;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.6);
        transition: color var(--transition);
    }

    .nav-item:hover {
        color: var(--gold-bright);
        background: rgba(255, 255, 255, 0.04);
        border-left-color: var(--gold);
    }
    .nav-item:hover i { color: var(--gold-bright); }

    .nav-item.active {
        color: var(--gold-bright);
        border-left-color: var(--gold);
        background: rgba(198, 161, 91, 0.08);
        font-weight: 600;
    }
    .nav-item.active i { color: var(--gold-bright); }

    .sidebar-user {
        padding: 20px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--gold);
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
    }

    .user-name {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .user-login {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        transition: color var(--transition);
    }
    .user-login:hover { color: var(--gold-bright); }

    /* ===== 移动端顶部栏 ===== */
    .mobile-header {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: var(--dark);
        z-index: 60;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .mobile-header .logo-badge {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .mobile-header .logo-text { font-size: 15px; }

    .hamburger-btn {
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        transition: background var(--transition);
    }
    .hamburger-btn:hover { background: rgba(255,255,255,0.08); }
    .hamburger-btn span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform var(--transition), opacity var(--transition);
    }
    .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; }
    .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 65;
    }
    .drawer-overlay.show { display: block; }

    .drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 272px;
        height: 100vh;
        background: var(--dark);
        z-index: 70;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        padding-top: 12px;
    }
    .drawer.open { transform: translateX(0); }

    .drawer .drawer-nav {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding-top: 8px;
    }

    .drawer .menu-group-title {
        padding: 20px 24px 8px;
    }

    .drawer .nav-item {
        height: 56px;
        font-size: 17px;
        padding-left: 24px;
    }

    .drawer-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.7);
        font-size: 20px;
        cursor: pointer;
        border-radius: 8px;
        transition: background var(--transition), color var(--transition);
    }
    .drawer-close:hover { background: rgba(255,255,255,0.08); color: var(--gold); }

    /* ===== 主内容 ===== */
    .main-content {
        margin-left: 240px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* ===== 面包屑 ===== */
    .breadcrumb-wrap {
        padding: 20px clamp(20px, 4vw, 48px) 0;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }

    .breadcrumb {
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .breadcrumb a {
        color: var(--text-secondary);
        transition: color var(--transition);
    }
    .breadcrumb a:hover { color: var(--primary); }

    .breadcrumb .sep {
        color: var(--border);
        font-size: 12px;
    }

    .breadcrumb .current {
        color: var(--primary);
        font-weight: 600;
    }

    /* ===== Hero ===== */
    .category-hero {
        position: relative;
        min-height: clamp(320px, 40vh, 480px);
        display: flex;
        align-items: center;
        color: #fff;
        overflow: hidden;
        background: var(--dark);
        margin: 0 clamp(20px, 4vw, 48px);
        border-radius: 16px;
        margin-top: 24px;
    }

    .category-hero .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/assets/images/backpic/back-2.webp');
        background-size: cover;
        background-position: center;
        opacity: 0.45;
    }

    .category-hero .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(27, 36, 31, 0.92) 0%, rgba(27, 36, 31, 0.6) 60%, rgba(27, 36, 31, 0.3) 100%);
    }

    .category-hero .hero-content {
        position: relative;
        z-index: 2;
        padding: clamp(40px, 6vw, 72px);
        max-width: 680px;
    }

    .category-hero .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(198, 161, 91, 0.18);
        border: 1px solid rgba(198, 161, 91, 0.4);
        color: var(--gold-bright);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        padding: 6px 16px;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .category-hero h1 {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 800;
        letter-spacing: -0.01em;
        line-height: 1.2;
        margin-bottom: 14px;
        color: #fff;
    }

    .category-hero h1 .gold-text {
        color: var(--gold-bright);
    }

    .category-hero .hero-desc {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 560px;
    }

    /* ===== 区块标题 ===== */
    .section-title-wrap {
        margin-bottom: 36px;
    }

    .section-title-wrap .eyebrow {
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .section-title-wrap h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3;
        position: relative;
        padding-top: 24px;
    }

    .section-title-wrap h2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--gold);
    }

    .section-title-wrap .section-desc {
        margin-top: 12px;
        color: var(--text-secondary);
        font-size: 15px;
        max-width: 640px;
    }

    .section-title-wrap.center {
        text-align: center;
    }

    .section-title-wrap.center h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title-wrap.center .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .section-padding {
        padding-top: clamp(56px, 8vw, 96px);
        padding-bottom: clamp(56px, 8vw, 96px);
    }

    .section-bg-alt {
        background: var(--bg-alt);
    }

    .section-bg-dark {
        background: var(--dark);
        color: #fff;
    }

    /* ===== 热点赛事卡片 ===== */
    .esports-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: start;
    }

    .esports-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--transition), box-shadow var(--transition);
        border: 1px solid rgba(224, 219, 208, 0.5);
        display: flex;
        flex-direction: column;
        height: 380px;
    }

    .esports-card.highlight {
        height: 420px;
        margin-top: 0;
        box-shadow: var(--shadow-md);
    }

    .esports-card:nth-child(2),
    .esports-card:nth-child(3) {
        margin-top: 40px;
    }

    .esports-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .esports-card .card-cover {
        height: 200px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    .esports-card.highlight .card-cover { height: 220px; }

    .esports-card .card-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .esports-card:hover .card-cover img { transform: scale(1.04); }

    .card-cover .cover-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--accent);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.06em;
        padding: 4px 10px;
        border-radius: 4px;
        z-index: 2;
    }

    .esports-card .card-body {
        padding: 20px 20px 16px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .esports-card .card-body h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .esports-card .card-body .match-meta {
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .esports-card .card-body .match-meta i {
        color: var(--gold);
        font-size: 13px;
    }

    .esports-card .card-body .views {
        margin-top: auto;
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 6px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
        margin-top: 14px;
    }

    .esports-card .card-body .views i {
        color: var(--gold);
        font-size: 13px;
    }

    /* ===== 玩法攻略 ===== */
    .guide-wrap {
        display: grid;
        grid-template-columns: 7fr 5fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
    }

    .guide-main {
        background: #fff;
        border-radius: 14px;
        padding: 28px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .guide-main .guide-cover {
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 24px;
    }

    .guide-main .guide-cover img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .guide-main:hover .guide-cover img { transform: scale(1.02); }

    .guide-main .guide-cover figcaption {
        font-size: 12px;
        color: var(--text-secondary);
        padding: 8px 12px;
        background: var(--bg-alt);
        text-align: center;
    }

    .guide-main h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 14px;
    }

    .guide-main p {
        font-size: 15px;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 16px;
    }

    .guide-main p:last-child {
        margin-bottom: 0;
    }

    .guide-list {
        background: #fff;
        border-radius: 14px;
        padding: 28px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .guide-list .guide-list-item {
        display: flex;
        gap: 18px;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        transition: background var(--transition);
        cursor: pointer;
        border-radius: 6px;
    }

    .guide-list-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .guide-list-item:hover {
        background: rgba(244, 242, 236, 0.6);
        padding-left: 8px;
        padding-right: 8px;
        margin: 0 -8px;
    }

    .guide-list-item .num {
        font-family: "DIN Alternate", "Bebas Neue", "Oswald", Arial, sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: var(--gold);
        line-height: 1;
        flex-shrink: 0;
        min-width: 40px;
    }

    .guide-list-item .guide-item-body {
        flex: 1;
    }

    .guide-list-item .guide-item-body h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 4px;
        transition: color var(--transition);
    }

    .guide-list-item:hover .guide-item-body h4 { color: var(--primary); }

    .guide-list-item .guide-item-body p {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ===== 战队与主播 ===== */
    .streamer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 3vw, 32px);
    }

    .streamer-card {
        background: #fff;
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        transition: transform var(--transition), box-shadow var(--transition);
    }

    .streamer-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .streamer-avatar {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        margin: 0 auto 16px;
        overflow: hidden;
        border: 3px solid var(--gold);
        padding: 2px;
        background: #fff;
    }

    .streamer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .streamer-card h3 {
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 6px;
    }

    .streamer-card .streamer-tag {
        display: inline-block;
        font-size: 12px;
        color: var(--gold);
        background: rgba(198, 161, 91, 0.12);
        padding: 3px 10px;
        border-radius: 4px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .streamer-card p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .streamer-card .streamer-stats {
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        justify-content: center;
        gap: 20px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .streamer-card .streamer-stats span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .streamer-card .streamer-stats i {
        color: var(--gold);
        font-size: 13px;
    }

    /* ===== 按钮 ===== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 48px;
        padding: 0 28px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        text-decoration: none;
        line-height: 1;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
    }
    .btn-primary:hover {
        background: var(--primary-deep);
        transform: translateY(-2px);
        color: #fff;
        box-shadow: 0 6px 16px rgba(44, 74, 59, 0.3);
    }
    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
    }
    .btn-outline:hover {
        background: rgba(198, 161, 91, 0.1);
        color: var(--gold);
        transform: translateY(-2px);
    }
    .btn-outline:active {
        transform: translateY(0);
    }

    .btn-lg {
        height: 56px;
        padding: 0 36px;
        font-size: 17px;
        font-weight: 700;
    }

    .btn .btn-arrow {
        transition: transform var(--transition);
        display: inline-block;
    }
    .btn:hover .btn-arrow {
        transform: translateX(4px);
    }

    /* ===== FAQ ===== */
    .faq-wrap {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: transparent;
        border: none;
        padding: 0 24px;
        height: 56px;
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        text-align: left;
        transition: color var(--transition);
        gap: 16px;
    }

    .faq-question:hover {
        color: var(--primary);
    }

    .faq-question .faq-icon {
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
    }
    .faq-question .faq-icon::before,
    .faq-question .faq-icon::after {
        content: '';
        position: absolute;
        background: var(--gold);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }
    .faq-question .faq-icon::before {
        width: 14px;
        height: 2px;
        top: 9px;
        left: 3px;
    }
    .faq-question .faq-icon::after {
        width: 2px;
        height: 14px;
        top: 3px;
        left: 9px;
    }
    .faq-question[aria-expanded="true"] .faq-icon::after {
        transform: scaleY(0);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-answer-inner {
        padding: 0 24px 24px;
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-secondary);
    }

    /* ===== CTA ===== */
    .cta-section {
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 6px
        );
        pointer-events: none;
    }

    .cta-box {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .cta-box h2 {
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
    }

    .cta-box h2 .gold-text {
        color: var(--gold-bright);
    }

    .cta-box p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        max-width: 560px;
        margin: 0 auto 32px;
        line-height: 1.8;
    }

    .cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .cta-actions .btn-primary-ghost {
        background: #fff;
        color: var(--primary);
    }
    .cta-actions .btn-primary-ghost:hover {
        background: var(--bg);
        color: var(--primary);
    }

    /* ===== 页脚 ===== */
    .site-footer {
        background: var(--dark);
        padding: clamp(56px, 6vw, 80px) 0 40px;
        margin-top: auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 40px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .footer-logo .logo-badge {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .footer-logo .logo-text {
        font-size: 16px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    .footer-links h4,
    .footer-contact h4 {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .footer-links a {
        display: block;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        padding: 4px 0;
        transition: color var(--transition), padding-left var(--transition);
    }

    .footer-links a:hover {
        color: var(--gold-bright);
        padding-left: 4px;
    }

    .footer-contact p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-contact .contact-icon {
        color: var(--gold);
        width: 16px;
        text-align: center;
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 13px;
    }

    /* ===== 淡入动效 ===== */
    .fade-up {
        opacity: 0;
        transform: translateY(12px);
        animation: fadeUp 0.5s ease forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .no-js .fade-up {
        opacity: 1;
        transform: none;
    }

    /* ===== 响应式 ===== */
    @media (max-width: 1023px) {
        .sidebar {
            display: none;
        }

        .mobile-header {
            display: flex;
        }

        .main-content {
            margin-left: 0;
            padding-top: 60px;
        }

        .category-hero {
            margin: 0 16px;
            border-radius: 12px;
            margin-top: 16px;
        }

        .category-hero .hero-content {
            padding: 32px 24px;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 767px) {
        .esports-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .esports-card,
        .esports-card.highlight {
            height: auto;
        }

        .esports-card .card-cover,
        .esports-card.highlight .card-cover {
            height: 200px;
        }

        .esports-card:nth-child(2),
        .esports-card:nth-child(3) {
            margin-top: 0;
        }

        .guide-wrap {
            grid-template-columns: 1fr;
        }

        .streamer-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .breadcrumb-wrap {
            padding: 16px 16px 0;
        }

        .category-hero {
            min-height: 280px;
        }

        .category-hero h1 {
            font-size: 30px;
        }

        .category-hero .hero-desc {
            font-size: 15px;
        }

        .section-title-wrap h2 {
            font-size: 24px;
        }

        .guide-main,
        .guide-list {
            padding: 20px;
        }

        .cta-actions {
            flex-direction: column;
            width: 100%;
        }

        .cta-actions .btn {
            width: 100%;
        }
    }

    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }

        .category-hero .hero-content {
            padding: 28px 20px;
        }

        .streamer-card {
            padding: 24px 20px;
        }

        .faq-question {
            font-size: 15px;
            padding: 0 16px;
        }

        .faq-answer-inner {
            padding: 0 16px 20px;
            font-size: 14px;
        }

        .guide-list-item .num {
            font-size: 26px;
        }
    }

/* roulang page: category3 */
:root {
    --primary: #2C4A3B;
    --primary-deep: #1E352A;
    --gold: #C6A15B;
    --gold-bright: #D9B874;
    --bg: #F7F5F0;
    --bg-alt: #EFEBE2;
    --dark: #1B241F;
    --text: #222924;
    --text-secondary: #6B726D;
    --border: #E0DBD0;
    --accent: #B85C3A;
    --radius: 16px;
    --shadow: 0 4px 20px rgba(27, 36, 31, 0.06);
    --shadow-lg: 0 12px 36px rgba(27, 36, 31, 0.10);
    --transition: 0.25s ease;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
  }

  a:hover {
    color: var(--gold);
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }

  input, textarea {
    font-family: inherit;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
  }

  /* ===== 侧边栏 ===== */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    background: var(--dark);
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .sidebar-logo {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(198, 161, 91, 0.25);
    flex-shrink: 0;
  }

  .logo-badge {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B241F;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .logo-text {
    color: #F7F5F0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding-top: 8px;
  }

  .menu-group-title {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    padding: 24px 24px 8px;
    text-transform: uppercase;
  }

  .nav-item {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    position: relative;
    gap: 14px;
    transition: color var(--transition), background var(--transition);
  }

  .nav-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
  }

  .nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-bright);
    transform: scaleY(0);
    transition: transform var(--transition);
  }

  .nav-item:hover {
    color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-item:hover i {
    color: var(--gold-bright);
  }

  .nav-item:hover::before {
    transform: scaleY(1);
  }

  .nav-item.active {
    color: var(--gold-bright);
  }

  .nav-item.active i {
    color: var(--gold-bright);
  }

  .nav-item.active::before {
    transform: scaleY(1);
    background: var(--gold-bright);
  }

  .sidebar-user {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }

  .user-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    white-space: nowrap;
  }

  /* ===== 移动端头部 ===== */
  .mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--dark);
    z-index: 60;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-logo .logo-badge {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .mobile-logo .logo-text {
    font-size: 16px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    transition: background var(--transition);
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* 抽屉 */
  .drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 272px;
    height: 100vh;
    background: var(--dark);
    z-index: 70;
    transition: left 0.35s ease;
    overflow-y: auto;
    padding: 24px 0;
  }

  .drawer.open {
    left: 0;
  }

  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 65;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .drawer-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
  }

  .drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .drawer-logo .logo-badge {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .drawer-logo .logo-text {
    font-size: 16px;
  }

  .drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 56px;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    transition: color var(--transition), background var(--transition);
    position: relative;
  }

  .drawer-nav-item i {
    width: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
  }

  .drawer-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-bright);
    transform: scaleY(0);
    transition: transform var(--transition);
  }

  .drawer-nav-item:hover {
    color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.03);
  }

  .drawer-nav-item:hover i {
    color: var(--gold-bright);
  }

  .drawer-nav-item.active {
    color: var(--gold-bright);
  }

  .drawer-nav-item.active i {
    color: var(--gold-bright);
  }

  .drawer-nav-item.active::before {
    transform: scaleY(1);
  }

  /* ===== 主内容区 ===== */
  .main-content {
    margin-left: 240px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* 面包屑 */
  .breadcrumb-wrap {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
  }

  .breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
  }

  .breadcrumb a:hover {
    color: var(--primary);
  }

  .breadcrumb .active {
    color: var(--primary);
    font-weight: 500;
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    min-height: clamp(320px, 40vh, 480px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 36, 31, 0.88) 0%, rgba(27, 36, 31, 0.65) 55%, rgba(27, 36, 31, 0.35) 100%);
  }

  .hero-member {
    background-image: url('/assets/images/backpic/back-3.webp');
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 60px;
  }

  .hero-inner h1 {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    position: relative;
  }

  .hero-inner h1::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 18px;
    border-radius: 2px;
  }

  .hero-inner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    height: 48px;
    padding: 0 28px;
    border-radius: 8px;
    transition: all var(--transition);
    border: 1px solid transparent;
    line-height: 1;
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
  }

  .btn-primary:hover {
    background: var(--primary-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 74, 59, 0.3);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .btn-outline {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: transparent;
  }

  .btn-outline:hover {
    background: rgba(198, 161, 91, 0.12);
    color: var(--gold-bright);
    transform: translateY(-2px);
  }

  .btn-outline:active {
    transform: translateY(0);
  }

  .btn-large {
    height: 56px;
    padding: 0 36px;
    font-size: 17px;
    font-weight: 700;
  }

  .btn-large .fa-arrow-right {
    transition: transform var(--transition);
  }

  .btn-large:hover .fa-arrow-right {
    transform: translateX(4px);
  }

  /* ===== 通用区块 ===== */
  .section {
    padding-block: clamp(56px, 8vw, 96px);
  }

  .section-header {
    margin-bottom: 16px;
  }

  .section-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
    border-radius: 1px;
  }

  .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
  }

  .section-header.light h2 {
    color: #fff;
  }

  .section-subtitle {
    max-width: 640px;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 48px;
  }

  .section-subtitle.light {
    color: rgba(255, 255, 255, 0.6);
  }

  /* ===== 权益卡 ===== */
  .benefits-section {
    background: var(--bg);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: transform var(--transition), box-shadow var(--transition);
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .benefit-card .benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    transition: transform var(--transition);
  }

  .benefit-card:hover .benefit-icon {
    transform: scale(1.05);
  }

  .benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
  }

  .benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  .benefit-card.featured {
    position: relative;
    border-color: var(--gold);
    background: linear-gradient(180deg, #fff, #FDFBF6);
  }

  .benefit-card.featured::before {
    content: 'HOT';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 10px;
    border-radius: 4px;
    height: 20px;
    display: flex;
    align-items: center;
  }

  /* ===== 等级流程（深色） ===== */
  .level-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .level-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.022) 18px,
      rgba(255, 255, 255, 0.022) 19px
    );
    pointer-events: none;
  }

  .steps-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .step-item {
    text-align: left;
    padding-top: 24px;
    position: relative;
  }

  .step-item::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 70px;
    right: -24px;
    height: 2px;
    border-top: 2px dashed rgba(198, 161, 91, 0.35);
    z-index: -1;
  }

  .step-item:last-child::before {
    display: none;
  }

  .step-number {
    font-family: "DIN Alternate", "Bebas Neue", "Oswald", Arial Narrow, sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(198, 161, 91, 0.4);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }

  .step-item:nth-child(4) .step-number {
    color: var(--gold-bright);
    -webkit-text-stroke: 0;
  }

  .step-item h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .step-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===== 图文区 ===== */
  .showcase-section {
    background: var(--bg-alt);
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }

  .showcase-text p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
  }

  .showcase-text .section-header {
    margin-bottom: 20px;
  }

  .showcase-list {
    list-style: none;
    margin-top: 8px;
  }

  .showcase-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .showcase-list li i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
  }

  .showcase-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
  }

  .showcase-image:hover img {
    transform: scale(1.04);
  }

  /* ===== FAQ ===== */
  .faq-section {
    background: var(--bg);
  }

  .faq-list {
    max-width: 860px;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--border);
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 56px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--gold);
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }

  .faq-item summary:hover {
    color: var(--primary);
  }

  .faq-item p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
  }

  /* ===== CTA ===== */
  .cta-section {
    background: var(--bg-alt);
  }

  .cta-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .cta-box h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
  }

  .cta-box p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
  }

  /* ===== 页脚 ===== */
  .site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    padding-bottom: 40px;
    flex-shrink: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-logo .logo-badge {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-logo .logo-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
  }

  .footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-links h4,
  .footer-contact h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color var(--transition);
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-icon {
    color: var(--gold);
    font-size: 13px;
    width: 16px;
    text-align: center;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
  }

  /* ===== 响应式 ===== */
  @media (max-width: 1024px) {
    .sidebar {
      display: none;
    }

    .mobile-header {
      display: flex;
    }

    .main-content {
      margin-left: 0;
      padding-top: 60px;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }

    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 48px 24px;
    }

    .step-item::before {
      display: none;
    }

    .showcase-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 0 16px;
    }

    .hero-inner h1 {
      font-size: 30px;
    }

    .hero-inner p {
      font-size: 16px;
    }

    .hero-buttons .btn {
      padding: 0 20px;
      height: 44px;
      font-size: 14px;
    }

    .btn-large {
      height: 52px;
      padding: 0 30px;
      font-size: 16px;
    }
  }

  @media (max-width: 520px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .section-header h2 {
      font-size: 24px;
    }

    .step-number {
      font-size: 56px;
    }

    .faq-item summary {
      font-size: 15px;
      padding: 0 16px;
    }

    .faq-item p {
      padding: 0 16px 20px;
      font-size: 14px;
    }

    .breadcrumb-wrap {
      padding-top: 16px;
      overflow-x: auto;
      white-space: nowrap;
    }
  }

  /* fade-up 入场 */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-inner,
  .benefits-grid,
  .steps-grid,
  .showcase-grid,
  .faq-list,
  .cta-box {
    animation: fadeUp 0.5s ease both;
  }

  .benefits-grid {
    animation-delay: 0.1s;
  }

  .steps-grid {
    animation-delay: 0.15s;
  }

  .showcase-grid {
    animation-delay: 0.05s;
  }

  .faq-list {
    animation-delay: 0.1s;
  }

  .cta-box {
    animation-delay: 0.1s;
  }
