/* roulang page: index */
:root {
            --primary: #8B5CF6;
            --primary-hover: #7C3AED;
            --accent: #EC4899;
            --bg-light: #F8FAFC;
            --card-border: rgba(226, 232, 240, 0.8);
        }
        .comic-gradient {
            background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
        }
        .comic-shadow {
            box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15), 0 8px 10px -6px rgba(236, 72, 153, 0.1);
        }
        .hero-mask {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.94) 100%);
        }
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background-color: #CBD5E1;
            border-radius: 9999px;
        }

/* roulang page: category1 */
:root {
            --primary: #8B5CF6;
            --primary-hover: #7C3AED;
            --accent: #EC4899;
            --bg-light: #F8FAFC;
            --card-border: rgba(226, 232, 240, 0.8);
        }
        .comic-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        }
        .comic-shadow {
            box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15), 0 8px 10px -6px rgba(236, 72, 153, 0.1);
        }
        .hero-mask {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.94) 100%);
        }
        .cover-ratio {
            aspect-ratio: 3 / 4;
        }

/* roulang page: article */
:root {
            --primary: #8B5CF6;
            --primary-hover: #7C3AED;
            --accent: #EC4899;
            --bg-light: #F8FAFC;
            --card-border: rgba(226, 232, 240, 0.8);
        }
        .comic-gradient {
            background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
        }
        .comic-shadow {
            box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15), 0 8px 10px -6px rgba(236, 72, 153, 0.1);
        }
        .hero-mask {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.94) 100%);
        }
        .article-content {
            color: #334155;
            font-size: 1.05rem;
            line-height: 1.85;
            word-break: break-word;
        }
        .article-content p {
            margin-bottom: 1.35rem;
        }
        .article-content h2 {
            font-size: 1.45rem;
            font-weight: 800;
            color: #0F172A;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
            padding-left: 0.85rem;
            border-left: 4px solid var(--primary);
        }
        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1E293B;
            margin-top: 1.8rem;
            margin-bottom: 0.85rem;
        }
        .article-content img {
            border-radius: 0.75rem;
            margin: 1.5rem auto;
            max-width: 100%;
            height: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            background: #FDF2F8;
            padding: 1rem 1.25rem;
            border-radius: 0 0.75rem 0.75rem 0;
            margin: 1.5rem 0;
            color: #64748B;
            font-style: normal;
        }
        .article-content ul, .article-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
            list-style-type: disc;
        }
