/* roulang page: index */
:root {
            --color-primary: #171A21;
            --color-accent: #C9A063;
            --color-accent-soft: rgba(201, 160, 99, 0.12);
            --color-light-bg: #F4F1EA;
            --color-dark-card: #1F232B;
            --color-text-dark: #25262A;
            --color-text-light: #E5E5E5;
            --color-text-muted: #8A8F98;
            --color-border-light: rgba(0, 0, 0, 0.08);
            --color-border-dark: rgba(255, 255, 255, 0.1);
            --radius-lg: 16px;
            --radius-xl: 24px;
            --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-light-bg);
            color: var(--color-text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .section-number {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--color-accent);
            display: block;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-feature-settings: "tnum";
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-accent);
            color: #171A21;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.8rem;
            border-radius: 999px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(201, 160, 99, 0.25);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(201, 160, 99, 0.35);
        }
        .btn-primary:active {
            transform: scale(0.97);
            box-shadow: 0 1px 4px rgba(201, 160, 99, 0.2);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.8rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .btn-secondary:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-1px);
        }
        .btn-secondary:active {
            transform: scale(0.97);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        /* 浮动导航 */
        .float-dock {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            max-width: 1100px;
            width: calc(100% - 32px);
            background: rgba(19, 22, 27, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 10px 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0.02em;
        }
        .nav-logo .logo-dot {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, #C9A063, #e8c584);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: #171A21;
            font-weight: 900;
        }
        .nav-logo .logo-text {
            background: linear-gradient(90deg, #C9A063, #E8C584);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: #C9A063;
            background: rgba(201, 160, 99, 0.12);
        }
        .nav-links a.active {
            color: #C9A063;
            background: rgba(201, 160, 99, 0.12);
            font-weight: 600;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #C9A063;
            color: #171A21;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.45rem 1.3rem;
            border-radius: 999px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-cta:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
            align-items: center;
        }
        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger:hover span {
            background: #C9A063;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 76px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 1100px;
            background: rgba(19, 22, 27, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px;
            z-index: 999;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 18px;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .mobile-menu a:hover {
            background: rgba(201, 160, 99, 0.12);
            color: #C9A063;
        }
        .mobile-menu a.active {
            background: rgba(201, 160, 99, 0.12);
            color: #C9A063;
        }
        .mobile-menu .nav-cta-m {
            display: block;
            margin-top: 8px;
            text-align: center;
            background: #C9A063;
            color: #171A21;
            font-weight: 600;
            padding: 12px;
            border-radius: 999px;
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-image: url('/assets/images/backpic/back-1.jpg');
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
        }
        .hero-deco {
            position: absolute;
            right: -100px;
            bottom: -50px;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(201, 160, 99, 0.2);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }
        .hero-deco::before {
            content: '';
            position: absolute;
            inset: 30px;
            border: 1px solid rgba(201, 160, 99, 0.1);
            border-radius: 50%;
        }

        .hero-poster-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: rotate(2deg);
            transition: transform 0.4s ease;
        }
        .hero-poster-card:hover {
            transform: rotate(0deg) scale(1.02);
        }
        .hero-poster-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 3/4;
        }
        .hero-poster-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(201, 160, 99, 0.4);
            color: #C9A063;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hero-poster-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
            color: #fff;
        }
        .hero-poster-info .title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .hero-poster-info .meta {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .hero-poster-score {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(201, 160, 99, 0.2);
            backdrop-filter: blur(8px);
            border-radius: 10px;
            padding: 4px 10px;
            color: #C9A063;
            font-weight: 800;
            font-size: 0.9rem;
            border: 1px solid rgba(201, 160, 99, 0.3);
        }

        /* 合集卡片 */
        .card-collection {
            background: #FFFFFF;
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .card-collection:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .card-collection .card-img {
            height: 180px;
            overflow: hidden;
            border-radius: 12px;
            margin: 10px 10px 0;
        }
        .card-collection .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-collection:hover .card-img img {
            transform: scale(1.05);
        }
        .card-collection .card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-collection .card-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: 6px;
        }
        .card-collection .card-desc {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            flex: 1;
        }
        .card-collection .card-link {
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            transition: gap 0.2s ease;
        }
        .card-collection:hover .card-link {
            gap: 8px;
        }

        .card-dark {
            background: var(--color-dark-card);
            border: 1px solid var(--color-border-dark);
        }
        .card-dark .card-title {
            color: #fff;
        }
        .card-dark .card-desc {
            color: rgba(255, 255, 255, 0.6);
        }
        .card-dark .card-link {
            color: #C9A063;
        }
        .card-dark:hover {
            background: #262B35;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        /* 数据区 */
        .stats-section {
            background: #171A21;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.4), transparent);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }
        .stat-item {
            text-align: center;
            padding: 24px 16px;
            position: relative;
        }
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.08);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #C9A063;
            line-height: 1.2;
            font-feature-settings: "tnum";
        }
        .stat-unit {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #8A8F98;
            margin-top: 6px;
        }

        /* 横向滚动推荐 */
        .scroll-cards {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 8px 4px 20px;
        }
        .scroll-cards::-webkit-scrollbar {
            height: 4px;
        }
        .scroll-cards::-webkit-scrollbar-thumb {
            background: rgba(201, 160, 99, 0.3);
            border-radius: 4px;
        }
        .scroll-cards::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.04);
            border-radius: 4px;
        }
        .scroll-card {
            min-width: 340px;
            max-width: 340px;
            scroll-snap-align: start;
            background: #FFFFFF;
            border-radius: 16px;
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }
        .scroll-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .scroll-card .card-cover {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .scroll-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .scroll-card:hover .card-cover img {
            transform: scale(1.05);
        }
        .scroll-card .card-cover .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(23, 26, 33, 0.8);
            backdrop-filter: blur(6px);
            color: #C9A063;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 999px;
            border: 1px solid rgba(201, 160, 99, 0.3);
        }
        .scroll-card .card-body {
            padding: 16px 20px 20px;
        }
        .scroll-card .card-body .title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: 4px;
        }
        .scroll-card .card-body .desc {
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }
        .scroll-card .card-body .metric {
            margin-top: 12px;
            display: flex;
            align-items: baseline;
            gap: 6px;
            padding-top: 12px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        .scroll-card .card-body .metric .num {
            font-size: 1.3rem;
            font-weight: 800;
            color: #171A21;
            font-feature-settings: "tnum";
        }
        .scroll-card .card-body .metric .label {
            font-size: 0.75rem;
            color: #8A8F98;
        }

        /* 资讯区 */
        .news-list-item {
            display: block;
            padding: 16px 8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
            border-radius: 8px;
        }
        .news-list-item:hover {
            background: #F9F7F3;
            padding-left: 16px;
        }
        .news-list-item .news-title {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-dark);
            line-height: 1.5;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .news-list-item:hover .news-title {
            color: #C9A063;
        }
        .news-list-item .news-meta {
            font-size: 0.75rem;
            color: #A0A4AB;
            margin-top: 4px;
            display: flex;
            gap: 12px;
        }

        .news-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            color: #C9A063;
            background: rgba(201, 160, 99, 0.1);
            padding: 2px 10px;
            border-radius: 999px;
            border: 1px solid rgba(201, 160, 99, 0.2);
        }

        .side-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            font-size: 0.8rem;
            color: #25262A;
            background: #fff;
            border: 1px solid #D8D8D8;
            border-radius: 999px;
            transition: all 0.2s ease;
            margin: 0 8px 8px 0;
        }
        .side-tag:hover {
            border-color: #C9A063;
            color: #C9A063;
        }

        .featured-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .featured-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .featured-card .featured-img {
            height: 160px;
            overflow: hidden;
        }
        .featured-card .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-card:hover .featured-img img {
            transform: scale(1.05);
        }
        .featured-card .featured-body {
            padding: 16px 20px;
        }
        .featured-card .featured-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .featured-card .featured-desc {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-item {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: rgba(201, 160, 99, 0.3);
        }
        .faq-item .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text-dark);
            transition: color 0.2s ease;
            user-select: none;
        }
        .faq-item .faq-question:hover {
            color: #C9A063;
        }
        .faq-item .faq-icon {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-item .faq-icon::before,
        .faq-item .faq-icon::after {
            content: '';
            position: absolute;
            background: #8A8F98;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .faq-item .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 9px;
            left: 2px;
        }
        .faq-item .faq-icon::after {
            width: 2px;
            height: 16px;
            top: 2px;
            left: 9px;
        }
        .faq-item.open .faq-icon::after {
            transform: scaleY(0);
        }
        .faq-item.open .faq-icon::before {
            background: #C9A063;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
            font-size: 0.88rem;
            color: #666;
            line-height: 1.75;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            opacity: 1;
            margin-top: 12px;
        }

        /* CTA 收藏分享 */
        .share-section {
            background: #171A21;
            position: relative;
            overflow: hidden;
        }
        .share-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(201, 160, 99, 0.4);
        }

        /* 表单 */
        .form-input {
            width: 100%;
            background: #fff;
            border: 1px solid #D8D8D8;
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 0.9rem;
            color: var(--color-text-dark);
            transition: all 0.25s ease;
        }
        .form-input::placeholder {
            color: #9CA3AF;
        }
        .form-input:focus {
            outline: none;
            border-color: #C9A063;
            box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.2);
        }
        .form-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
            display: block;
        }

        /* 页脚 */
        .footer-section {
            background: #121419;
            border-top: 1px solid rgba(201, 160, 99, 0.2);
        }
        .footer-link {
            display: block;
            padding: 4px 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.2s ease;
        }
        .footer-link:hover {
            color: #C9A063;
            transform: translateX(2px);
        }

        /* 滚动渐入 */
        .js-fade-in {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .js-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 24px;
            }
            .stat-item:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }
            .hero-section {
                padding: 110px 0 60px;
            }
            .hero-poster-card {
                margin-top: 40px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .float-dock {
                width: calc(100% - 24px);
                top: 10px;
                padding: 8px 12px;
            }
            .scroll-card {
                min-width: 280px;
                max-width: 280px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }
            .nav-cta {
                display: none;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #171A21;
            --color-accent: #C9A063;
            --color-accent-soft: rgba(201, 160, 99, 0.12);
            --color-light-bg: #F4F1EA;
            --color-dark-card: #1F232B;
            --color-text-dark: #25262A;
            --color-text-light: #E5E5E5;
            --color-text-muted: #8A8F98;
            --color-border-light: rgba(0, 0, 0, 0.08);
            --color-border-dark: rgba(255, 255, 255, 0.1);
            --radius-lg: 16px;
            --radius-xl: 24px;
            --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-main);
            background-color: var(--color-light-bg);
            color: var(--color-text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }
        
        .container-custom {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .section-number {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--color-accent);
            display: block;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-feature-settings: "tnum";
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-accent);
            color: #171A21;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.8rem;
            border-radius: 999px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(201, 160, 99, 0.25);
        }
        
        .btn-primary:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(201, 160, 99, 0.35);
        }
        
        .btn-primary:active {
            transform: scale(0.97);
            box-shadow: 0 1px 4px rgba(201, 160, 99, 0.2);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.8rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: all 0.25s ease;
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-1px);
        }
        
        .btn-secondary:active {
            transform: scale(0.97);
        }
        
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0.02em;
        }
        
        .nav-logo .logo-dot {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, #C9A063, #e8c584);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: #171A21;
            font-weight: 900;
        }
        
        .nav-logo .logo-text {
            background: linear-gradient(90deg, #C9A063, #E8C584);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .nav-links a:hover {
            color: #C9A063;
            background: rgba(201, 160, 99, 0.12);
        }
        
        .nav-links a.active {
            color: #C9A063;
            background: rgba(201, 160, 99, 0.12);
            font-weight: 600;
        }
        
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #C9A063;
            color: #171A21;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.45rem 1.3rem;
            border-radius: 999px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .nav-cta:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
            align-items: center;
        }
        
        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
        
        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            padding: 0.3rem 0;
            transition: color 0.2s ease;
        }
        
        .footer-link:hover {
            color: var(--color-accent);
        }
        
        /* 分类页特有样式 */
        .category-banner {
            background: linear-gradient(135deg, #171A21 0%, #1F232B 60%, #2A2E38 100%);
            position: relative;
            overflow: hidden;
        }
        
        .category-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(201, 160, 99, 0.2);
            border-radius: 50%;
        }
        
        .category-banner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: 80px;
            width: 160px;
            height: 160px;
            border: 1px solid rgba(201, 160, 99, 0.12);
            border-radius: 50%;
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.45);
        }
        
        .breadcrumb a {
            transition: color 0.2s;
        }
        
        .breadcrumb a:hover {
            color: var(--color-accent);
        }
        
        .breadcrumb .sep {
            color: rgba(255, 255, 255, 0.25);
        }
        
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-tab {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 1.2rem;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid #D8D8D8;
            background: #FFFFFF;
            color: var(--color-text-dark);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .filter-tab:hover {
            border-color: #C9A063;
            color: #C9A063;
        }
        
        .filter-tab.active {
            background: #C9A063;
            color: #171A21;
            border-color: transparent;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(201, 160, 99, 0.3);
        }
        
        .content-card {
            background: #FFFFFF;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        
        .content-card .card-thumb {
            overflow: hidden;
            position: relative;
        }
        
        .content-card .card-thumb img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .content-card:hover .card-thumb img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.7rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(201, 160, 99, 0.92);
            color: #171A21;
            backdrop-filter: blur(4px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        .card-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.15rem 0.6rem;
            border-radius: 999px;
            font-size: 0.75rem;
            border: 1px solid rgba(201, 160, 99, 0.5);
            color: #A9853E;
            background: rgba(201, 160, 99, 0.08);
            font-weight: 500;
        }
        
        .card-arrow {
            transition: transform 0.25s ease;
            color: var(--color-accent);
        }
        
        .content-card:hover .card-arrow {
            transform: translateX(4px);
        }
        
        .horizontal-card {
            display: grid;
            grid-template-columns: 40% 60%;
            background: #FFFFFF;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .horizontal-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        
        .horizontal-card .hc-thumb {
            overflow: hidden;
            position: relative;
            min-height: 280px;
        }
        
        .horizontal-card .hc-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .horizontal-card:hover .hc-thumb img {
            transform: scale(1.05);
        }
        
        .horizontal-card .hc-body {
            padding: 1.8rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hot-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 0.7rem 0.9rem;
            border-radius: 8px;
            transition: background 0.2s ease;
        }
        
        .hot-item:hover {
            background: #F5F3EE;
        }
        
        .hot-item .hot-num {
            font-size: 1.4rem;
            font-weight: 800;
            color: #C9A063;
            font-feature-settings: "tnum";
            min-width: 2rem;
            text-align: center;
        }
        
        .faq-item {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 1.1rem 1.25rem;
            margin-bottom: 0.75rem;
            transition: all 0.2s ease;
        }
        
        .faq-item .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9375rem;
            color: var(--color-text-dark);
            transition: color 0.2s;
        }
        
        .faq-item .faq-q:hover {
            color: #C9A063;
        }
        
        .faq-item .faq-icon {
            position: relative;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-left: 0.75rem;
        }
        
        .faq-item .faq-icon::before,
        .faq-item .faq-icon::after {
            content: '';
            position: absolute;
            background: #C9A063;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .faq-item .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 7px;
            left: 0;
        }
        
        .faq-item .faq-icon::after {
            width: 2px;
            height: 16px;
            left: 7px;
            top: 0;
        }
        
        .faq-item.open .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }
        
        .faq-item .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
            opacity: 0;
            padding-top: 0;
            font-size: 0.875rem;
            color: #666;
            line-height: 1.7;
        }
        
        .faq-item.open .faq-a {
            max-height: 300px;
            opacity: 1;
            padding-top: 0.7rem;
        }
        
        .cta-strip {
            background: linear-gradient(120deg, #171A21 0%, #1F232B 50%, #2A2620 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.6), transparent);
        }
        
        .cta-strip::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -20px;
            width: 180px;
            height: 180px;
            border: 1px solid rgba(201, 160, 99, 0.15);
            border-radius: 50%;
        }
        
        .js-fade-in {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .js-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 移动端导航 */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 16px;
            right: 16px;
            background: rgba(19, 22, 27, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1rem;
            backdrop-filter: blur(16px);
            z-index: 100;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }
        
        .mobile-menu.open {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .mobile-menu a:hover {
            background: rgba(201, 160, 99, 0.1);
            color: #C9A063;
        }
        
        .mobile-menu a.active {
            background: rgba(201, 160, 99, 0.15);
            color: #C9A063;
            font-weight: 600;
        }
        
        .fixed-dock {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 1100px;
            background: rgba(19, 22, 27, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 0.6rem 1rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 999;
        }
        
        .dock-left,
        .dock-right {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        @media (max-width: 768px) {
            .fixed-dock {
                top: 12px;
                width: calc(100% - 24px);
                padding: 0.5rem 0.75rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-cta {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .container-custom {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .horizontal-card {
                grid-template-columns: 1fr;
            }
            
            .horizontal-card .hc-thumb {
                min-height: 200px;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu {
                display: none !important;
            }
        }
