/* roulang page: index */
:root {
            --primary: #E91E63;
            --primary-dark: #C2185B;
            --secondary: #9C27B0;
            --bg-light: #F8F3FF;
            --bg-purple: #F0E6FF;
            --card-bg: #FFFFFF;
            --text-dark: #2D1B3D;
            --text-light: #6D5B7A;
            --border-color: #E8D9F5;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-card: 0 4px 16px rgba(156,39,176,0.12);
            --shadow-hover: 0 8px 24px rgba(233,30,99,0.18);
            --spacing-section: 80px;
            --spacing-mobile: 48px;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-light);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        button, input {
            font-family: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header & Navigation */
        header {
            background: var(--card-bg);
            box-shadow: 0 1px 4px rgba(45,27,61,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 32px;
        }
        
        .nav-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .nav-center {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .nav-center a {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 500;
            position: relative;
        }
        
        .nav-center a:hover {
            color: var(--primary);
        }
        
        .nav-center a.active {
            color: var(--primary);
        }
        
        .nav-center a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
        }
        
        .nav-right {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        
        .nav-right a {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .nav-right a:hover {
            color: var(--primary);
        }
        
        .nav-search {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-search:hover {
            background: var(--primary);
            color: white;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-purple) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(233,30,99,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero::after {
            content: '★';
            position: absolute;
            bottom: 80px;
            left: 10%;
            font-size: 48px;
            color: rgba(156,39,176,0.2);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin: 0 0 24px 0;
            color: var(--text-dark);
        }
        
        .hero-content p {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-light);
            margin: 0 0 32px 0;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        .hero-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .category-quick {
            background: var(--card-bg);
            padding: 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .category-quick:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .category-quick i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        
        .category-quick h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-dark);
        }
        
        .category-quick .count {
            display: inline-block;
            padding: 4px 12px;
            background: var(--bg-purple);
            color: var(--secondary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* Story Section */
        .story-section {
            padding: var(--spacing-section) 0;
            background: linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-light) 100%);
        }
        
        .story-content {
            max-width: 720px;
            margin: 0 auto;
        }
        
        .story-step {
            display: flex;
            gap: 24px;
            margin-bottom: 48px;
            align-items: flex-start;
        }
        
        .step-number {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-text {
            flex: 1;
            padding-top: 8px;
        }
        
        .step-text p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            margin: 0;
        }
        
        /* Featured Content Cards */
        .featured-section {
            padding: var(--spacing-section) 0;
            background: var(--bg-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 16px 0;
            color: var(--text-dark);
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-light);
            margin: 0;
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .content-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .card-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--bg-purple), var(--bg-light));
            overflow: hidden;
            position: relative;
        }
        
        .content-card:hover .card-thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(233,30,99,0.2);
        }
        
        .card-body {
            padding: 24px;
        }
        
        .card-body h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 12px 0;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--secondary);
            color: white;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .date {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .card-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .card-link:hover {
            gap: 10px;
        }
        
        /* Trust Section */
        .trust-section {
            padding: var(--spacing-section) 0;
            background: var(--bg-purple);
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        
        .trust-item {
            text-align: center;
            padding: 32px 20px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
        }
        
        .trust-item i {
            font-size: 64px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .trust-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-dark);
        }
        
        .trust-item p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }
        
        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .promo-badge {
            display: inline-block;
            padding: 8px 24px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
            border: 2px solid rgba(255,255,255,0.5);
        }
        
        .promo-banner h2 {
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin: 0 0 16px 0;
        }
        
        .promo-banner p {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin: 0 0 32px 0;
        }
        
        .btn-white {
            padding: 16px 48px;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        
        /* Hot List Section */
        .hot-section {
            padding: var(--spacing-section) 0;
            background: var(--card-bg);
        }
        
        .hot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .hot-card {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--bg-light);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hot-card:hover {
            background: var(--bg-purple);
        }
        
        .hot-rank {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hot-info h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-dark);
        }
        
        .hot-info p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0 0 12px 0;
            line-height: 1.5;
        }
        
        .hot-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .hot-tags .tag {
            font-size: 12px;
            padding: 3px 10px;
        }
        
        /* News Section */
        .news-section {
            padding: var(--spacing-section) 0;
            background: var(--bg-light);
        }
        
        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            box-shadow: var(--shadow-card);
        }
        
        .news-date {
            flex-shrink: 0;
            width: 60px;
            text-align: center;
            padding: 12px 0;
            background: var(--bg-purple);
            border-radius: var(--radius-sm);
        }
        
        .news-date .day {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .news-date .month {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 4px;
        }
        
        .news-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: var(--text-dark);
        }
        
        .news-content p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }
        
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .sidebar-widget {
            padding: 24px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
        }
        
        .sidebar-widget h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 20px 0;
            color: var(--text-dark);
        }
        
        .sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .sidebar-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }
        
        .sidebar-list a:hover {
            background: var(--bg-light);
        }
        
        .sidebar-count {
            display: inline-block;
            padding: 2px 8px;
            background: var(--bg-purple);
            color: var(--secondary);
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: var(--spacing-section) 0;
            background: var(--card-bg);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 16px;
            background: var(--bg-light);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 24px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--bg-purple);
        }
        
        .faq-icon {
            font-size: 20px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 24px 20px 24px;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 16px 0;
        }
        
        .cta-section p {
            font-size: 18px;
            margin: 0 0 32px 0;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 24px 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.7;
            margin: 0;
        }
        
        .footer-links h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 20px 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            font-size: 14px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
        }
        
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-visual {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hot-grid {
                grid-template-columns: 1fr;
            }
            
            .news-layout {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --spacing-section: var(--spacing-mobile);
            }
            
            .nav-center, .nav-right {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary, .btn-white {
                width: 100%;
                justify-content: center;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .trust-item {
                padding: 24px 16px;
            }
            
            .promo-banner h2 {
                font-size: 28px;
            }
            
            .step-number {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            
            .story-step {
                gap: 16px;
                margin-bottom: 32px;
            }
            
            .footer-grid {
                gap: 24px;
            }
        }
        
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-visual {
                grid-template-columns: 1fr;
            }
            
            .category-quick {
                padding: 16px;
            }
            
            .card-body {
                padding: 20px;
            }
            
            .hot-card {
                flex-direction: column;
                padding: 20px;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-date {
                width: 100%;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #E91E63;
            --color-secondary: #9C27B0;
            --color-bg: #F8F3FF;
            --color-card: #FFFFFF;
            --color-text-dark: #2D1B3D;
            --color-text-light: #6D5B7A;
            --color-accent-bg: #F0E6FF;
            --radius-card: 12px;
            --radius-button: 8px;
            --radius-pill: 20px;
            --shadow-card: 0 4px 16px rgba(156, 39, 176, 0.12);
            --shadow-hover: 0 8px 24px rgba(233, 30, 99, 0.18);
            --spacing-section: 80px;
            --spacing-section-mobile: 48px;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text-dark);
            background: var(--color-bg);
            -webkit-font-smoothing: antialiased;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        header {
            background: var(--color-card);
            box-shadow: 0 1px 4px rgba(45, 27, 61, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            position: relative;
        }
        
        .nav-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .nav-center {
            display: flex;
            gap: 32px;
            position: absolute;
            left: 0;
        }
        
        .nav-center a {
            font-size: 16px;
            color: var(--color-text-dark);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-center a:hover,
        .nav-center a.active {
            color: var(--color-primary);
        }
        
        .nav-center a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-primary);
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-left: auto;
        }
        
        .nav-right a {
            font-size: 16px;
            color: var(--color-text-dark);
            transition: color 0.3s ease;
        }
        
        .nav-right a:hover {
            color: var(--color-primary);
        }
        
        .nav-search {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .nav-search:hover {
            background: var(--color-primary);
            color: white;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            color: var(--color-primary);
        }
        
        .breadcrumbs {
            padding: 24px 0;
            font-size: 14px;
        }
        
        .breadcrumbs a {
            color: var(--color-text-light);
        }
        
        .breadcrumbs a:hover {
            color: var(--color-primary);
        }
        
        .breadcrumbs .current {
            color: var(--color-primary);
            font-weight: 600;
        }
        
        .category-header {
            text-align: center;
            padding: 48px 0 40px;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
            margin-bottom: 60px;
            border-radius: var(--radius-card);
        }
        
        .category-header h1 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0 0 16px 0;
            color: var(--color-text-dark);
        }
        
        .category-header p {
            font-size: 18px;
            color: var(--color-text-light);
            max-width: 720px;
            margin: 0 auto 32px;
        }
        
        .filter-tags {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .filter-tag {
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            background: var(--color-card);
            color: var(--color-text-dark);
            font-size: 14px;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .filter-tag:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }
        
        .filter-tag.active {
            background: var(--color-primary);
            color: white;
        }
        
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            margin-bottom: 80px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .content-card {
            background: var(--color-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .content-card-image {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
            overflow: hidden;
        }
        
        .content-card-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .content-card:hover .content-card-image img {
            transform: scale(1.05);
        }
        
        .new-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
        }
        
        .content-card-body {
            padding: 20px;
        }
        
        .content-card-title {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 12px 0;
            color: var(--color-text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .content-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        
        .content-tag {
            background: var(--color-secondary);
            color: white;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
        }
        
        .content-date {
            font-size: 14px;
            color: var(--color-text-light);
        }
        
        .content-card-link {
            color: var(--color-primary);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .content-card-link:hover {
            gap: 10px;
        }
        
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        .sidebar-section {
            background: var(--color-card);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            margin-bottom: 24px;
        }
        
        .sidebar-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 20px 0;
            color: var(--color-text-dark);
        }
        
        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-list li {
            margin-bottom: 12px;
        }
        
        .sidebar-list li:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--color-text-dark);
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .sidebar-list a:hover {
            background: var(--color-bg);
            color: var(--color-primary);
        }
        
        .sidebar-count {
            font-size: 14px;
            color: var(--color-text-light);
            background: var(--color-bg);
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        .featured-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--color-bg);
        }
        
        .featured-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .featured-thumb {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
            flex-shrink: 0;
        }
        
        .featured-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 6px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-info span {
            font-size: 12px;
            color: var(--color-text-light);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 60px 0;
        }
        
        .pagination a,
        .pagination span {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: var(--color-card);
            color: var(--color-text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .pagination .current {
            background: var(--color-primary);
            color: white;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            border-radius: var(--radius-card);
            padding: 60px 40px;
            text-align: center;
            margin: 80px 0;
        }
        
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0 0 16px 0;
        }
        
        .cta-section p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 32px 0;
        }
        
        .cta-button {
            background: white;
            color: var(--color-primary);
            padding: 16px 48px;
            border-radius: var(--radius-button);
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        footer {
            background: var(--color-text-dark);
            color: white;
            padding: 60px 0 24px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        
        .footer-links h4 {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 20px 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        @media screen and (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        @media screen and (max-width: 768px) {
            :root {
                --spacing-section: 48px;
            }
            
            .nav-center,
            .nav-right {
                display: none;
            }
            
            .nav-logo {
                position: static;
                transform: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .category-header h1 {
                font-size: 32px;
            }
            
            .category-header p {
                font-size: 16px;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 40px 24px;
            }
            
            .cta-section h2 {
                font-size: 24px;
            }
            
            .cta-section p {
                font-size: 16px;
            }
        }
