/* roulang page: index */
:root {
            --primary: #1F3A2D;
            --primary-dark: #16291f;
            --accent: #E8612F;
            --accent-hover: #d05123;
            --gold: #F4C542;
            --bg: #121814;
            --bg-card: #1C2820;
            --bg-input: #121814;
            --text: #F2F0E8;
            --text-sub: #B8C4BA;
            --text-dim: #7E8A7E;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(232, 97, 47, 0.4);
            --radius-card: 14px;
            --radius-img: 10px;
            --radius-btn: 999px;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            --transition: 0.2s ease;
            --content-width: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 1px;
        }

        .section-header p {
            color: var(--text-sub);
            font-size: 16px;
            margin-top: 12px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(232, 97, 47, 0.15);
            color: var(--accent);
            border: 1px solid rgba(232, 97, 47, 0.3);
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 16px;
            letter-spacing: 0.5px;
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(18, 24, 20, 0.7);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: rgba(31, 58, 45, 0.95);
            box-shadow: var(--shadow);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: 0.5px;
        }

        .logo a:hover {
            color: var(--gold);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            color: #1a1a1a;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .main-nav .nav-link {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-sub);
            transition: all var(--transition);
        }

        .main-nav .nav-link:hover {
            color: var(--accent);
            background: rgba(232, 97, 47, 0.08);
        }

        .main-nav .nav-link.active {
            color: var(--text);
            background: rgba(244, 197, 66, 0.12);
            border: 1px solid rgba(244, 197, 66, 0.25);
            font-weight: 600;
        }

        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 14px;
            transition: all var(--transition);
            box-shadow: 0 4px 14px rgba(232, 97, 47, 0.3);
        }

        .nav-cta:hover {
            background: var(--accent-hover);
            transform: scale(1.03);
            color: #fff;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 20px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }

        /* ===== Hero ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: url('/assets/images/backpic/back-1.png') center center/cover no-repeat;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 60%, rgba(18, 24, 20, 0.68) 0%, rgba(18, 24, 20, 0.82) 55%, rgba(18, 24, 20, 0.95) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 620px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 197, 66, 0.12);
            border: 1px solid rgba(244, 197, 66, 0.3);
            color: var(--gold);
            padding: 6px 18px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 44px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .hero-sub {
            font-size: 18px;
            color: var(--text-sub);
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(232, 97, 47, 0.35);
            transition: all var(--transition);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: scale(1.03);
            color: #fff;
            box-shadow: 0 8px 24px rgba(232, 97, 47, 0.4);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text);
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(232, 97, 47, 0.06);
        }

        .btn-text {
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            border-bottom: 1px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
            background: none;
            padding: 0;
        }

        .btn-text:hover {
            border-bottom-color: var(--accent);
            opacity: 0.85;
        }

        .hero-visual {
            position: absolute;
            right: 6%;
            top: 50%;
            transform: translateY(-50%);
            width: 250px;
            z-index: 2;
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            padding: 10px;
        }

        .hero-visual img {
            border-radius: 18px;
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
        }

        .hero-visual .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(232, 97, 47, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .hero-visual .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.08);
            background: var(--accent);
        }

        /* ===== Hot Cards ===== */
        .hot-section {
            background: var(--bg);
        }

        .hot-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .hot-card {
            position: relative;
            background: var(--bg-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .hot-card:hover {
            border-color: rgba(232, 97, 47, 0.4);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .hot-card .cover {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
        }

        .hot-card .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .hot-card:hover .cover img {
            transform: scale(1.06);
        }

        .hot-card .cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(18, 24, 20, 0.78) 0%, rgba(18, 24, 20, 0.1) 50%, rgba(18, 24, 20, 0.2) 100%);
        }

        .hot-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--gold);
            color: #1a1a1a;
            font-size: 12px;
            font-weight: 800;
            padding: 3px 12px;
            border-radius: var(--radius-btn);
            z-index: 3;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hot-duration {
            position: absolute;
            right: 14px;
            bottom: 14px;
            background: rgba(0, 0, 0, 0.6);
            color: var(--text);
            font-size: 12px;
            padding: 2px 10px;
            border-radius: var(--radius-btn);
            z-index: 3;
            font-weight: 600;
        }

        .hot-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            z-index: 3;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all var(--transition);
        }

        .hot-card:hover .hot-play {
            background: var(--accent);
            border-color: var(--accent);
            transform: translate(-50%, -50%) scale(1.06);
        }

        .hot-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 16px 14px;
            z-index: 3;
        }

        .hot-info h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-info .hot-meta {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 6px;
        }

        /* ===== List Section (种草清单) ===== */
        .list-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .list-wrapper {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .list-row {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 12px 16px;
            transition: all var(--transition);
        }

        .list-row:hover {
            border-color: rgba(232, 97, 47, 0.3);
            background: rgba(232, 97, 47, 0.04);
            transform: translateX(4px);
        }

        .list-thumb {
            width: 112px;
            height: 112px;
            border-radius: var(--radius-img);
            overflow: hidden;
            flex-shrink: 0;
        }

        .list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .list-content {
            flex: 1;
            min-width: 0;
        }

        .list-content .list-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 4px;
            flex-wrap: wrap;
        }

        .tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            color: var(--text-sub);
            font-size: 12px;
            font-weight: 500;
            padding: 2px 10px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
        }

        .tag:hover {
            color: var(--accent);
            border-color: rgba(232, 97, 47, 0.4);
            background: rgba(232, 97, 47, 0.08);
        }

        .list-content h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .list-content p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .list-btn {
            flex-shrink: 0;
            background: var(--accent);
            color: #fff;
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            font-size: 13px;
            font-weight: 600;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .list-btn:hover {
            background: var(--accent-hover);
            transform: scale(1.03);
            color: #fff;
        }

        /* ===== Rating / Testimonials ===== */
        .rating-section {
            background: var(--bg);
            overflow: hidden;
        }

        .rating-strip {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
        }

        .rating-strip::-webkit-scrollbar {
            height: 4px;
        }

        .rating-strip::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 4px;
        }

        .rating-bubble {
            min-width: 280px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition);
        }

        .rating-bubble:hover {
            border-color: rgba(232, 97, 47, 0.3);
            transform: translateY(-2px);
        }

        .rating-stars {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .rating-bubble blockquote {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            border: none;
        }

        .rating-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
        }

        .rating-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            border: 1px solid rgba(244, 197, 66, 0.3);
        }

        .rating-user span {
            font-size: 13px;
            color: var(--text-dim);
        }

        /* ===== CTA Section ===== */
        .cta-section {
            position: relative;
            background: var(--primary);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0;
        }

        .cta-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-copy h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-copy p {
            color: var(--text-sub);
            font-size: 16px;
            line-height: 1.7;
        }

        .cta-features {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-sub);
        }

        .cta-feature i {
            color: var(--gold);
            font-size: 16px;
        }

        .cta-form-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            box-shadow: var(--shadow);
        }

        .cta-form-wrap h3 {
            font-size: 22px;
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            background: var(--bg-input);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 15px;
            color: var(--text);
            transition: all var(--transition);
        }

        .form-group input::placeholder {
            color: var(--text-dim);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(232, 97, 47, 0.15);
        }

        .form-group select {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B8C4BA' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .form-group select option {
            background: var(--bg-card);
            color: var(--text);
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
            justify-content: center;
        }

        .form-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-dim);
            margin-top: 12px;
            line-height: 1.5;
        }

        /* ===== Info List / CMS ===== */
        .info-section {
            background: var(--bg);
        }

        .info-layout {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .info-list {
            display: flex;
            flex-direction: column;
        }

        .info-item {
            display: block;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            border-left: 3px solid transparent;
            transition: all var(--transition);
            border-radius: 0 8px 8px 0;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.03);
            border-left-color: var(--accent);
        }

        .info-item .info-cat {
            display: inline-block;
            font-size: 12px;
            color: var(--accent);
            background: rgba(232, 97, 47, 0.1);
            border: 1px solid rgba(232, 97, 47, 0.2);
            padding: 2px 12px;
            border-radius: var(--radius-btn);
            margin-bottom: 6px;
        }

        .info-item .info-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            display: block;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .info-item:hover .info-title {
            color: var(--accent);
        }

        .info-item .info-desc {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .info-item .info-meta {
            font-size: 13px;
            color: var(--text-dim);
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-sidebar {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px;
            position: sticky;
            top: 96px;
        }

        .info-sidebar h3 {
            font-size: 18px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-sidebar h3 i {
            color: var(--accent);
        }

        .info-sidebar p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .info-empty {
            text-align: center;
            padding: 48px 20px;
            border: 1px dashed rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
        }

        .info-empty .empty-icon {
            font-size: 36px;
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .info-empty p {
            color: var(--text-sub);
            font-size: 16px;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
        }

        .faq-list {
            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 {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            color: var(--text);
            font-size: 17px;
            font-weight: 600;
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer-inner {
            padding: 0 8px 20px;
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0d120f;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand .logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.7;
            max-width: 360px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-sub);
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-contact {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        .footer-contact i {
            width: 20px;
            color: var(--accent);
            margin-right: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-dim);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .hero-visual {
                display: none;
            }

            .hot-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .info-layout {
                grid-template-columns: 1fr;
            }

            .info-sidebar {
                position: static;
                margin-top: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 56px 0;
            }

            .header-inner {
                height: 64px;
            }

            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px 24px;
                border-bottom: 1px solid var(--border);
                transform: translateY(-120%);
                transition: transform 0.3s ease;
                box-shadow: var(--shadow);
            }

            .main-nav.open {
                transform: translateY(0);
            }

            .main-nav .nav-link {
                padding: 14px 16px;
                border-radius: 10px;
                font-size: 16px;
            }

            .nav-cta {
                margin-top: 8px;
                text-align: center;
                justify-content: center;
            }

            .hero {
                min-height: 60vh;
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .hot-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .list-row {
                flex-direction: row;
                align-items: flex-start;
                padding: 12px;
                gap: 12px;
            }

            .list-thumb {
                width: 84px;
                height: 84px;
            }

            .list-btn {
                padding: 6px 14px;
                font-size: 12px;
            }

            .cta-section {
                padding: 56px 0;
            }

            .cta-form-wrap {
                padding: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hot-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .hot-info h3 {
                font-size: 14px;
            }

            .section-header h2 {
                font-size: 26px;
            }

            .rating-bubble {
                min-width: 240px;
            }
        }

/* roulang page: category1 */
/* ===== 设计变量 ===== */
        :root {
            --primary: #1F3A2D;
            --accent: #E8612F;
            --accent-dark: #C9471F;
            --highlight: #F4C542;
            --bg-dark: #121814;
            --bg-card: #1C2820;
            --text-main: #F2F0E8;
            --text-secondary: #B8C4BA;
            --text-muted: #7E8A7E;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(232, 97, 47, 0.4);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            --transition: 0.2s ease;
        }

        /* ===== 基础 Reset ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            outline: none;
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 120;
            background: rgba(18, 24, 20, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            background: rgba(18, 24, 20, 0.96);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--text-main);
        }
        .logo a:hover {
            color: var(--text-main);
        }
        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: var(--accent);
            color: #fff;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 800;
            font-style: italic;
            box-shadow: 0 4px 14px rgba(232, 97, 47, 0.35);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link {
            display: inline-block;
            padding: 10px 18px;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            border-radius: 999px;
            transition: all 0.2s ease;
        }
        .nav-link:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-link.active {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.08);
            font-weight: 600;
        }
        .nav-link.nav-cta {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 999px;
            box-shadow: 0 4px 18px rgba(232, 97, 47, 0.3);
            margin-left: 8px;
        }
        .nav-link.nav-cta:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: scale(1.03);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 22px;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #0E1410;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 64px 0 0;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
        }
        .footer-brand .logo {
            margin-bottom: 16px;
        }
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
            max-width: 360px;
        }
        .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 18px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-contact p {
            color: var(--text-secondary);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-contact i {
            color: var(--accent);
            width: 16px;
            text-align: center;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 24px 0;
            text-align: center;
        }
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ===== Hero 窄横幅 ===== */
        .category-hero {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(18, 24, 20, 0.95) 0%, rgba(18, 24, 20, 0.78) 45%, rgba(18, 24, 20, 0.35) 100%);
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(180deg, transparent, var(--bg-dark));
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 197, 66, 0.15);
            border: 1px solid rgba(244, 197, 66, 0.35);
            color: var(--highlight);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
        }
        .hero-badge i {
            font-size: 12px;
        }
        .category-hero h1 {
            font-size: 44px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
            color: var(--text-main);
            letter-spacing: 1px;
        }
        .category-hero .hero-sub {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: 32px;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ===== 按钮 ===== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 32px;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 20px rgba(232, 97, 47, 0.3);
        }
        .btn-primary:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: scale(1.02);
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-main);
            font-size: 15px;
            font-weight: 500;
            padding: 13px 30px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(232, 97, 47, 0.06);
        }

        /* ===== 图文专题区 ===== */
        .section-block {
            padding: 88px 0;
        }
        .section-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }
        .section-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            color: var(--text-main);
        }
        .section-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 720px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 56px;
            align-items: center;
        }
        .feature-text .section-title {
            margin-bottom: 20px;
        }
        .feature-text p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        .feature-list {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .feature-list li i {
            color: var(--accent);
            margin-top: 4px;
            font-size: 14px;
            flex-shrink: 0;
        }
        .feature-img {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .feature-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(18, 24, 20, 0.5));
            pointer-events: none;
        }
        .feature-img img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }
        .feature-img-caption {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            z-index: 2;
            color: var(--text-main);
            font-size: 14px;
            background: rgba(18, 24, 20, 0.55);
            padding: 8px 14px;
            border-radius: 8px;
            backdrop-filter: blur(6px);
        }

        /* ===== 数据卡区 ===== */
        .stats-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            transition: all 0.2s ease;
        }
        .stat-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-3px);
        }
        .stat-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(232, 97, 47, 0.12);
            color: var(--accent);
            border-radius: 12px;
            font-size: 18px;
            margin-bottom: 16px;
        }
        .stat-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .stat-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== 精选阅读区 ===== */
        .reading-section {
            position: relative;
        }
        .reading-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        .reading-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .reading-header .section-title {
            font-size: 30px;
        }
        .reading-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .reading-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 26px 20px;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s ease, border-color 0.2s ease;
            border-radius: 8px;
            position: relative;
        }
        .reading-item:first-child {
            border-top: 1px solid var(--border);
        }
        .reading-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .reading-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 3px;
            background: var(--accent);
            border-radius: 0 3px 3px 0;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .reading-item:hover::before {
            opacity: 1;
        }
        .reading-info {
            flex: 1;
            min-width: 0;
        }
        .reading-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }
        .reading-tag {
            display: inline-block;
            font-size: 12px;
            color: var(--highlight);
            background: rgba(244, 197, 66, 0.1);
            border: 1px solid rgba(244, 197, 66, 0.25);
            padding: 3px 10px;
            border-radius: 999px;
            font-weight: 500;
        }
        .reading-date {
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .reading-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 6px;
            transition: color 0.2s ease;
        }
        .reading-item:hover .reading-title {
            color: var(--accent);
        }
        .reading-excerpt {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .reading-arrow {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            border-radius: 50%;
            color: var(--text-muted);
            transition: all 0.2s ease;
        }
        .reading-item:hover .reading-arrow {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(232, 97, 47, 0.08);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .faq-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-item:first-of-type {
            border-top: 1px solid var(--border);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 22px 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            transition: color 0.2s ease;
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-toggle-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            border-radius: 50%;
            font-size: 14px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }
        .faq-item.active .faq-toggle-icon {
            transform: rotate(45deg);
            border-color: var(--accent);
            color: var(--accent);
        }
        .faq-answer {
            display: none;
            padding: 0 8px 22px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ===== CTA + 表单 ===== */
        .cta-section {
            position: relative;
            padding: 96px 0;
            background: var(--primary);
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(232, 97, 47, 0.18) 0%, transparent 70%);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(244, 197, 66, 0.1) 0%, transparent 70%);
        }
        .cta-inner {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .cta-section .section-title {
            font-size: 32px;
            margin-bottom: 14px;
        }
        .cta-desc {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 36px;
        }
        .follow-form {
            background: rgba(18, 24, 20, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .form-row-inline {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-input,
        .form-select {
            width: 100%;
            background: var(--bg-dark);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            color: var(--text-main);
            font-size: 15px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            appearance: none;
            -webkit-appearance: none;
        }
        .form-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B8C4BA' d='M6 8L0 0h12L6 8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }
        .form-input::placeholder {
            color: var(--text-muted);
        }
        .form-input:focus,
        .form-select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(232, 97, 47, 0.15);
        }
        .form-note {
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 4px;
        }
        .cta-submit {
            width: 100%;
            padding: 15px 32px;
            font-size: 16px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .feature-grid {
                gap: 40px;
            }
            .category-hero h1 {
                font-size: 38px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-flex;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 78px;
                left: 0;
                right: 0;
                background: rgba(18, 24, 20, 0.98);
                flex-direction: column;
                padding: 16px 24px 28px;
                gap: 4px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
            }
            .main-nav.open {
                display: flex;
            }
            .nav-link {
                display: block;
                padding: 14px 16px;
                border-radius: 10px;
                width: 100%;
                text-align: left;
            }
            .nav-link.nav-cta {
                margin-left: 0;
                margin-top: 10px;
                text-align: center;
            }
            .category-hero {
                min-height: 460px;
                padding: 120px 0 60px;
            }
            .category-hero h1 {
                font-size: 32px;
            }
            .category-hero .hero-sub {
                font-size: 15px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .feature-img img {
                height: 300px;
            }
            .section-block {
                padding: 64px 0;
            }
            .section-title {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .form-row-inline {
                grid-template-columns: 1fr;
            }
            .follow-form {
                padding: 24px 20px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                height: 68px;
            }
            .main-nav {
                top: 68px;
            }
            .logo a {
                font-size: 18px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
            .category-hero {
                min-height: 420px;
                padding: 104px 0 48px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .reading-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 20px 12px;
            }
            .reading-arrow {
                display: none;
            }
            .cta-section {
                padding: 64px 0;
            }
            .cta-section .section-title {
                font-size: 26px;
            }
        }

/* roulang page: article */
:root {
            --primary: #1F3A2D;
            --primary-light: #2a4b3b;
            --accent: #E8612F;
            --accent-dark: #cf4e1f;
            --highlight: #F4C542;
            --bg: #121814;
            --bg-alt: #1C2820;
            --bg-deep: #0c110d;
            --text: #F2F0E8;
            --text-sub: #B8C4BA;
            --text-muted: #7E8A7E;
            --border: rgba(255,255,255,0.08);
            --border-accent: rgba(232,97,47,0.4);
            --radius: 14px;
            --radius-sm: 8px;
            --shadow: 0 8px 24px rgba(0,0,0,0.25);
            --transition: 0.2s ease;
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --section-pad: 72px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), background var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        ul, ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-narrow {
            max-width: 820px;
            margin: 0 auto;
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }

        h1, h2, h3, h4, h5, h6 {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }

        /* ========== Header & Nav ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(12, 17, 13, 0.96);
            border-bottom: 1px solid var(--border);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-header.scrolled {
            background: var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.35);
            border-bottom-color: rgba(255,255,255,0.1);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }

        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .logo a:hover {
            color: var(--text);
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 800;
            font-style: italic;
            line-height: 1;
            box-shadow: 0 0 18px rgba(232,97,47,0.35);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link {
            display: inline-block;
            padding: 8px 16px;
            color: var(--text-sub);
            font-size: 15px;
            font-weight: 500;
            border-radius: 999px;
            transition: all var(--transition);
        }

        .nav-link:hover {
            color: var(--text);
            background: rgba(255,255,255,0.06);
        }

        .nav-link.active {
            color: var(--text);
            background: rgba(255,255,255,0.08);
        }

        .nav-link.active::after {
            content: "";
            display: block;
            height: 2px;
            width: 18px;
            margin: 3px auto 0;
            background: var(--accent);
            border-radius: 2px;
        }

        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 9px 22px;
            font-weight: 600;
            border-radius: 999px;
            box-shadow: 0 4px 14px rgba(232,97,47,0.3);
        }

        .nav-cta:hover {
            background: var(--accent-dark);
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(232,97,47,0.4);
        }

        .nav-toggle {
            display: none;
            color: var(--text);
            font-size: 22px;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: rgba(255,255,255,0.08);
        }

        /* ========== Breadcrumb ========== */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .breadcrumb a {
            color: var(--text-sub);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb-sep {
            color: var(--text-muted);
            font-size: 12px;
            margin: 0 4px;
        }

        .breadcrumb .current {
            color: var(--text);
            max-width: 260px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ========== Article Hero ========== */
        .article-hero {
            position: relative;
            padding: 140px 0 64px;
            background: linear-gradient(rgba(18,24,20,0.92), rgba(18,24,20,0.82)), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            border-bottom: 1px solid var(--border);
        }

        .article-cat-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(232,97,47,0.15);
            color: var(--accent);
            border: 1px solid rgba(232,97,47,0.35);
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .article-hero h1 {
            font-size: 38px;
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 20px;
            max-width: 760px;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 24px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .article-meta i {
            color: var(--accent);
            font-size: 14px;
        }

        /* ========== Article Content ========== */
        .article-body {
            padding: 56px 0 40px;
        }

        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
        }

        .article-content p {
            margin: 0 0 1.5em;
        }

        .article-content h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 2em 0 1em;
            padding-left: 14px;
            border-left: 4px solid var(--accent);
            color: var(--text);
        }

        .article-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 1.8em 0 0.8em;
            color: var(--text);
        }

        .article-content ul {
            margin: 0 0 1.5em;
            padding: 0;
            list-style: none;
        }

        .article-content ul li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 10px;
        }

        .article-content ul li::before {
            content: "";
            position: absolute;
            left: 4px;
            top: 12px;
            width: 7px;
            height: 7px;
            background: var(--accent);
            border-radius: 50%;
        }

        .article-content ol {
            margin: 0 0 1.5em;
            padding-left: 20px;
            list-style: decimal;
        }

        .article-content ol li {
            padding-left: 6px;
            margin-bottom: 10px;
        }

        .article-content blockquote {
            margin: 1.8em 0;
            padding: 18px 22px;
            background: var(--bg-alt);
            border-left: 3px solid var(--accent);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: var(--text-sub);
            font-style: normal;
        }

        .article-content blockquote p {
            margin-bottom: 0;
        }

        .article-content img {
            margin: 24px 0;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .article-content figure {
            margin: 24px 0;
        }

        .article-content figure img {
            margin: 0;
        }

        .article-content figcaption {
            color: var(--text-muted);
            font-size: 13px;
            text-align: center;
            margin-top: 12px;
        }

        .article-content table {
            width: 100%;
            margin: 24px 0;
            border-collapse: collapse;
            background: var(--bg-alt);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .article-content table th {
            background: var(--primary);
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--text);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .article-content table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: var(--text-sub);
        }

        .article-content table tr:last-child td {
            border-bottom: none;
        }

        .article-content a {
            color: var(--accent);
            text-decoration: underline;
            text-decoration-color: rgba(232,97,47,0.5);
            text-underline-offset: 3px;
        }

        .article-content a:hover {
            color: var(--highlight);
            text-decoration-color: var(--highlight);
        }

        .article-content .aligncenter {
            margin-left: auto;
            margin-right: auto;
        }

        .article-content .alignleft {
            margin-right: auto;
        }

        .article-content .alignright {
            margin-left: auto;
        }

        /* ========== Article Tags ========== */
        .article-tags {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .tags-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-right: 6px;
        }

        .tag {
            display: inline-block;
            padding: 4px 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            color: var(--text-sub);
            font-size: 13px;
            border-radius: 999px;
            transition: all var(--transition);
            cursor: default;
        }

        .tag:hover {
            border-color: var(--border-accent);
            color: var(--accent);
        }

        /* ========== Related Section ========== */
        .related-section {
            padding: 0 0 64px;
        }

        .related-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 28px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .related-section h2::before {
            content: "";
            width: 4px;
            height: 22px;
            background: var(--accent);
            border-radius: 4px;
        }

        .related-grid {
            display: grid;
            gap: 24px;
        }

        .related-card {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all var(--transition);
        }

        .related-card:hover {
            border-color: var(--border-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .related-card-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: var(--primary);
        }

        .related-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover .related-card-img img {
            transform: scale(1.04);
        }

        .related-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .related-card-body h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.55;
            color: var(--text);
            margin: 0;
            flex: 1;
        }

        .related-card-body a:not(.related-card-link) {
            color: var(--accent);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .related-card-body a:not(.related-card-link):hover {
            color: var(--highlight);
        }

        .related-card-cat {
            display: inline-block;
            background: rgba(244,197,66,0.12);
            color: var(--highlight);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 999px;
        }

        /* ========== Return Links ========== */
        .return-links {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 28px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            border: 1px solid var(--accent);
            box-shadow: 0 4px 14px rgba(232,97,47,0.25);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            color: #fff;
            transform: scale(1.02);
            box-shadow: 0 6px 22px rgba(232,97,47,0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255,255,255,0.25);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(232,97,47,0.08);
        }

        .btn:active {
            transform: scale(0.98);
        }

        /* ========== Not Found ========== */
        .not-found-section {
            padding: 120px 0 100px;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .not-found-box {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 56px 40px;
            text-align: center;
            max-width: 520px;
            margin: 0 auto;
        }

        .not-found-box i {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .not-found-box h2 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .not-found-box p {
            color: var(--text-sub);
            margin-bottom: 28px;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border);
            padding: 64px 0 28px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand .logo {
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--text-sub);
            font-size: 14px;
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-contact p {
            color: var(--text-sub);
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact i {
            color: var(--accent);
            width: 16px;
            text-align: center;
        }

        .footer-bottom {
            padding-top: 24px;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 64px;
            }

            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--bg-deep);
                flex-direction: column;
                align-items: stretch;
                padding: 12px 24px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border);
                display: none;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }

            .main-nav.open {
                display: flex;
            }

            .nav-link {
                padding: 12px 16px;
                font-size: 16px;
                border-radius: var(--radius-sm);
            }

            .nav-cta {
                margin-top: 8px;
                text-align: center;
                background: var(--accent);
            }

            .article-hero {
                padding: 110px 0 48px;
            }

            .article-hero h1 {
                font-size: 28px;
            }

            .article-meta {
                gap: 8px 16px;
                font-size: 13px;
            }

            .article-body {
                padding: 40px 0 32px;
            }

            .related-section h2 {
                font-size: 24px;
            }

            .not-found-section {
                padding: 100px 0 80px;
            }

            .not-found-box {
                padding: 40px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 520px) {
            .logo a {
                font-size: 17px;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }

            .article-hero h1 {
                font-size: 24px;
            }

            .article-content {
                font-size: 15px;
            }

            .article-content h2 {
                font-size: 22px;
            }

            .article-content h3 {
                font-size: 18px;
            }

            .return-links {
                flex-direction: column;
                align-items: stretch;
            }

            .return-links .btn {
                width: 100%;
            }

            .not-found-box h2 {
                font-size: 24px;
            }

            .footer-bottom p {
                font-size: 12px;
            }
        }

/* roulang page: category2 */
/* ========== Design Variables ========== */
        :root {
            --primary: #1F3A2D;
            --primary-light: #2A4D3B;
            --accent: #E8612F;
            --accent-dark: #C94E22;
            --highlight: #F4C542;
            --bg-body: #121814;
            --bg-card: #1C2820;
            --bg-deep: #0A0F0C;
            --text-main: #F2F0E8;
            --text-secondary: #B8C4BA;
            --text-muted: #7E8A7E;
            --border-color: rgba(255,255,255,0.08);
            --border-hover: rgba(232,97,47,0.4);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow: 0 8px 24px rgba(0,0,0,0.25);
            --transition: 0.2s ease;
            --font-primary: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
        }

        /* ========== Reset & Base ========== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-primary);
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
        }
        main {
            flex: 1 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .text-center { text-align: center; }

        /* ========== Buttons ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
            text-align: center;
            min-height: 46px;
        }
        .btn-primary {
            background-color: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .btn-primary:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            color: #fff;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(232,97,47,0.2);
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .btn-outline {
            background-color: transparent;
            border-color: rgba(255,255,255,0.5);
            color: var(--text-main);
        }
        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background-color: rgba(232,97,47,0.05);
        }
        .btn-text {
            background: none;
            border: none;
            color: var(--accent);
            padding: 6px 0;
            font-size: 15px;
            text-decoration: underline;
            cursor: pointer;
            min-height: 44px;
        }
        .btn-text:active {
            opacity: 0.7;
        }

        /* ========== Header Navigation ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--primary);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: background-color 0.3s ease;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 74px;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
        }
        .logo a:hover {
            color: var(--text-main);
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            font-style: italic;
            line-height: 1;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-link {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--text-main);
        }
        .nav-link.active {
            color: var(--text-main);
            border-bottom-color: var(--accent);
        }
        .nav-link.nav-cta {
            background: var(--accent);
            color: #fff;
            padding: 10px 24px;
            border-radius: 999px;
            border-bottom: none;
            font-weight: 600;
            transition: background-color var(--transition), transform var(--transition);
        }
        .nav-link.nav-cta:hover {
            background-color: var(--accent-dark);
            color: #fff;
            transform: scale(1.02);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 26px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
        }

        /* ========== Mobile Navigation ========== */
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 74px;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 20px 24px 24px;
                gap: 12px;
                display: none;
                align-items: stretch;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 12px 24px rgba(0,0,0,0.3);
                max-height: calc(100vh - 74px);
                overflow-y: auto;
            }
            .main-nav.open {
                display: flex;
            }
            .nav-link {
                padding: 14px 8px;
                font-size: 17px;
                border-bottom: 1px solid var(--border-color);
                border-bottom: none;
                display: block;
            }
            .nav-link.active {
                border-left: 3px solid var(--accent);
                padding-left: 12px;
                background: rgba(232,97,47,0.08);
                border-bottom: none;
            }
            .nav-link.nav-cta {
                margin-top: 8px;
                text-align: center;
                border-bottom: none;
                padding: 14px;
            }
            .nav-toggle {
                display: inline-flex;
            }
            .header-inner {
                min-height: 74px;
            }
            .logo a {
                font-size: 18px;
            }
            .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 20px;
            }
        }

        /* ========== Hero - 赛事指南 ========== */
        .guide-hero {
            position: relative;
            padding: 88px 0 72px;
            background: linear-gradient(135deg, rgba(18,24,20,0.94) 0%, rgba(31,58,45,0.88) 55%, rgba(18,24,20,0.86) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }
        .guide-hero::after {
            content: '';
            position: absolute;
            right: -120px;
            top: 50%;
            transform: translateY(-50%);
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(232,97,47,0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .guide-hero h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
            color: var(--text-main);
            letter-spacing: 1px;
        }
        .guide-hero p.lead {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 620px;
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .guide-hero .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 28px;
        }
        .hero-meta .meta-item {
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border-color);
            border-radius: 999px;
            padding: 10px 22px;
            font-size: 14px;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(4px);
        }
        .hero-meta .meta-item i {
            color: var(--accent);
        }

        /* ========== Guide Body - Two Column Layout ========== */
        .guide-body {
            padding: 72px 0 80px;
        }
        .guide-layout {
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 48px;
            align-items: start;
        }
        .guide-anchor {
            position: sticky;
            top: 96px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
            scrollbar-width: thin;
        }
        .anchor-title {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
        }
        .anchor-list {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .anchor-link {
            padding: 11px 14px;
            border-radius: 8px;
            font-size: 15px;
            color: var(--text-secondary);
            border-left: 3px solid transparent;
            transition: all var(--transition);
            line-height: 1.4;
        }
        .anchor-link:hover {
            background: rgba(255,255,255,0.04);
            color: var(--text-main);
        }
        .anchor-link.active {
            background: rgba(232,97,47,0.08);
            color: var(--accent);
            border-left-color: var(--accent);
            font-weight: 600;
        }

        .guide-content {
            min-width: 0;
        }
        .guide-section {
            margin-bottom: 56px;
            scroll-margin-top: 100px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px 36px 40px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .guide-section:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow);
        }
        .guide-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.3;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guide-section h2 .section-num {
            background: var(--accent);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .guide-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--text-main);
            line-height: 1.4;
        }
        .guide-section p {
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
        .guide-section ul, .guide-section ol {
            padding-left: 20px;
            margin-bottom: 18px;
            list-style-position: outside;
        }
        .guide-section li {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .guide-section blockquote {
            border-left: 4px solid var(--accent);
            background: rgba(232,97,47,0.04);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
            font-style: normal;
            color: var(--text-secondary);
        }
        .guide-section blockquote p {
            margin-bottom: 0;
            font-size: 15px;
        }
        .guide-image {
            margin: 28px 0;
            border-radius: var(--radius-md);
            overflow: hidden;
            max-height: 320px;
            object-fit: cover;
            width: 100%;
        }
        .guide-image-caption {
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 8px;
        }

        /* ========== Guide CTA ========== */
        .guide-cta {
            background: var(--primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            margin-top: 32px;
            position: relative;
            overflow: hidden;
        }
        .guide-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
        }
        .guide-cta h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-main);
        }
        .guide-cta p {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto 28px;
            line-height: 1.6;
        }

        /* ========== Team / CTA Section ========== */
        .follow-section {
            padding: 70px 0;
            background: var(--primary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-top: 8px;
            position: relative;
        }
        .follow-box {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 42px;
            border: 1px solid var(--border-color);
        }
        .follow-box h2 {
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .follow-box > p {
            text-align: center;
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 26px;
        }
        .follow-form .form-item {
            margin-bottom: 18px;
        }
        .follow-form label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-main);
        }
        .follow-form input[type="text"],
        .follow-form input[type="tel"],
        .follow-form select {
            width: 100%;
            background: var(--bg-body);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-sm);
            padding: 13px 16px;
            font-size: 16px;
            color: var(--text-main);
            font-family: var(--font-primary);
            transition: border-color var(--transition), box-shadow var(--transition);
            appearance: none;
            -webkit-appearance: none;
        }
        .follow-form input:focus,
        .follow-form select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(232,97,47,0.15);
        }
        .follow-form select {
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 12px;
            cursor: pointer;
        }
        .form-submit {
            margin-top: 24px;
            text-align: center;
        }
        .form-hint {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-color);
            padding: 68px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 44px;
            margin-bottom: 48px;
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 340px;
        }
        .footer-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 18px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            font-size: 15px;
            color: var(--text-secondary);
            transition: color var(--transition), padding-left var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }
        .footer-contact p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-contact i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding: 24px 0;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            .guide-layout {
                grid-template-columns: 220px minmax(0, 1fr);
                gap: 32px;
            }
            .guide-section {
                padding: 28px;
            }
        }
        @media (max-width: 768px) {
            .guide-hero {
                padding: 56px 0 48px;
            }
            .guide-hero h1 {
                font-size: 32px;
            }
            .guide-hero p.lead {
                font-size: 17px;
            }
            .guide-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .guide-anchor {
                position: static;
                max-height: none;
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }
            .anchor-list {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 6px;
            }
            .anchor-link {
                padding: 8px 14px;
                border: 1px solid var(--border-color);
                border-radius: 999px;
                border-left: 1px solid var(--border-color);
                font-size: 14px;
                background: rgba(255,255,255,0.02);
            }
            .anchor-link.active {
                background: rgba(232,97,47,0.12);
                border-color: var(--accent);
            }
            .guide-section {
                padding: 24px 20px;
            }
            .guide-section h2 {
                font-size: 24px;
            }
            .guide-cta {
                padding: 36px 22px;
            }
            .guide-cta h3 {
                font-size: 24px;
            }
            .follow-box {
                padding: 28px 22px;
            }
            .follow-box h2 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .guide-hero h1 {
                font-size: 28px;
            }
            .guide-hero .meta-item {
                padding: 8px 14px;
                font-size: 13px;
            }
            .guide-body {
                padding: 48px 0;
            }
            .guide-section p,
            .guide-section li {
                font-size: 15px;
            }
            .follow-form input[type="text"],
            .follow-form input[type="tel"],
            .follow-form select {
                font-size: 16px;
                min-height: 46px;
            }
            .btn {
                padding: 13px 26px;
                min-height: 46px;
                width: 100%;
                max-width: none;
            }
            .form-submit .btn {
                width: 100%;
            }
            .hero-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-bottom p {
                font-size: 13px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #1F3A2D;
            --accent: #E8612F;
            --highlight: #F4C542;
            --bg: #121814;
            --bg-card: #1C2820;
            --text: #F2F0E8;
            --text-secondary: #B8C4BA;
            --text-muted: #7E8A7E;
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(232,97,47,0.4);
            --radius: 14px;
            --radius-sm: 8px;
            --shadow: 0 8px 24px rgba(0,0,0,0.25);
            --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --transition: 0.2s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), background var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(18, 24, 20, 0.55);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid transparent;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(18, 24, 20, 0.96);
            border-color: rgba(255, 255, 255, 0.06);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(232, 97, 47, 0.3);
        }

        .logo span {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-link.active {
            color: var(--text);
            background: rgba(232, 97, 47, 0.15);
        }

        .nav-cta {
            background: var(--accent);
            color: #fff;
            padding: 10px 22px;
            border-radius: 999px;
            font-weight: 600;
            margin-left: 8px;
            box-shadow: 0 4px 14px rgba(232, 97, 47, 0.3);
        }

        .nav-cta:hover {
            background: #d95824;
            color: #fff;
            transform: scale(1.02);
        }

        .nav-toggle {
            display: none;
            font-size: 22px;
            color: var(--text);
            padding: 8px;
            z-index: 110;
        }

        .guide-hero {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            background-size: cover;
            background-position: center;
            background-color: var(--bg-card);
        }

        .guide-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(18, 24, 20, 0.92) 0%, rgba(18, 24, 20, 0.7) 60%, rgba(18, 24, 20, 0.4) 100%);
        }

        .guide-hero .container {
            position: relative;
            z-index: 2;
        }

        .guide-hero .kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--highlight);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .guide-hero h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .guide-hero .lead {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 560px;
        }

        .guide-wrap {
            padding: 72px 0 80px;
        }

        .guide-layout {
            display: flex;
            gap: 40px;
        }

        .guide-menu {
            flex: 0 0 280px;
            position: sticky;
            top: 100px;
            align-self: flex-start;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            max-height: calc(100vh - 120px);
            overflow: auto;
        }

        .guide-menu h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .guide-menu ul {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .guide-menu a {
            display: block;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            transition: var(--transition);
            border-left: 2px solid transparent;
        }

        .guide-menu a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .guide-menu a.active {
            color: var(--accent);
            border-left-color: var(--accent);
            background: rgba(232, 97, 47, 0.08);
        }

        .guide-content {
            flex: 1;
            min-width: 0;
        }

        .guide-section {
            margin-bottom: 64px;
            scroll-margin-top: 120px;
        }

        .guide-section > h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 4px solid var(--accent);
            line-height: 1.3;
        }

        .guide-section .desc {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            max-width: 680px;
        }

        .guide-section p {
            margin-bottom: 16px;
        }

        .guide-list {
            display: grid;
            gap: 12px;
            margin: 20px 0;
        }

        .guide-list li {
            position: relative;
            padding-left: 24px;
            color: var(--text);
        }

        .guide-list li::before {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 14px;
        }

        .media-card {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .media-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .media-card figcaption {
            padding: 14px 16px;
            color: var(--text-secondary);
            font-size: 14px;
            background: var(--bg-card);
        }

        .guide-quote {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 20px 22px;
            margin: 24px 0;
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.7;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 24px 0;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            transition: border-color var(--transition), transform var(--transition);
        }

        .stat-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }

        .stat-card .num {
            font-size: 24px;
            font-weight: 800;
            color: var(--highlight);
            margin-bottom: 6px;
        }

        .stat-card .label {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
        }

        .accordion-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 16px 18px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            transition: background 0.2s ease;
        }

        .accordion-trigger:hover {
            background: rgba(255, 255, 255, 0.04);
        }

        .accordion-trigger .icon {
            color: var(--accent);
            transition: transform 0.25s ease;
            width: 18px;
            height: 18px;
            position: relative;
            flex-shrink: 0;
        }

        .accordion-trigger .icon::before,
        .accordion-trigger .icon::after {
            content: "";
            position: absolute;
            background: currentColor;
            border-radius: 2px;
        }

        .accordion-trigger .icon::before {
            width: 14px;
            height: 2px;
            left: 2px;
            top: 8px;
        }

        .accordion-trigger .icon::after {
            width: 2px;
            height: 14px;
            left: 8px;
            top: 2px;
            transition: transform 0.25s ease;
        }

        .accordion-item.open .accordion-trigger .icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content p {
            padding: 0 18px 16px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        .guide-cta {
            padding: 80px 0;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .guide-cta::before {
            content: "";
            position: absolute;
            right: -120px;
            top: -120px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(232, 97, 47, 0.15);
        }

        .guide-cta .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .guide-cta h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .guide-cta p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            box-shadow: 0 8px 24px rgba(232, 97, 47, 0.3);
        }

        .btn:hover {
            background: #d95824;
            color: #fff;
            transform: scale(1.02);
        }

        .site-footer {
            background: #0D120E;
            border-top: 1px solid var(--border);
            padding: 64px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            margin-bottom: 14px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 340px;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-contact i {
            color: var(--accent);
            width: 16px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 18px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
        }

        @media (max-width: 1024px) {
            .guide-layout {
                gap: 24px;
            }

            .guide-menu {
                flex-basis: 240px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .header-inner {
                height: 64px;
            }

            .nav-toggle {
                display: block;
            }

            .main-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(18, 24, 20, 0.98);
                backdrop-filter: blur(12px);
                padding: 16px 24px 24px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                border-bottom: 1px solid var(--border);
                transform: translateY(-115%);
                opacity: 1;
                visibility: hidden;
                pointer-events: none;
                transition: transform 0.3s ease, visibility 0.3s ease;
                box-shadow: var(--shadow);
            }

            .main-nav.open {
                transform: translateY(0);
                visibility: visible;
                pointer-events: auto;
            }

            .main-nav .nav-cta {
                position: fixed;
                bottom: 24px;
                right: 24px;
                visibility: visible;
                pointer-events: auto;
                margin-left: 0;
                z-index: 120;
                box-shadow: 0 8px 24px rgba(232, 97, 47, 0.35);
            }

            .main-nav.open .nav-cta {
                position: static;
                width: 100%;
                justify-content: center;
                visibility: visible;
                pointer-events: auto;
            }

            .guide-hero {
                min-height: 260px;
                padding: 110px 0 56px;
            }

            .guide-hero h1 {
                font-size: 32px;
            }

            .guide-hero .lead {
                font-size: 16px;
            }

            .guide-wrap {
                padding: 48px 0 56px;
            }

            .guide-layout {
                flex-direction: column;
                gap: 32px;
            }

            .guide-menu {
                position: static;
                max-height: none;
                flex-basis: auto;
            }

            .guide-menu ul {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 6px;
            }

            .guide-menu a {
                padding: 8px 14px;
                border-left: none;
            }

            .guide-menu a.active {
                border-left-color: transparent;
                background: rgba(232, 97, 47, 0.12);
            }

            .guide-section {
                margin-bottom: 48px;
            }

            .guide-section > h2 {
                font-size: 24px;
            }

            .guide-cta {
                padding: 56px 0;
            }

            .guide-cta h2 {
                font-size: 26px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .logo span {
                font-size: 16px;
            }

            .guide-hero h1 {
                font-size: 28px;
            }

            .guide-cta p {
                font-size: 15px;
            }

            .nav-cta {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
