/* roulang page: index */
:root {
            --primary-color: hsl(18, 82%, 48%);
            --primary-hover: hsl(18, 82%, 38%);
            --accent-color: hsl(42, 95%, 52%);
            --bg-main: hsl(38, 20%, 97%);
            --bg-card: #ffffff;
            --bg-section: hsl(30, 10%, 93%);
            --text-main: #2B1D14;
            --text-secondary: #5C3D2E;
            --text-muted: #8B7355;
            --border-color: hsl(30, 15%, 88%);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 40px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
            --shadow-lg: 0 2px 20px rgba(0,0,0,0.10);
            --spacing: 24px;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: var(--bg-main);
            color: var(--text-main);
            line-height: 1.7;
            font-size: 15px;
            margin: 0;
            padding: 0;
            padding-top: 80px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input {
            font-family: inherit;
        }
        
        /* Floating Dock Navigation */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 900px;
            width: calc(100% - 32px);
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
        }
        
        .dock-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            white-space: nowrap;
        }
        
        .dock-menu {
            display: flex;
            gap: 28px;
            align-items: center;
            margin: 0 auto;
        }
        
        .dock-menu a {
            font-size: 15px;
            color: var(--text-main);
            white-space: nowrap;
            position: relative;
        }
        
        .dock-menu a:hover {
            color: var(--primary-color);
        }
        
        .dock-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary-color);
        }
        
        .dock-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .dock-search {
            position: relative;
        }
        
        .dock-search input {
            padding: 8px 36px 8px 16px;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 14px;
            width: 180px;
            transition: all 0.3s ease;
        }
        
        .dock-search input:focus {
            outline: none;
            border-color: var(--primary-color);
            width: 220px;
        }
        
        .dock-search i {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-main);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, hsl(25, 75%, 42%) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-left h1 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0 0 20px 0;
            line-height: 1.3;
        }
        
        .hero-left p {
            font-size: 16px;
            color: rgba(255,255,255,0.9);
            margin: 0 0 32px 0;
            line-height: 1.8;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            background: white;
            color: var(--primary-color);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .btn-hero-secondary {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.25);
        }
        
        .hero-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        .matrix-item {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            padding: 24px 20px;
            border-radius: var(--radius-md);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
        }
        
        .matrix-item:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-4px);
        }
        
        .matrix-item i {
            font-size: 32px;
            color: white;
            margin-bottom: 12px;
        }
        
        .matrix-item h3 {
            font-size: 16px;
            color: white;
            margin: 0;
            font-weight: 600;
        }
        
        .matrix-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--accent-color);
            color: var(--text-main);
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 3px;
            font-weight: 700;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Section */
        section {
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin: 0 0 16px 0;
        }
        
        .section-header p {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0;
            max-width: 680px;
            margin: 0 auto;
        }
        
        /* Collection Cards */
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .collection-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .collection-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }
        
        .collection-cover {
            height: 180px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            position: relative;
        }
        
        .collection-cover.alt-1 {
            background: linear-gradient(135deg, hsl(18, 82%, 48%), hsl(25, 75%, 42%));
        }
        
        .collection-cover.alt-2 {
            background: linear-gradient(135deg, hsl(25, 75%, 42%), hsl(30, 68%, 38%));
        }
        
        .collection-cover.alt-3 {
            background: linear-gradient(135deg, hsl(42, 95%, 52%), hsl(38, 90%, 48%));
        }
        
        .corner-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent-color);
            color: var(--text-main);
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 3px;
            font-weight: 700;
        }
        
        .collection-body {
            padding: 20px;
        }
        
        .collection-body h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-main);
        }
        
        .collection-count {
            display: inline-block;
            background: hsl(18, 82%, 96%);
            color: var(--primary-color);
            font-size: 13px;
            padding: 4px 12px;
            border-radius: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .collection-body p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 16px 0;
            line-height: 1.6;
        }
        
        .btn-collection {
            display: block;
            text-align: center;
            padding: 10px;
            background: var(--bg-section);
            color: var(--text-main);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-collection:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* Featured List */
        .featured-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .featured-item {
            display: grid;
            grid-template-columns: 60px 1fr auto;
            gap: 20px;
            align-items: center;
            padding: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }
        
        .featured-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }
        
        .featured-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .featured-content h4 {
            font-size: 17px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-main);
        }
        
        .featured-content p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .tag {
            background: hsl(38, 20%, 95%);
            color: var(--text-secondary);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 12px;
            white-space: nowrap;
        }
        
        .tag.hot {
            background: var(--primary-color);
            color: white;
        }
        
        .featured-icon {
            color: var(--text-muted);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .featured-icon:hover {
            color: var(--primary-color);
            transform: scale(1.2);
        }
        
        /* Trust Bar */
        .trust-bar {
            background: var(--bg-section);
            padding: 40px 0;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        
        .trust-item {
            text-align: center;
        }
        
        .trust-item i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 16px;
        }
        
        .trust-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-main);
        }
        
        .trust-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }
        
        /* Related Grid */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .related-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .related-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }
        
        .related-card h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 12px 0;
            color: var(--text-main);
        }
        
        .related-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 16px 0;
            line-height: 1.6;
        }
        
        .related-arrow {
            color: var(--primary-color);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, hsl(25, 75%, 42%) 100%);
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin: 0 0 16px 0;
        }
        
        .cta-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.9);
            margin: 0 0 32px 0;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta-white {
            background: white;
            color: var(--primary-color);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .btn-cta-outline {
            background: transparent;
            color: white;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-cta-outline:hover {
            background: white;
            color: var(--primary-color);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--bg-section);
        }
        
        .faq-question h4 {
            font-size: 16px;
            font-weight:600;
            margin: 0;
            color: var(--text-main);
        }
        
        .faq-icon {
            color: var(--primary-color);
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 24px 20px 24px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background: hsl(30, 10%, 20%);
            color: rgba(255,255,255,0.8);
            padding: 48px 0 24px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 32px;
        }
        
        .footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-links h4 {
            font-size: 16px;
            font-weight: 600;
            color: white;
            margin: 0 0 16px 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
            color: rgba(255,255,255,0.6);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-matrix {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        @media (max-width: 640px) {
            body {
                padding-top: 70px;
            }
            
            .dock-nav {
                padding: 10px 16px;
                top: 12px;
            }
            
            .dock-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                margin-top: 12px;
                background: rgba(255, 255, 255, 0.96);
                backdrop-filter: blur(12px);
                flex-direction: column;
                padding: 16px;
                border-radius: 16px;
                box-shadow: var(--shadow-lg);
                gap: 0;
            }
            
            .dock-menu.active {
                display: flex;
            }
            
            .dock-menu a {
                padding: 12px 0;
                border-bottom: 1px solid var(--border-color);
            }
            
            .dock-menu a:last-child {
                border-bottom: none;
            }
            
            .dock-actions {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-section {
                padding: 50px 0 40px;
            }
            
            .hero-left h1 {
                font-size: 26px;
            }
            
            .hero-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .collection-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-item {
                grid-template-columns: 1fr;
                gap: 12px;
                text-align: center;
            }
            
            .featured-number {
                font-size: 28px;
            }
            
            .featured-tags {
                justify-content: center;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .section-header h2 {
                font-size: 24px;
            }
            
            section {
                padding: 40px 0;
            }
        }

/* roulang page: category1 */
:root {
            --primary: hsl(18, 82%, 48%);
            --primary-dark: hsl(18, 82%, 38%);
            --accent: hsl(42, 95%, 52%);
            --bg-main: hsl(38, 20%, 97%);
            --bg-card: #ffffff;
            --bg-section: hsl(30, 10%, 93%);
            --text-main: #2c2c2c;
            --text-secondary: #666666;
            --text-light: #999999;
            --border: hsl(30, 10%, 88%);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 40px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
            --shadow-dock: 0 2px 20px rgba(0,0,0,0.10);
            --spacing: 24px;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-main);
            background: var(--bg-main);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input {
            font-family: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Dock Navigation */
        .dock-nav {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 900px;
            width: calc(100% - 32px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-dock);
            z-index: 1000;
        }
        
        .dock-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }
        
        .dock-menu {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        
        .dock-menu a {
            font-size: 15px;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            position: relative;
        }
        
        .dock-menu a:hover {
            color: var(--primary);
        }
        
        .dock-menu a.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .dock-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
        }
        
        .dock-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dock-search {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .dock-search input {
            padding: 8px 36px 8px 12px;
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 14px;
            width: 180px;
            transition: width 0.3s ease, border-color 0.3s ease;
        }
        
        .dock-search input:focus {
            outline: none;
            border-color: var(--primary);
            width: 220px;
        }
        
        .dock-search i {
            position: absolute;
            right: 12px;
            color: var(--text-light);
        }
        
        .btn-primary {
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-main);
            cursor: pointer;
        }
        
        /* Main Content Spacing */
        main {
            padding-top: 100px;
            min-height: calc(100vh - 200px);
        }
        
        /* Breadcrumb */
        .breadcrumb-section {
            padding: 20px 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .breadcrumb a {
            color: var(--text-secondary);
        }
        
        .breadcrumb a:hover {
            color: var(--primary);
        }
        
        .breadcrumb .current {
            color: var(--text-main);
            font-weight: 600;
        }
        
        /* Category Hero */
        .category-hero {
            background: linear-gradient(135deg, var(--primary) 0%, hsl(18, 82%, 58%) 100%);
            padding: 60px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.5;
        }
        
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }
        
        .hero-text h1 {
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 16px 0;
            line-height: 1.3;
        }
        
        .hero-text p {
            font-size: 16px;
            margin: 0;
            opacity: 0.95;
            max-width: 600px;
        }
        
        .hero-stats {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        
        .stat-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .stat-badge .number {
            font-size: 28px;
            font-weight: 700;
            display: block;
            color: var(--accent);
        }
        
        .stat-badge .label {
            font-size: 13px;
            opacity: 0.9;
            margin-top: 4px;
        }
        
        .promo-tag {
            background: hsl(0, 85%, 55%);
            color: white;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        /* Filter Bar */
        .filter-bar {
            background: var(--bg-card);
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 72px;
            z-index: 100;
        }
        
        .filter-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        
        .filter-buttons {
            display: flex;
            gap: 8px;
        }
        
        .filter-btn {
            padding: 8px 16px;
            background: var(--bg-section);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .view-toggle {
            display: flex;
            gap: 4px;
        }
        
        .view-btn {
            padding: 8px 12px;
            background: none;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-btn:first-child {
            border-radius: var(--radius-sm) 0 0 var(--radius-sm);
        }
        
        .view-btn:last-child {
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }
        
        .view-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Content Grid */
        .content-section {
            padding: 48px 0;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .content-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        
        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: hsl(0, 85%, 55%);
            color: white;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            z-index: 10;
        }
        
        .card-badge.hot {
            background: var(--accent);
            color: var(--text-main);
        }
        
        .card-image {
            height: 180px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .card-image .placeholder-icon {
            font-size: 48px;
            color: white;
            opacity: 0.6;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 12px 0;
            color: var(--text-main);
            line-height: 1.4;
        }
        
        .card-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 16px 0;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .card-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .tag {
            padding: 4px 10px;
            background: var(--bg-section);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .card-date {
            font-size: 13px;
            color: var(--text-light);
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .card-stats {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-light);
        }
        
        .card-stats span i {
            margin-right: 4px;
        }
        
        .btn-secondary {
            padding: 8px 16px;
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Pagination */
        .pagination-section {
            padding: 24px 0;
            display: flex;
            justify-content: center;
        }
        
        .pagination {
            display: flex;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .pagination li a {
            display: block;
            padding: 10px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .pagination li a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .pagination li.current a {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Related Categories */
        .related-section {
            background: var(--bg-section);
            padding: 48px 0;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 600;
            margin: 0 0 24px 0;
            text-align: center;
        }
        
        .related-tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .related-tag {
            padding: 10px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            font-size: 14px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .related-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        
        /* Footer */
        footer {
            background: hsl(30, 8%, 25%);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 32px;
        }
        
        .footer-brand h3 {
            color: white;
            font-size: 20px;
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }
        
        .footer-links h4 {
            color: white;
            font-size: 16px;
            margin: 0 0 16px 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
            }
            
            .hero-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-stats {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .dock-nav {
                padding: 12px 16px;
            }
            
            .dock-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 16px;
                margin-top: 12px;
                border-radius: 16px;
                box-shadow: var(--shadow-md);
            }
            
            .dock-menu.active {
                display: flex;
            }
            
            .dock-search {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .category-hero {
                padding: 40px 0;
            }
            
            .hero-text h1 {
                font-size: 24px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 12px;
            }
            
            .stat-badge {
                width: 100%;
            }
            
            .filter-controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-buttons {
                flex-wrap: wrap;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .footer-brand {
                grid-column: 1;
            }
        }
        
        @media (max-width: 520px) {
            main {
                padding-top: 80px;
            }
            
            .dock-nav {
                top: 12px;
            }
            
            .btn-primary {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .hero-text h1 {
                font-size: 22px;
            }
            
            .hero-text p {
                font-size: 14px;
            }
            
            .content-section {
                padding: 32px 0;
            }
            
            .card-image {
                height: 140px;
            }
            
            .card-title {
                font-size: 16px;
            }
        }
