/* roulang page: index */
:root {
            --surface-base: oklch(11% 0.012 220);
            --surface-raised: oklch(17% 0.016 220);
            --surface-border: oklch(26% 0.018 220);
            --accent-green: oklch(64% 0.28 145);
            --accent-gold: oklch(74% 0.20 58);
            --accent-red: oklch(62% 0.24 25);
            --text-body: oklch(91% 0.010 220);
            --text-muted: oklch(62% 0.018 220);
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-inner: 8px;
            --shadow-card: 0 2px 12px oklch(0% 0 0 / 0.45);
            --shadow-float: 0 8px 32px oklch(0% 0 0 / 0.6);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
            background: var(--surface-base);
            color: var(--text-body);
            line-height: 1.7;
            font-size: 0.9rem;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 150ms ease;
        }

        a:hover {
            color: var(--accent-green);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button, input {
            font-family: inherit;
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header & Navigation */
        .site-header {
            background: var(--surface-raised);
            border-bottom: 1px solid var(--surface-border);
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .site-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            gap: 1.5rem;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logo {
            font-size: 1rem;
            font-weight: 800;
            color: var(--accent-green);
            white-space: nowrap;
        }

        .nav-categories {
            display: flex;
            gap: 0.75rem;
        }

        .nav-categories a {
            font-size: 0.85rem;
            color: var(--text-muted);
            white-space: nowrap;
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            transition: all 180ms ease;
        }

        .nav-categories a:hover,
        .nav-categories a.active {
            color: var(--accent-green);
            background: oklch(20% 0.02 145 / 0.3);
        }

        .nav-center {
            flex: 1;
            max-width: 550px;
        }

        .search-box {
            position: relative;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            padding: 0.65rem 1rem 0.65rem 2.75rem;
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: 999px;
            color: var(--text-body);
            font-size: 0.85rem;
            outline: none;
            transition: all 180ms ease;
        }

        .search-box input:focus {
            box-shadow: 0 0 0 2px var(--accent-green);
            border-color: var(--accent-green);
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .search-box .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-green);
            font-size: 1rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-outline-green {
            padding: 0.5rem 1.25rem;
            border: 1px solid var(--accent-green);
            color: var(--accent-green);
            border-radius: var(--radius-btn);
            font-size: 0.85rem;
            font-weight: 600;
            background: transparent;
            cursor: pointer;
            transition: all 150ms ease;
            white-space: nowrap;
        }

        .btn-outline-green:hover {
            background: oklch(20% 0.02 145 / 0.2);
        }

        .btn-gold {
            padding: 0.5rem 1.25rem;
            background: var(--accent-gold);
            color: #000;
            border: none;
            border-radius: var(--radius-btn);
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
            white-space: nowrap;
        }

        .btn-gold:hover {
            filter: brightness(1.1);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-body);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero-section {
            background: var(--surface-base);
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 49px, oklch(13% 0.015 220) 49px, oklch(13% 0.015 220) 50px),
                repeating-linear-gradient(90deg, transparent, transparent 49px, oklch(13% 0.015 220) 49px, oklch(13% 0.015 220) 50px);
            padding: 3.5rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 58% 40%;
            gap: 2rem;
            align-items: center;
        }

        .hero-left h1 {
            font-size: clamp(1.75rem, 4vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 1rem;
            line-height: 1.2;
        }

        .hero-left p {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0 0 2rem;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary-green {
            padding: 0.85rem 2rem;
            background: var(--accent-green);
            color: #000;
            border: none;
            border-radius: var(--radius-btn);
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
        }

        .btn-primary-green:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }

        .hero-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .matrix-card {
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-card);
            padding: 1.5rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 180ms ease;
        }

        .matrix-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }

        .matrix-card i {
            font-size: 2rem;
            color: var(--accent-green);
            margin-bottom: 0.75rem;
        }

        .matrix-card .label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-body);
        }

        /* Comparison Table */
        .comparison-section {
            padding: 4rem 0;
            border-top: 1px solid var(--surface-border);
        }

        .section-title {
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            font-weight: 700;
            text-align: center;
            margin: 0 0 2.5rem;
        }

        .comparison-table {
            background: var(--surface-raised);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead {
            background: oklch(19% 0.018 220);
        }

        .comparison-table th {
            padding: 1rem;
            font-weight: 700;
            text-align: left;
            font-size: 0.9rem;
        }

        .comparison-table th:last-child {
            border-left: 3px solid var(--accent-gold);
            background: oklch(20% 0.02 58 / 0.15);
        }

        .comparison-table td {
            padding: 1rem;
            border-top: 1px solid var(--surface-border);
            font-size: 0.85rem;
        }

        .comparison-table td:last-child {
            border-left: 3px solid var(--accent-gold);
            background: oklch(20% 0.02 58 / 0.08);
        }

        .check-icon {
            color: var(--accent-green);
            font-size: 1.1rem;
        }

        .cross-icon {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Tier Cards */
        .tier-section {
            padding: 4rem 0;
            border-top: 1px solid var(--surface-border);
        }

        .tier-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .tier-card {
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 2rem 1.5rem;
            transition: all 200ms ease;
            position: relative;
        }

        .tier-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-float);
        }

        .tier-card.featured {
            border: 2px solid var(--accent-gold);
        }

        .tier-card.featured::before {
            content: "推荐";
            position: absolute;
            top: 0;
            right: 0;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 800;
            padding: 0.35rem 0.75rem;
            border-radius: 0 var(--radius-card) 0 var(--radius-inner);
        }

        .tier-badge {
            background: linear-gradient(135deg, var(--accent-gold), oklch(68% 0.18 50));
            color: #000;
            font-size: 0.8rem;
            font-weight: 800;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            text-align: center;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .tier-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
        }

        .tier-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
        }

        .tier-benefits li i {
            color: var(--accent-green);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .tier-price {
            font-size: 2rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }

        .tier-price span {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .btn-tier {
            width: 100%;
            padding: 0.75rem;
            background: var(--accent-green);
            color: #000;
            border: none;
            border-radius: var(--radius-btn);
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
        }

        .btn-tier:hover {
            filter: brightness(1.1);
        }

        /* Content Preview */
        .preview-section {
            padding: 4rem 0;
            border-top: 1px solid var(--surface-border);
        }

        .preview-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-top: 2.5rem;
        }

        .content-card {
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            cursor: pointer;
            transition: all 180ms ease;
            position: relative;
        }

        .content-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-2px);
        }

        .content-card:hover .card-overlay {
            opacity: 1;
        }

        .content-card .card-image {
            aspect-ratio: 2 / 3;
            background: oklch(15% 0.015 220);
            position: relative;
        }

        .content-card .card-tag {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: oklch(0% 0 0 / 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0;
            transition: opacity 180ms ease;
        }

        .content-card .card-info {
            padding: 0.75rem;
        }

        .content-card h3 {
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .content-card .card-meta {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .content-card .meta-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .content-card .meta-tag i {
            color: var(--accent-green);
            font-size: 0.5rem;
        }

        .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-green);
            font-weight: 600;
            margin-top: 2rem;
            font-size: 0.9rem;
        }

        .view-all-link i {
            transition: transform 150ms ease;
        }

        .view-all-link:hover i {
            transform: translateX(4px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 0;
            border-top: 1px solid var(--surface-border);
        }

        .accordion {
            max-width: 900px;
            margin: 2.5rem auto 0;
        }

        .accordion-item {
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: 10px;
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 180ms ease;
        }

        .accordion-item.active {
            border-left: 3px solid var(--accent-green);
        }

        .accordion-button {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.25rem 1.5rem;
            text-align: left;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-body);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-button:hover {
            color: var(--accent-green);
        }

        .accordion-button i {
            transition: transform 180ms ease;
            color: var(--accent-green);
        }

        .accordion-button.collapsed i {
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) i {
            transform: rotate(180deg);
        }

        .accordion-body {
            padding: 0 1.5rem 1.25rem;
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.85rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--surface-raised), oklch(14% 0.02 145));
            border-top: 1px solid var(--surface-border);
        }

        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            margin: 0 0 1rem;
        }

        .cta-content p {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0 0 2rem;
        }

        .btn-cta-primary {
            padding: 1rem 2.5rem;
            background: var(--accent-gold);
            color: #000;
            border: none;
            border-radius: var(--radius-btn);
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
            box-shadow: 0 4px 20px oklch(74% 0.20 58 / 0.4);
        }

        .btn-cta-primary:hover {
            filter: brightness(1.08);
            transform: translateY(-2px);
        }

        .cta-secondary {
            display: inline-block;
            margin-top: 1rem;
            color: var(--text-muted);
            text-decoration: underline;
            font-size: 0.9rem;
        }

        .cta-secondary:hover {
            color: var(--accent-green);
        }

        /* Footer */
        .site-footer {
            background: var(--surface-raised);
            border-top: 1px solid var(--surface-border);
            padding: 3rem 0 1.5rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-green);
            margin: 0 0 1rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.7;
            margin: 0;
        }

        .footer-links h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: var(--text-body);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: var(--accent-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--surface-border);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .nav-categories {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-matrix {
                grid-template-columns: repeat(3, 1fr);
            }

            .tier-grid {
                grid-template-columns: 1fr;
            }

            .preview-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .nav-right .btn-outline-green {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-section {
                padding: 2.5rem 0;
            }

            .comparison-section,
            .tier-section,
            .preview-section,
            .faq-section,
            .cta-section {
                padding: 3rem 0;
            }

            .comparison-table {
                overflow-x: auto;
            }

            .comparison-table table {
                min-width: 600px;
            }

            .preview-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category1 */
:root {
            --surface-base: oklch(11% 0.012 220);
            --surface-raised: oklch(17% 0.016 220);
            --surface-border: oklch(26% 0.018 220);
            --accent-green: oklch(64% 0.28 145);
            --accent-gold: oklch(74% 0.20 58);
            --accent-red: oklch(62% 0.24 25);
            --text-body: oklch(91% 0.010 220);
            --text-muted: oklch(62% 0.018 220);
            --radius-card: 14px;
            --radius-btn: 8px;
            --radius-inner: 8px;
            --shadow-card: 0 2px 12px oklch(0% 0 0 / 0.45);
            --shadow-float: 0 8px 32px oklch(0% 0 0 / 0.6);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            background: var(--surface-base);
            color: var(--text-body);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            color: var(--accent-green);
            text-decoration: none;
            transition: color 150ms ease;
        }
        
        a:hover {
            color: oklch(from var(--accent-green) calc(l + 0.1) c h);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input {
            font-family: inherit;
            border: none;
            outline: none;
        }
        
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        .site-header {
            background: var(--surface-raised);
            border-bottom: 1px solid var(--surface-border);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        
        .site-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 20px;
        }
        
        .nav-left {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .nav-logo {
            font-size: 1rem;
            font-weight: 800;
            color: var(--accent-green);
            text-decoration: none;
            white-space: nowrap;
        }
        
        .nav-categories {
            display: flex;
            gap: 24px;
        }
        
        .nav-categories a {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 150ms ease;
            white-space: nowrap;
        }
        
        .nav-categories a:hover {
            color: var(--text-body);
        }
        
        .nav-categories a.active {
            color: var(--accent-green);
            font-weight: 600;
        }
        
        .nav-center {
            flex: 1;
            max-width: 550px;
        }
        
        .search-box {
            position: relative;
            width: 100%;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 16px 10px 44px;
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            border-radius: 999px;
            color: var(--text-body);
            font-size: 0.9rem;
            transition: all 150ms ease;
        }
        
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        
        .search-box input:focus {
            box-shadow: 0 0 0 2px var(--accent-green);
            border-color: var(--accent-green);
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-green);
            font-size: 0.9rem;
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .btn-outline-green {
            padding: 8px 20px;
            background: transparent;
            border: 1px solid var(--accent-green);
            color: var(--accent-green);
            border-radius: var(--radius-btn);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 150ms ease;
            white-space: nowrap;
        }
        
        .btn-outline-green:hover {
            background: var(--accent-green);
            color: #000;
        }
        
        .btn-gold {
            padding: 8px 20px;
            background: var(--accent-gold);
            color: #000;
            border-radius: var(--radius-btn);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
            white-space: nowrap;
        }
        
        .btn-gold:hover {
            filter: brightness(1.1);
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            color: var(--text-body);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
        }
        
        /* Breadcrumb */
        .breadcrumb-section {
            padding: 24px 0 16px;
        }
        
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color 150ms ease;
        }
        
        .breadcrumb-custom a:hover {
            color: var(--text-body);
        }
        
        .breadcrumb-custom .current {
            color: var(--text-body);
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            padding: 32px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: clamp(1.75rem, 4vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-body), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-header p {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto;
        }
        
        /* Filter Bar */
        .filter-bar {
            padding: 24px 0;
            border-bottom: 1px solid var(--surface-border);
            margin-bottom: 32px;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-group:last-child {
            margin-bottom: 0;
        }
        
        .filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-body);
            margin-bottom: 8px;
            display: inline-block;
            margin-right: 16px;
        }
        
        .filter-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .filter-pills .pill {
            padding: 6px 16px;
            background: var(--surface-raised);
            color: var(--text-muted);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 150ms ease;
            border: 1px solid transparent;
        }
        
        .filter-pills .pill:hover {
            color: var(--text-body);
            border-color: var(--surface-border);
        }
        
        .filter-pills .pill.active {
            background: var(--accent-green);
            color: #000;
            font-weight: 700;
        }
        
        /* Content Grid */
        .content-section {
            padding: 40px 0 60px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .content-card {
            background: var(--surface-raised);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 200ms ease;
            border: 1px solid transparent;
            cursor: pointer;
        }
        
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-float);
            border-color: var(--accent-green);
        }
        
        .card-image {
            aspect-ratio: 2/3;
            background: var(--surface-base);
            position: relative;
            overflow: hidden;
        }
        
        .card-tag {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 4px 10px;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
        }
        
        .card-quality {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 4px 8px;
            background: rgba(0, 0, 0, 0.75);
            color: var(--accent-green);
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 4px;
            backdrop-filter: blur(8px);
        }
        
        .card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 180ms ease;
        }
        
        .content-card:hover .card-overlay {
            opacity: 1;
        }
        
        .card-overlay span {
            color: var(--accent-green);
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        .card-info {
            padding: 12px;
        }
        
        .card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-body);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .meta-tag {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .meta-tag .dot {
            width: 4px;
            height: 4px;
            background: var(--accent-green);
            border-radius: 50%;
        }
        
        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 48px;
        }
        
        .pagination {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .pagination .page-item .page-link {
            background: var(--surface-raised);
            border: 1px solid var(--surface-border);
            color: var(--text-body);
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 150ms ease;
        }
        
        .pagination .page-item .page-link:hover {
            background: var(--surface-border);
            color: var(--text-body);
        }
        
        .pagination .page-item.active .page-link {
            background: var(--accent-green);
            color: #000;
            font-weight: 700;
            border-color: var(--accent-green);
        }
        
        .pagination .page-item.disabled .page-link {
            opacity: 0.4;
            cursor: not-allowed;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--surface-raised) 0%, oklch(14% 0.02 145) 100%);
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-section h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-body);
        }
        
        .cta-section p {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .btn-cta-primary {
            padding: 14px 40px;
            background: var(--accent-gold);
            color: #000;
            border-radius: var(--radius-btn);
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
            box-shadow: 0 4px 20px oklch(from var(--accent-gold) l c h / 40%);
        }
        
        .btn-cta-primary:hover {
            filter: brightness(1.08);
            transform: translateY(-2px);
            box-shadow: 0 6px 28px oklch(from var(--accent-gold) l c h / 50%);
        }
        
        .cta-link {
            color: var(--text-muted);
            text-decoration: underline;
            font-size: 0.95rem;
        }
        
        .cta-link:hover {
            color: var(--text-body);
        }
        
        /* Footer */
        .site-footer {
            background: var(--surface-raised);
            border-top: 1px solid var(--surface-border);
            padding: 60px 0 0;
            margin-top: 80px;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-green);
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .footer-links h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-body);
            margin-bottom: 16px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 150ms ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-green);
        }
        
        .footer-bottom {
            padding: 24px 0;
            border-top: 1px solid var(--surface-border);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-categories {
                display: none;
            }
            
            .nav-center {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .content-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .filter-pills {
                overflow-x: auto;
                flex-wrap: nowrap;
                scrollbar-width: none;
            }
            
            .filter-pills::-webkit-scrollbar {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .nav-right {
                gap: 8px;
            }
            
            .btn-outline-green,
            .btn-gold {
                padding: 6px 14px;
                font-size: 0.85rem;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
