/* roulang page: index */
/* ===== Design Variables ===== */
        :root {
            --primary: #1a1a2e;
            --primary-light: #16213e;
            --primary-dark: #0f0f1a;
            --accent: #f5a623;
            --accent-hover: #e0951a;
            --accent-glow: rgba(245, 166, 35, 0.3);
            --bg-dark: #0d0d1a;
            --bg-card: #1c1c3a;
            --bg-section: #13132b;
            --text-light: #f0f0f5;
            --text-muted: #a0a0c0;
            --text-dark: #e0e0ec;
            --border-color: rgba(245, 166, 35, 0.15);
            --border-card: rgba(255, 255, 255, 0.06);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.08);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --container-max: 1200px;
            --header-height: 72px;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
            background: var(--bg-dark);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-hover);
        }

        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            font-weight: 700;
            color: var(--text-light);
        }

        h1 {
            font-size: clamp(2.4rem, 6vw, 4.2rem);
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        }
        h4 {
            font-size: 1.15rem;
        }

        p {
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        /* ===== Container ===== */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ===== Section Spacing ===== */
        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-header h2 {
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .section-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-hover));
            border-radius: 4px;
            margin: 16px auto 0;
        }

        /* ===== Header & Navigation ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(13, 13, 26, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(245, 166, 35, 0.08);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(13, 13, 26, 0.96);
            border-bottom-color: rgba(245, 166, 35, 0.2);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), #f7c948);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 900;
        }

        .logo span {
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-main {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-main a {
            padding: 8px 20px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: all var(--transition);
            position: relative;
        }

        .nav-main a:hover {
            color: var(--text-light);
            background: rgba(245, 166, 35, 0.08);
        }

        .nav-main a.active {
            color: var(--accent);
            background: rgba(245, 166, 35, 0.12);
        }

        .nav-main a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-search {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 8px 16px;
            color: var(--text-light);
            font-size: 0.9rem;
            width: 180px;
            transition: all var(--transition);
        }

        .nav-search::placeholder {
            color: var(--text-muted);
        }

        .nav-search:focus {
            border-color: var(--accent);
            background: rgba(245, 166, 35, 0.06);
            box-shadow: 0 0 20px rgba(245, 166, 35, 0.06);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--accent), #e0951a);
            color: var(--primary-dark);
            padding: 8px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            transition: all var(--transition);
            box-shadow: 0 4px 16px rgba(245, 166, 35, 0.2);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245, 166, 35, 0.35);
            color: var(--primary-dark);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            color: var(--text-light);
            font-size: 1.5rem;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            background: rgba(13, 13, 26, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(245, 166, 35, 0.1);
            padding: 24px;
            flex-direction: column;
            gap: 8px;
            z-index: 999;
            transform: translateY(-120%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav.open {
            transform: translateY(0);
        }

        .mobile-nav a {
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: all var(--transition);
        }

        .mobile-nav a:hover {
            color: var(--text-light);
            background: rgba(245, 166, 35, 0.08);
        }

        .mobile-nav a.active {
            color: var(--accent);
            background: rgba(245, 166, 35, 0.12);
        }

        @media (max-width: 768px) {
            .nav-main {
                display: none;
            }
            .nav-search {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .mobile-nav {
                display: flex;
            }
            .nav-cta {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .header-inner {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: var(--header-height);
            overflow: hidden;
            background: var(--bg-dark);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            opacity: 0.4;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(26, 26, 46, 0.3) 0%, rgba(13, 13, 26, 0.85) 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px 24px;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            background: rgba(245, 166, 35, 0.12);
            border: 1px solid rgba(245, 166, 35, 0.2);
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #f5a623, #f7c948, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto 36px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--accent), #e0951a);
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            box-shadow: 0 4px 24px rgba(245, 166, 35, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(245, 166, 35, 0.4);
            color: var(--primary-dark);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border: 2px solid rgba(245, 166, 35, 0.3);
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: var(--accent);
            background: rgba(245, 166, 35, 0.06);
            color: var(--accent);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }

        .hero-stat .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 90vh;
            }
            .hero-stats {
                gap: 24px;
                padding-top: 28px;
                margin-top: 36px;
            }
            .hero-stat .num {
                font-size: 1.4rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .hero-stats {
                flex-direction: column;
                gap: 16px;
            }
        }

        /* ===== Intro Section ===== */
        .intro-section {
            background: var(--bg-section);
            position: relative;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            position: relative;
        }

        .intro-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .intro-image:hover img {
            transform: scale(1.03);
        }

        .intro-text h2 {
            margin-bottom: 20px;
        }

        .intro-text p {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .intro-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
        }

        .intro-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-card);
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .intro-feature-item i {
            color: var(--accent);
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .intro-image img {
                height: 260px;
            }
            .intro-features {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Features / Cards Section ===== */
        .features-section {
            background: var(--bg-dark);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            border: 1px solid var(--border-card);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card), var(--shadow-glow);
            border-color: rgba(245, 166, 35, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            transition: all var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: rgba(245, 166, 35, 0.18);
            transform: scale(1.05);
        }

        .feature-card h3 {
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .feature-card {
                padding: 28px 20px;
            }
        }

        /* ===== Games / Cover Cards Section ===== */
        .games-section {
            background: var(--bg-section);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .game-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            transition: all var(--transition);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card), var(--shadow-glow);
            border-color: rgba(245, 166, 35, 0.15);
        }

        .game-card-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .game-card:hover .game-card-image img {
            transform: scale(1.08);
        }

        .game-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 13, 26, 0.8), transparent);
            opacity: 0;
            transition: opacity var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 16px;
        }

        .game-card:hover .game-card-overlay {
            opacity: 1;
        }

        .game-card-overlay .tag {
            padding: 4px 14px;
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 50px;
        }

        .game-card-body {
            padding: 20px 24px 24px;
        }

        .game-card-body h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .game-card-body p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .game-card-body .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .game-card-body .card-meta i {
            margin-right: 4px;
            color: var(--accent);
        }

        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .games-grid {
                grid-template-columns: 1fr;
            }
            .game-card-image {
                height: 180px;
            }
        }

        /* ===== Latest Posts / CMS Section ===== */
        .posts-section {
            background: var(--bg-dark);
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .post-card {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px;
            border: 1px solid var(--border-card);
            transition: all var(--transition);
        }

        .post-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: rgba(245, 166, 35, 0.12);
        }

        .post-card-image {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .post-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-card-content {
            flex: 1;
            min-width: 0;
        }

        .post-card-content .post-category {
            display: inline-block;
            padding: 2px 12px;
            background: rgba(245, 166, 35, 0.1);
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 8px;
        }

        .post-card-content h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .post-card-content h3 a {
            color: var(--text-light);
        }

        .post-card-content h3 a:hover {
            color: var(--accent);
        }

        .post-card-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-card-content .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .post-card-content .post-meta i {
            margin-right: 4px;
            color: var(--accent);
        }

        .posts-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
            font-size: 1.05rem;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .posts-grid {
                grid-template-columns: 1fr;
            }
            .post-card {
                flex-direction: column;
            }
            .post-card-image {
                width: 100%;
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .post-card-image {
                height: 140px;
            }
            .post-card {
                padding: 16px;
            }
        }

        /* ===== Stats / Data Section ===== */
        .stats-section {
            position: relative;
            background: var(--bg-section);
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            opacity: 0.08;
            z-index: 0;
        }

        .stats-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-item {
            padding: 32px 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            transition: all var(--transition);
        }

        .stat-item:hover {
            border-color: rgba(245, 166, 35, 0.2);
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
        }

        .stat-item .stat-num {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.2;
        }

        .stat-item .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-top: 8px;
            display: block;
        }

        .stat-item .stat-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 16px;
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stat-item .stat-num {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-item {
                padding: 20px 12px;
            }
            .stat-item .stat-num {
                font-size: 1.7rem;
            }
        }

        /* ===== Steps / Process Section ===== */
        .steps-section {
            background: var(--bg-dark);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), rgba(245, 166, 35, 0.1), var(--accent));
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 32px 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            transition: all var(--transition);
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card);
            border-color: rgba(245, 166, 35, 0.15);
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent), #e0951a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin: 0 auto 20px;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
        }

        .step-card h3 {
            font-size: 1.05rem;
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid::before {
                display: none;
            }
        }

        @media (max-width: 560px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .step-card {
                padding: 24px 16px;
            }
        }

        /* ===== FAQ Section ===== */
        .faq-section {
            background: var(--bg-section);
        }

        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(245, 166, 35, 0.12);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-light);
            background: none;
            width: 100%;
            text-align: left;
            transition: background var(--transition);
        }

        .faq-question:hover {
            background: rgba(245, 166, 35, 0.03);
        }

        .faq-question i {
            color: var(--accent);
            transition: transform var(--transition);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .faq-answer p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        @media (max-width: 480px) {
            .faq-question {
                padding: 16px 18px;
                font-size: 0.95rem;
            }
            .faq-answer {
                padding: 0 18px;
            }
            .faq-item.open .faq-answer {
                padding: 0 18px 16px;
            }
        }

        /* ===== CTA Section ===== */
        .cta-section {
            position: relative;
            background: var(--bg-dark);
            overflow: hidden;
            padding: 100px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.png') center center / cover no-repeat;
            opacity: 0.06;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            margin-bottom: 18px;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 36px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 60px 0;
            }
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary-dark);
            border-top: 1px solid rgba(245, 166, 35, 0.06);
            padding: 60px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 320px;
            margin-bottom: 0;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: all var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-col ul li a i {
            margin-right: 6px;
            font-size: 0.8rem;
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .footer-bottom a {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1rem;
            transition: all var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-socials a:hover {
            background: var(--accent);
            color: var(--primary-dark);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(245, 166, 35, 0.3);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(245, 166, 35, 0.5);
        }

        /* ===== Fade-in Animation ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Responsive Helpers ===== */
        @media (max-width: 768px) {
            .section {
                padding: 56px 0;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .section-header h2 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 40px 0;
            }
            .section-header {
                margin-bottom: 28px;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
        }

/* roulang page: article */
:root {
            --primary: #7c3aed;
            --primary-dark: #5b21b6;
            --primary-light: #a78bfa;
            --secondary: #f59e0b;
            --secondary-dark: #d97706;
            --accent: #06b6d4;
            --bg-dark: #0f0e17;
            --bg-card: #1a1a2e;
            --bg-card-hover: #232344;
            --bg-section: #15132b;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --text-light: #cbd5e1;
            --border-color: rgba(124, 58, 237, 0.2);
            --border-hover: rgba(124, 58, 237, 0.5);
            --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 12px 40px rgba(124, 58, 237, 0.25);
            --radius: 16px;
            --radius-sm: 8px;
            --radius-lg: 24px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 14, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.3px;
        }
        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }
        .nav-main {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-main a {
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
            position: relative;
        }
        .nav-main a:hover {
            color: #fff;
            background: rgba(124, 58, 237, 0.12);
        }
        .nav-main a.active {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 16px;
        }
        .nav-cta .btn-primary {
            padding: 10px 24px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: #1a1a2e;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
            border: none;
            cursor: pointer;
        }
        .nav-cta .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(124, 58, 237, 0.15);
        }
        /* Article Hero */
        .article-hero {
            padding: 60px 0 40px;
            background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
            border-bottom: 1px solid var(--border-color);
        }
        .article-hero .container-narrow {
            text-align: center;
        }
        .article-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .article-breadcrumb a {
            color: var(--primary-light);
        }
        .article-breadcrumb a:hover {
            color: #fff;
        }
        .article-breadcrumb .sep {
            color: var(--text-muted);
            font-size: 0.7rem;
        }
        .article-category-badge {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 50px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
            color: var(--primary-light);
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        .article-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta i {
            color: var(--primary-light);
        }
        /* Article Content */
        .article-content-wrap {
            padding: 50px 0 70px;
        }
        .article-body {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 50px 56px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
        }
        .article-body .featured-image {
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 36px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        .article-body .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body .content {
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--text-light);
        }
        .article-body .content p {
            margin-bottom: 1.6em;
        }
        .article-body .content h2 {
            font-size: 1.65rem;
            font-weight: 700;
            color: #fff;
            margin: 2em 0 0.8em;
            letter-spacing: -0.3px;
        }
        .article-body .content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin: 1.8em 0 0.6em;
        }
        .article-body .content ul,
        .article-body .content ol {
            margin: 1em 0 1.6em 1.6em;
            color: var(--text-light);
        }
        .article-body .content li {
            margin-bottom: 0.5em;
        }
        .article-body .content a {
            color: var(--primary-light);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .article-body .content a:hover {
            color: #fff;
        }
        .article-body .content blockquote {
            border-left: 4px solid var(--primary);
            background: rgba(124, 58, 237, 0.08);
            padding: 20px 28px;
            margin: 1.6em 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: var(--text-light);
            font-style: italic;
        }
        .article-body .content img {
            border-radius: var(--radius);
            margin: 1.6em 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .article-body .content code {
            background: rgba(124, 58, 237, 0.12);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.9em;
            color: var(--primary-light);
        }
        .article-body .content pre {
            background: rgba(0, 0, 0, 0.4);
            border-radius: var(--radius-sm);
            padding: 24px 28px;
            overflow-x: auto;
            margin: 1.6em 0;
            border: 1px solid var(--border-color);
        }
        .article-body .content pre code {
            background: none;
            padding: 0;
            color: var(--text-light);
        }
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        .article-tags .tag {
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(124, 58, 237, 0.1);
            color: var(--primary-light);
            font-size: 0.85rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .article-tags .tag:hover {
            background: rgba(124, 58, 237, 0.2);
            border-color: var(--border-hover);
        }
        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        .article-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            background: rgba(124, 58, 237, 0.06);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            color: var(--text-light);
            font-size: 0.95rem;
            max-width: 45%;
        }
        .article-nav a:hover {
            background: rgba(124, 58, 237, 0.14);
            border-color: var(--border-hover);
            color: #fff;
            transform: translateY(-2px);
        }
        .article-nav a.next {
            text-align: right;
            flex-direction: row-reverse;
        }
        /* Not Found */
        .not-found-box {
            text-align: center;
            padding: 80px 40px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
        }
        .not-found-box i {
            font-size: 4rem;
            color: var(--primary-light);
            margin-bottom: 24px;
            opacity: 0.5;
        }
        .not-found-box h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .not-found-box p {
            color: var(--text-muted);
            margin-bottom: 28px;
            font-size: 1.05rem;
        }
        .not-found-box .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
        }
        .not-found-box .btn-back:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
        }
        /* Related Posts */
        .related-section {
            padding: 60px 0 80px;
            background: var(--bg-section);
            border-top: 1px solid var(--border-color);
        }
        .related-section .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .related-section .section-sub {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 44px;
            font-size: 1.05rem;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .related-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            box-shadow: var(--shadow-card);
        }
        .related-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
            box-shadow: var(--shadow-hover);
            background: var(--bg-card-hover);
        }
        .related-card .card-img {
            height: 200px;
            overflow: hidden;
            background: rgba(124, 58, 237, 0.06);
        }
        .related-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .related-card:hover .card-img img {
            transform: scale(1.05);
        }
        .related-card .card-body {
            padding: 22px 24px 26px;
        }
        .related-card .card-cat {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 50px;
            background: rgba(124, 58, 237, 0.12);
            color: var(--primary-light);
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .related-card .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card .card-title:hover {
            color: var(--primary-light);
        }
        .related-card .card-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .related-card .card-meta i {
            color: var(--primary-light);
            margin-right: 4px;
        }
        /* Footer */
        .site-footer {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a14 100%);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 320px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        .footer-col ul li a i {
            font-size: 0.7rem;
            color: var(--primary-light);
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .footer-col ul li a:hover i {
            transform: translateX(2px);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.88rem;
        }
        .footer-socials {
            display: flex;
            gap: 12px;
        }
        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.1);
            color: var(--text-muted);
            font-size: 1.1rem;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .footer-socials a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
        }
        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(15, 14, 23, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 20px 24px;
            z-index: 99;
            flex-direction: column;
            gap: 8px;
            transform: translateY(-110%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-nav.open {
            transform: translateY(0);
        }
        .mobile-nav a {
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: rgba(124, 58, 237, 0.1);
            color: #fff;
        }
        .mobile-nav a.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .article-body {
                padding: 36px 32px;
            }
            .article-hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-main,
            .nav-cta {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .mobile-nav {
                display: flex;
            }
            .article-hero {
                padding: 40px 0 30px;
            }
            .article-hero h1 {
                font-size: 1.7rem;
            }
            .article-body {
                padding: 24px 20px;
                border-radius: var(--radius);
            }
            .article-body .content {
                font-size: 0.98rem;
            }
            .article-nav {
                flex-direction: column;
            }
            .article-nav a {
                max-width: 100%;
                justify-content: center;
            }
            .related-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .container {
                padding: 0 16px;
            }
            .container-narrow {
                padding: 0 16px;
            }
            .article-meta {
                gap: 12px;
                font-size: 0.85rem;
            }
            .related-section .section-title {
                font-size: 1.6rem;
            }
            .not-found-box {
                padding: 50px 24px;
            }
            .not-found-box i {
                font-size: 3rem;
            }
        }
        @media (max-width: 520px) {
            .site-header .container {
                height: 64px;
            }
            .logo {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .article-hero h1 {
                font-size: 1.4rem;
            }
            .article-body {
                padding: 18px 14px;
            }
            .article-body .content {
                font-size: 0.93rem;
            }
            .article-body .content h2 {
                font-size: 1.3rem;
            }
            .article-body .content h3 {
                font-size: 1.1rem;
            }
            .article-breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .related-card .card-body {
                padding: 18px 18px 22px;
            }
        }
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }
        /* Selection */
        ::selection {
            background: var(--primary);
            color: #fff;
        }

/* roulang page: category1 */
/* ===== :root 设计变量 ===== */
        :root {
            --primary: #1a56db;
            --primary-dark: #1243af;
            --primary-light: #3b82f6;
            --primary-bg: #eff6ff;
            --accent: #f59e0b;
            --accent-dark: #d97706;
            --accent-light: #fbbf24;
            --success: #10b981;
            --bg: #ffffff;
            --bg-alt: #f8fafc;
            --bg-card: #ffffff;
            --text: #0f172a;
            --text-secondary: #475569;
            --text-light: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', sans-serif;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1200px;
            --header-height: 72px;
        }

        /* ===== Reset ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            border: none;
            outline: none;
        }
        button {
            cursor: pointer;
            background: none;
        }
        ul,
        ol {
            list-style: none;
        }
        h1, h2, h3, h4, h5, h6 {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border-radius: var(--radius-sm);
            font-size: 18px;
            font-weight: 700;
        }
        .nav-main {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-main a {
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            position: relative;
        }
        .nav-main a:hover {
            color: var(--primary);
            background: var(--primary-bg);
        }
        .nav-main a.active {
            color: var(--primary);
            background: var(--primary-bg);
            font-weight: 600;
        }
        .nav-main a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 4px;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff !important;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition);
            box-shadow: 0 4px 14px rgba(26,86,219,0.3);
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26,86,219,0.4);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text);
            border-radius: 4px;
            transition: all var(--transition);
        }
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Hero / 横幅 ===== */
        .page-hero {
            margin-top: var(--header-height);
            padding: 80px 0 60px;
            background: linear-gradient(135deg, var(--primary-bg) 0%, #eef2ff 50%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
            min-height: 360px;
            display: flex;
            align-items: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.png') center/cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .page-hero h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        .page-hero h1 span {
            color: var(--primary);
        }
        .page-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }
        .hero-badge i {
            color: var(--primary);
        }

        /* ===== 板块通用 ===== */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-alt);
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .section-title p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .section-title .overline {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        /* ===== 流程步骤 ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .step-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 24px 28px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border-radius: 50%;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .step-card .step-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        /* ===== 分类卡片 ===== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .category-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .category-card .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .category-card .card-body {
            padding: 20px 24px 24px;
        }
        .category-card .card-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .category-card .card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .card-tag {
            padding: 3px 12px;
            background: var(--primary-bg);
            color: var(--primary);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 500;
        }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }
        .card-link i {
            font-size: 12px;
            transition: transform var(--transition);
        }
        .card-link:hover i {
            transform: translateX(4px);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: var(--primary-light);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            gap: 16px;
        }
        .faq-question:hover {
            background: var(--primary-bg);
        }
        .faq-question i {
            font-size: 14px;
            color: var(--primary);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            opacity: 0.06;
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }
        .cta-section p {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-primary {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 4px 14px rgba(0,0,0,0.1);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.18);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.35);
        }
        .btn-outline-light:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-2px);
        }

        /* ===== 资源列表 ===== */
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .resource-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all var(--transition);
        }
        .resource-item:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .resource-item .r-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-bg);
            color: var(--primary);
            border-radius: var(--radius-sm);
            font-size: 20px;
            flex-shrink: 0;
        }
        .resource-item .r-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .resource-item .r-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #0f172a;
            color: rgba(255,255,255,0.8);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .footer-brand .logo {
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-brand .logo .logo-icon {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255,255,255,0.6);
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .footer-col ul li a i {
            font-size: 12px;
            color: var(--primary-light);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }
        .footer-socials {
            display: flex;
            gap: 12px;
        }
        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.6);
            font-size: 16px;
            transition: all var(--transition);
        }
        .footer-socials a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }
            .nav-main {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 16px 24px 24px;
                gap: 4px;
                border-bottom: 1px solid var(--border);
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.4s ease;
                box-shadow: 0 20px 40px rgba(0,0,0,0.08);
                pointer-events: none;
            }
            .nav-main.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-main a {
                padding: 12px 16px;
                font-size: 16px;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            .nav-main a.active::after {
                display: none;
            }
            .nav-main a.active {
                background: var(--primary-bg);
            }
            .nav-cta {
                margin-top: 8px;
                justify-content: center;
                width: 100%;
            }
            .nav-toggle {
                display: flex;
            }
            .page-hero {
                padding: 60px 0 40px;
                min-height: 300px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero p {
                font-size: 16px;
            }
            .hero-badges {
                gap: 8px;
            }
            .hero-badge {
                font-size: 12px;
                padding: 4px 12px;
            }
            .section {
                padding: 56px 0;
            }
            .section-title h2 {
                font-size: 26px;
            }
            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .step-card {
                padding: 24px 16px 20px;
            }
            .category-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .resource-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cta-section h2 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 24px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .section-title h2 {
                font-size: 22px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* ===== 工具类 ===== */
        .text-center {
            text-align: center;
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
