/* roulang page: index */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.65rem 0.8rem;
                font-size: 0.95rem;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-logo {
                font-size: 0.95rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .btn-login {
                padding: 0.45rem 0.8rem;
                font-size: 0.8rem;
            }
            .btn-signup {
                padding: 0.45rem 0.9rem;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 520px) {
            .nav-wrapper {
                height: 60px;
                gap: 0.5rem;
            }
            .nav-logo {
                font-size: 0.78rem;
                gap: 0.4rem;
            }
            .nav-logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
            .btn-login {
                padding: 0.4rem 0.6rem;
                font-size: 0.72rem;
            }
            .btn-signup {
                padding: 0.4rem 0.7rem;
                font-size: 0.72rem;
            }
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 0 64px;
            background-image: linear-gradient(180deg, rgba(5,31,20,0.78) 0%, rgba(5,31,20,0.58) 55%, rgba(5,31,20,0.94) 100%), url('/assets/images/e16640352afbecb8.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-bottom: 3px solid rgba(245, 158, 11, 0.4);
            isolation: isolate;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 22% 40%, rgba(245, 158, 11, 0.16), transparent 55%);
            z-index: -1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(220, 38, 38, 0.16);
            border: 1px solid rgba(220, 38, 38, 0.5);
            color: #FCA5A5;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            width: fit-content;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.015em;
            color: var(--ivory);
            max-width: 750px;
            margin-bottom: 1.25rem;
        }
        .hero h1 .gold-text {
            background: linear-gradient(135deg, #FCD34D, #F59E0B 50%, #FBBF24);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline;
        }
        .hero-desc {
            font-size: 1.08rem;
            color: var(--pale-mint);
            max-width: 680px;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }
        .btn-primary-hero {
            padding: 0.85rem 1.8rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 50%, #B45309);
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
        }
        .btn-primary-hero:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-outline-hero {
            padding: 0.85rem 1.8rem;
            border-radius: var(--radius-md);
            border: 2px solid rgba(245, 158, 11, 0.55);
            color: var(--gold-light);
            font-weight: 700;
            font-size: 1rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-outline-hero:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .countdown-bar {
            background: rgba(11, 46, 30, 0.88);
            border: 1px solid rgba(245, 158, 11, 0.35);
            border-radius: var(--radius-md);
            padding: 0.9rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            width: fit-content;
            backdrop-filter: blur(8px);
        }
        .countdown-item {
            text-align: center;
            min-width: 56px;
        }
        .countdown-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1.1;
        }
        .countdown-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--olive-gold);
        }
        .countdown-sep {
            font-size: 1.6rem;
            color: var(--gold);
            font-weight: 700;
        }
        @media (max-width: 1024px) {
            .hero {
                min-height: 72vh;
                padding: 100px 0 48px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 90px 0 40px;
            }
            .hero h1 {
                font-size: 1.9rem;
                line-height: 1.2;
            }
            .hero-desc {
                font-size: 0.95rem;
                margin-bottom: 1.4rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .btn-primary-hero,
            .btn-outline-hero {
                width: 100%;
                text-align: center;
            }
            .countdown-bar {
                width: 100%;
                justify-content: center;
                gap: 0.6rem;
                padding: 0.7rem 0.8rem;
            }
            .countdown-num {
                font-size: 1.4rem;
            }
            .countdown-sep {
                font-size: 1.2rem;
            }
        }

        /* Section base */
        .section {
            padding: 4rem 0;
        }
        .section-dark {
            background: var(--bg-forest);
        }
        .section-deep {
            background: var(--bg-deep);
        }
        .section-title-wrap {
            margin-bottom: 2.2rem;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gold);
            margin-bottom: 0.6rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--ivory);
            margin-bottom: 0.9rem;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--pale-mint);
            line-height: 1.7;
            max-width: 720px;
        }
        .section-desc.small {
            font-size: 0.92rem;
        }
        @media (max-width: 768px) {
            .section {
                padding: 2.5rem 0;
            }
            .section-title {
                font-size: 1.55rem;
            }
        }

        /* KPI strip */
        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .kpi-card {
            background: rgba(11, 46, 30, 0.75);
            border: 1px solid rgba(245, 158, 11, 0.22);
            border-radius: var(--radius-md);
            padding: 1.5rem 1.2rem;
            text-align: center;
            transition: all var(--transition);
        }
        .kpi-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }
        .kpi-value {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--gold-light);
            line-height: 1.15;
        }
        .kpi-label {
            font-size: 0.85rem;
            color: var(--olive-gold);
            margin-top: 0.3rem;
        }
        @media (max-width: 768px) {
            .kpi-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            .kpi-value {
                font-size: 1.7rem;
            }
        }

        /* Service matrix */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .service-item {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.18);
            border-radius: var(--radius-md);
            padding: 1.6rem 1.3rem;
            transition: all var(--transition);
            text-align: left;
        }
        .service-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
            box-shadow: var(--shadow-card);
        }
        .service-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(245, 158, 11, 0.13);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 1.3rem;
            margin-bottom: 0.9rem;
            border: 1px solid rgba(245, 158, 11, 0.25);
        }
        .service-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        .service-item p {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
            .service-item {
                padding: 1.2rem 1rem;
            }
        }

        /* Game cards */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.1rem;
        }
        .game-card {
            background: rgba(11, 46, 30, 0.8);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
            position: relative;
            cursor: pointer;
        }
        .game-card:hover {
            border-color: rgba(245, 158, 11, 0.55);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        .game-img {
            aspect-ratio: 4/3;
            object-fit: cover;
            width: 100%;
        }
        .game-tag {
            position: absolute;
            top: 0.6rem;
            left: 0.6rem;
            background: rgba(220, 38, 38, 0.85);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            z-index: 2;
        }
        .game-tag.vip {
            background: rgba(245, 158, 11, 0.9);
            color: #051F14;
        }
        .game-body {
            padding: 0.75rem 0.7rem;
        }
        .game-body h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.25rem;
        }
        .game-body p {
            font-size: 0.72rem;
            color: var(--olive-gold);
        }
        @media (max-width: 1024px) {
            .game-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
            }
            .game-body h4 {
                font-size: 0.75rem;
            }
            .game-body p {
                font-size: 0.68rem;
            }
        }

        /* Comparison */
        .compare-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .compare-card {
            border-radius: var(--radius-md);
            padding: 1.6rem;
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        .compare-card.highlight {
            border-color: rgba(245, 158, 11, 0.55);
            background: rgba(245, 158, 11, 0.06);
            position: relative;
        }
        .compare-card.highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #FCD34D, #F59E0B, #B45309);
            border-radius: var(--radius-md) var(--radius-md) 0 0;
        }
        .compare-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--ivory);
        }
        .compare-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .compare-list li {
            font-size: 0.9rem;
            color: var(--pale-mint);
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.5;
        }
        .compare-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--gold-light);
            font-weight: 700;
        }
        .compare-list li.neg::before {
            content: '✗';
            color: var(--dragon-red);
        }
        @media (max-width: 768px) {
            .compare-wrap {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Milestones */
        .timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .timeline-item {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1.4rem 1.2rem;
            text-align: left;
            transition: all var(--transition);
        }
        .timeline-item:hover {
            border-color: rgba(245, 158, 11, 0.5);
        }
        .timeline-year {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gold-light);
            display: block;
            margin-bottom: 0.3rem;
        }
        .timeline-item h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .timeline-item p {
            font-size: 0.82rem;
            color: var(--pale-mint);
            line-height: 1.55;
        }
        @media (max-width: 1024px) {
            .timeline {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .timeline {
                grid-template-columns: 1fr;
            }
        }

        /* Offers */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            align-items: stretch;
        }
        .offer-card {
            background: rgba(11, 46, 30, 0.75);
            border: 1px solid rgba(245, 158, 11, 0.22);
            border-radius: var(--radius-lg);
            padding: 1.8rem 1.4rem;
            transition: all var(--transition);
            position: relative;
            text-align: left;
        }
        .offer-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            border-color: rgba(245, 158, 11, 0.55);
        }
        .offer-card.recommended {
            border-color: rgba(245, 158, 11, 0.65);
            background: linear-gradient(160deg, rgba(245, 158, 11, 0.09) 0%, rgba(11, 46, 30, 0.85) 70%);
        }
        .offer-tag-img {
            position: absolute;
            top: -12px;
            right: 1rem;
            background: linear-gradient(135deg, #FCD34D, #F59E0B);
            color: #051F14;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
        }
        .offer-card h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .offer-percent {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--gold-light);
            line-height: 1.1;
            margin-bottom: 0.6rem;
        }
        .offer-card p {
            font-size: 0.85rem;
            color: var(--pale-mint);
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }
        .btn-offer {
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            background: rgba(245, 158, 11, 0.14);
            border: 1px solid rgba(245, 158, 11, 0.45);
            color: var(--gold-light);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-offer:hover {
            background: rgba(245, 158, 11, 0.25);
            border-color: var(--gold-light);
        }
        .btn-offer.solid {
            background: linear-gradient(135deg, #FCD34D, #F59E0B);
            color: #051F14;
            border: none;
        }
        .btn-offer.solid:hover {
            box-shadow: var(--shadow-gold-hover);
        }
        @media (max-width: 768px) {
            .offer-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Featured */
        .featured-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 1.2rem;
        }
        .featured-main {
            background: rgba(11, 46, 30, 0.8);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .featured-main:hover {
            box-shadow: var(--shadow-gold);
            border-color: rgba(245, 158, 11, 0.55);
        }
        .featured-main img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-main .featured-body {
            padding: 1.2rem 1.4rem;
        }
        .featured-main h4 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .featured-main p {
            font-size: 0.9rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        .featured-tag {
            display: inline-block;
            background: rgba(220, 38, 38, 0.85);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            margin-bottom: 0.5rem;
        }
        .featured-side {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .featured-small {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all var(--transition);
            cursor: pointer;
            flex: 1;
        }
        .featured-small:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-card);
        }
        .featured-small img {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }
        .featured-small h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.2rem;
        }
        .featured-small p {
            font-size: 0.75rem;
            color: var(--olive-gold);
        }
        @media (max-width: 768px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
            .featured-small {
                padding: 0.6rem 0.7rem;
            }
            .featured-small img {
                width: 56px;
                height: 56px;
            }
        }

        /* Category entrance */
        .category-entrance-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .category-entrance-item {
            background: rgba(11, 46, 30, 0.72);
            border: 1px solid rgba(245, 158, 11, 0.22);
            border-radius: var(--radius-md);
            padding: 1.3rem 1.2rem;
            transition: all var(--transition);
            cursor: pointer;
            text-align: left;
            display: flex;
            flex-direction: column;
        }
        .category-entrance-item:hover {
            border-color: rgba(245, 158, 11, 0.55);
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }
        .category-entrance-item .cat-icon {
            font-size: 1.5rem;
            color: var(--gold-light);
            margin-bottom: 0.6rem;
        }
        .category-entrance-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.35rem;
        }
        .category-entrance-item p {
            font-size: 0.8rem;
            color: var(--pale-mint);
            line-height: 1.55;
        }
        @media (max-width: 1024px) {
            .category-entrance-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .category-entrance-grid {
                grid-template-columns: 1fr;
            }
        }

        /* CMS news list */
        .news-layout {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 1.5rem;
            align-items: start;
        }
        .news-main-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .news-item {
            background: rgba(11, 46, 30, 0.72);
            border: 1px solid rgba(245, 158, 11, 0.18);
            border-radius: var(--radius-md);
            padding: 1.1rem 1.3rem;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
        }
        .news-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
            box-shadow: var(--shadow-card);
        }
        .news-item h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.25rem;
        }
        .news-item p {
            font-size: 0.82rem;
            color: var(--olive-gold);
            margin-bottom: 0.25rem;
            line-height: 1.5;
        }
        .news-item .news-meta {
            font-size: 0.72rem;
            color: rgba(163, 163, 117, 0.85);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .news-recommend {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: var(--radius-md);
            padding: 1.4rem 1.3rem;
            position: sticky;
            top: 80px;
        }
        .news-recommend h4 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 1rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
        }
        .news-recommend-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .news-recommend-list li a {
            font-size: 0.85rem;
            color: var(--pale-mint);
            line-height: 1.5;
            display: flex;
            gap: 0.5rem;
            transition: color var(--transition);
        }
        .news-recommend-list li a:hover {
            color: var(--gold-light);
        }
        .news-recommend-list li a::before {
            content: '♦';
            color: var(--gold);
            font-size: 0.7rem;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        @media (max-width: 768px) {
            .news-layout {
                grid-template-columns: 1fr;
            }
            .news-recommend {
                position: static;
            }
        }

        /* Security */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }
        .security-item {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.18);
            border-radius: var(--radius-md);
            padding: 1.4rem 1.3rem;
            text-align: left;
            transition: all var(--transition);
        }
        .security-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
        }
        .security-item .sec-icon {
            font-size: 1.4rem;
            color: var(--gold-light);
            margin-bottom: 0.7rem;
        }
        .security-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .security-item p {
            font-size: 0.82rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .security-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.18);
            border-radius: var(--radius-md);
            padding: 1.2rem 1.3rem;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
        }
        .faq-item summary {
            font-weight: 700;
            font-size: 0.98rem;
            color: var(--ivory);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.2rem;
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
            transition: transform var(--transition);
        }
        .faq-item[open] summary::after {
            content: '−';
        }
        .faq-item p {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.6;
            margin-top: 0.7rem;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(180deg, rgba(5, 31, 20, 0.7) 0%, rgba(11, 46, 30, 0.9) 100%), url('/assets/images/1a973111c200b4f3.jpg');
            background-size: cover;
            background-position: center;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(245, 158, 11, 0.35);
            padding: 3rem 2.5rem;
            text-align: center;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
        }
        .final-cta h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--ivory);
            margin-bottom: 0.8rem;
        }
        .final-cta p {
            font-size: 1rem;
            color: var(--pale-mint);
            max-width: 600px;
            margin: 0 auto 1.4rem;
            line-height: 1.7;
        }
        .final-cta .btn-primary-hero {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .final-cta {
                padding: 2rem 1.2rem;
            }
            .final-cta h3 {
                font-size: 1.4rem;
            }
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid rgba(245, 158, 11, 0.25);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-brand h5 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 0.6rem;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: var(--olive-gold);
            line-height: 1.6;
            max-width: 360px;
        }
        .footer-col h5 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--pale-mint);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.78rem;
            color: var(--olive-gold);
        }
        .footer-bottom a {
            color: var(--gold);
        }
        .footer-bottom a:hover {
            color: var(--gold-light);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }

        /* FAB */
        .fab {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 28%, #FCD34D, #F59E0B 65%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #F59E0B;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            cursor: pointer;
            transition: all var(--transition);
            opacity: 0.8;
            animation: fab-breathe 3.2s ease-in-out infinite;
        }
        .fab:hover {
            opacity: 1;
            scale: 1.1;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
        }
        .fab:active {
            scale: 0.95;
            translate: 0 2px;
        }
        .fab-icon {
            font-size: 1.5rem;
            color: #051F14;
            transition: transform 0.5s ease;
        }
        .fab:hover .fab-icon {
            transform: rotate(360deg);
        }
        .fab-noti {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border-radius: 50%;
            border: 2px solid #fff;
            animation: fab-pulse 1.8s ease-in-out infinite;
        }
        @keyframes fab-breathe {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        @keyframes fab-pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
            }
        }
        @media (max-width: 768px) {
            .fab {
                width: 48px;
                height: 48px;
                left: 0.7rem;
                bottom: 5rem;
            }
            .fab-icon {
                font-size: 1.3rem;
            }
        }

        /* Responsive helpers */
        .hidden-mobile {
            display: block;
        }
        @media (max-width: 768px) {
            .hidden-mobile {
                display: none;
            }
        }

/* roulang page: category1 */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        
        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        
        /* Hero */
        .hero-cat {
            padding: 130px 0 70px;
            background: linear-gradient(165deg, #051F14 0%, #0B2E1E 50%, #0A2316 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        }
        .hero-cat::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, rgba(245, 158, 11, 0.03) 65%, transparent 75%);
            pointer-events: none;
        }
        .hero-cat::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-cat .container {
            position: relative;
            z-index: 2;
        }
        .hero-cat-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
        }
        .hero-cat-content h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--gold-light);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .hero-cat-content h1 .highlight {
            color: var(--dragon-red);
            text-shadow: 0 0 24px rgba(220, 38, 38, 0.35);
        }
        .hero-cat-sub {
            font-size: 1.05rem;
            color: var(--pale-mint);
            line-height: 1.65;
            margin-bottom: 1.25rem;
            max-width: 540px;
        }
        .hero-cat-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 0.5rem;
        }
        .btn-hero-main {
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-hero-main:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-hero-secondary {
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 1rem;
            background: rgba(245, 158, 11, 0.08);
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-hero-secondary:hover {
            background: rgba(245, 158, 11, 0.16);
            border-color: var(--gold-light);
        }
        .hero-cat-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: rgba(220, 38, 38, 0.18);
            border: 1px solid rgba(220, 38, 38, 0.4);
            color: #FCA5A5;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }
        .hero-cat-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--dragon-red);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.5); }
        }
        .hero-data-panel {
            background: rgba(11, 46, 30, 0.75);
            border: 1px solid rgba(245, 158, 11, 0.35);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.6rem;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
        }
        .hero-data-panel h3 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold-light);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        }
        .hero-data-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(245, 158, 11, 0.12);
        }
        .hero-data-row:last-child {
            border-bottom: none;
        }
        .hero-data-label {
            font-size: 0.82rem;
            color: var(--olive-gold);
        }
        .hero-data-value {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-data-value .up {
            color: #34D399;
            font-size: 0.8rem;
        }
        .hero-data-value .live {
            color: var(--dragon-red);
            font-size: 0.8rem;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        
        /* Sections */
        .section-cat {
            padding: 70px 0;
            background: var(--bg-deep);
        }
        .section-cat-alt {
            padding: 70px 0;
            background: #0A2015;
            border-top: 1px solid rgba(245, 158, 11, 0.15);
            border-bottom: 1px solid rgba(245, 158, 11, 0.15);
        }
        .section-head {
            max-width: 660px;
            margin-bottom: 2.5rem;
        }
        .section-head h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1.3;
            margin-bottom: 0.7rem;
        }
        .section-head p {
            font-size: 0.95rem;
            color: var(--pale-mint);
            line-height: 1.65;
        }
        
        /* Cards */
        .card-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.4rem;
        }
        .card-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .card-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .cat-card {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1.6rem 1.4rem;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .cat-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        .cat-card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: rgba(245, 158, 11, 0.14);
            border: 1px solid rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        .cat-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            line-height: 1.35;
        }
        .cat-card p {
            font-size: 0.86rem;
            color: var(--olive-gold);
            line-height: 1.6;
            flex-grow: 1;
        }
        .cat-card-tag {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gold-light);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .cat-card-tag i {
            font-size: 0.65rem;
        }
        
        /* Process Steps */
        .steps-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.4rem;
            counter-reset: step-counter;
        }
        .step-item {
            position: relative;
            padding: 1.5rem 1.3rem 1.3rem;
            background: rgba(11, 46, 30, 0.6);
            border-radius: var(--radius-md);
            border: 1px solid rgba(245, 158, 11, 0.18);
            counter-increment: step-counter;
            transition: all var(--transition);
        }
        .step-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
            box-shadow: var(--shadow-card);
        }
        .step-item::before {
            content: counter(step-counter, decimal-leading-zero);
            position: absolute;
            top: -14px;
            left: 1.3rem;
            background: linear-gradient(135deg, #FCD34D, #F59E0B);
            color: #051F14;
            font-weight: 800;
            font-size: 0.78rem;
            padding: 0.3rem 0.65rem;
            border-radius: var(--radius-sm);
            letter-spacing: 0.03em;
        }
        .step-item h3 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
        }
        .step-item p {
            font-size: 0.84rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        
        /* Data stats */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            padding: 1.6rem;
            background: rgba(11, 46, 30, 0.7);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(245, 158, 11, 0.25);
        }
        .stat-block {
            text-align: center;
            padding: 0.4rem 0.6rem;
        }
        .stat-block .stat-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        .stat-block .stat-label {
            font-size: 0.78rem;
            color: var(--olive-gold);
            margin-top: 0.3rem;
            letter-spacing: 0.03em;
        }
        
        /* Post list */
        .post-list-cat {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }
        .post-card {
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.18);
            border-radius: var(--radius-md);
            padding: 1.2rem 1.3rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: all var(--transition);
        }
        .post-card:hover {
            border-color: rgba(245, 158, 11, 0.45);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .post-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gold-light);
            line-height: 1.4;
        }
        .post-card p {
            font-size: 0.84rem;
            color: var(--pale-mint);
            line-height: 1.6;
            flex-grow: 1;
        }
        .post-card-meta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.75rem;
            color: var(--olive-gold);
        }
        .post-card-meta .post-cat {
            padding: 0.15rem 0.5rem;
            border-radius: 999px;
            background: rgba(245, 158, 11, 0.14);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.7rem;
        }
        
        /* FAQ */
        .faq-list-cat {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 800px;
        }
        .faq-item {
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
        }
        .faq-item summary {
            padding: 1.1rem 1.3rem;
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--ivory);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.6rem;
            transition: color var(--transition);
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary:hover {
            color: var(--gold-light);
        }
        .faq-item summary .fa-chevron-down {
            color: var(--gold);
            font-size: 0.75rem;
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item[open] summary .fa-chevron-down {
            transform: rotate(180deg);
        }
        .faq-item .faq-answer {
            padding: 0 1.3rem 1.2rem;
            font-size: 0.86rem;
            color: var(--pale-mint);
            line-height: 1.65;
        }
        
        /* CTA */
        .cta-cat-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, #0B2317 55%, #082013 100%);
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-cat-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 65%);
            pointer-events: none;
        }
        .cta-cat-section .container {
            position: relative;
            z-index: 2;
        }
        .cta-cat-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 0.7rem;
            line-height: 1.3;
        }
        .cta-cat-section p {
            font-size: 0.95rem;
            color: var(--pale-mint);
            max-width: 560px;
            margin: 0 auto 1.5rem;
            line-height: 1.65;
        }
        .cta-cat-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* Footer */
        .site-footer {
            background: #03120C;
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            padding: 50px 0 25px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.15);
        }
        .footer-brand h5 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: var(--olive-gold);
            line-height: 1.65;
        }
        .footer-col h5 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 0.7rem;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .footer-col a {
            font-size: 0.82rem;
            color: var(--pale-mint);
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            padding-top: 1.3rem;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--olive-gold);
            line-height: 1.6;
        }
        .footer-bottom a {
            color: var(--gold-light);
            font-weight: 600;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* FAB */
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #2B2B2B, #0B0B0B 70%);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            transition: all var(--transition);
            text-decoration: none;
            color: var(--gold-light);
            font-size: 1.3rem;
            opacity: 0.8;
            animation: fab-breathe 2.5s ease-in-out infinite;
        }
        .fab-royal:hover {
            transform: scale(1.1);
            opacity: 1;
            box-shadow: 0 8px 35px rgba(245, 158, 11, 0.5);
            animation-play-state: paused;
        }
        .fab-royal:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-royal .fab-notif {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--dragon-red);
            border: 2px solid #FFFFFF;
            animation: pulse-badge 1.6s ease-in-out infinite;
        }
        @keyframes fab-breathe {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
            50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-cat-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero-cat {
                padding: 110px 0 55px;
            }
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.8rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.7rem 1rem;
                font-size: 0.95rem;
            }
            .nav-links a.active::after {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-logo {
                font-size: 0.85rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .btn-login,
            .btn-signup {
                padding: 0.4rem 0.8rem;
                font-size: 0.78rem;
            }
            .hero-cat-content h1 {
                font-size: 1.7rem;
            }
            .hero-cat-sub {
                font-size: 0.9rem;
            }
            .card-grid-3,
            .card-grid-2 {
                grid-template-columns: 1fr;
            }
            .card-grid-4 {
                grid-template-columns: 1fr;
            }
            .post-list-cat {
                grid-template-columns: 1fr;
            }
            .section-cat,
            .section-cat-alt {
                padding: 50px 0;
            }
            .section-head h2 {
                font-size: 1.35rem;
            }
            .cta-cat-section {
                padding: 60px 0;
            }
            .cta-cat-section h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .fab-royal {
                width: 48px;
                height: 48px;
                left: 0.75rem;
                bottom: 4.5rem;
                font-size: 1.1rem;
            }
            .container {
                padding: 0 1rem;
            }
        }
        @media (max-width: 520px) {
            .hero-cat {
                padding: 95px 0 45px;
            }
            .hero-cat-content h1 {
                font-size: 1.4rem;
            }
            .btn-hero-main,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            .hero-cat-actions {
                flex-direction: column;
                gap: 0.7rem;
            }
            .hero-data-panel {
                padding: 1.2rem;
            }
            .steps-row {
                grid-template-columns: 1fr;
            }
            .stats-strip {
                grid-template-columns: 1fr 1fr;
                padding: 1.2rem;
            }
            .stat-block .stat-value {
                font-size: 1.3rem;
            }
            .section-head h2 {
                font-size: 1.2rem;
            }
            .cta-cat-btns {
                flex-direction: column;
                gap: 0.7rem;
            }
            .cta-cat-btns .btn-hero-main,
            .cta-cat-btns .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            .faq-item summary {
                font-size: 0.84rem;
                padding: 0.9rem 1rem;
            }
            .faq-item .faq-answer {
                font-size: 0.8rem;
                padding: 0 1rem 1rem;
            }
            .nav-actions {
                gap: 0.3rem;
            }
            .btn-login {
                padding: 0.35rem 0.6rem;
                font-size: 0.72rem;
            }
            .btn-signup {
                padding: 0.35rem 0.7rem;
                font-size: 0.72rem;
            }
        }

/* roulang page: article */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            padding-top: 68px;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }

        h1, h2, h3, h4, h5 {
            line-height: 1.2;
            font-weight: 800;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }

        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }

        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }

        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }

        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }

        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }

        /* Article Meta */
        .article-meta {
            padding: 1.5rem 0 1rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.18);
            background: rgba(11, 46, 30, 0.3);
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
            font-size: 0.85rem;
            color: var(--olive-gold);
        }

        .breadcrumb a {
            color: var(--pale-mint);
            font-weight: 600;
        }

        .breadcrumb a:hover {
            color: var(--gold-light);
        }

        .breadcrumb span {
            color: rgba(163, 163, 117, 0.7);
        }

        .meta-divider {
            margin: 0.85rem 0;
            height: 1px;
            background: linear-gradient(to right, rgba(245, 158, 11, 0.3), transparent);
        }

        .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--pale-mint);
        }

        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .meta-item i {
            color: var(--gold);
        }

        /* Article Hero */
        .article-hero {
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.95), rgba(11, 46, 30, 0.72)), url('/assets/images/e16640352afbecb8.jpg') center/cover no-repeat;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(5, 31, 20, 0.9), rgba(5, 31, 20, 0.35));
            z-index: 1;
        }

        .article-hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .article-hero-copy {
            flex: 1 1 55%;
            padding-right: 1rem;
        }

        .article-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.8rem;
            border-radius: 999px;
            background: rgba(220, 38, 38, 0.12);
            border: 1px solid rgba(220, 38, 38, 0.45);
            color: #FCA5A5;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            margin-bottom: 1rem;
        }

        .article-hero-copy h1 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--ivory);
            margin-bottom: 1rem;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
        }

        .article-excerpt {
            font-size: 1.05rem;
            color: var(--pale-mint);
            line-height: 1.7;
            margin-bottom: 1.8rem;
            max-width: 650px;
        }

        .article-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn-primary {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
            color: #051F14;
        }

        .btn-ghost {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(245, 158, 11, 0.5);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.95rem;
            background: rgba(5, 31, 20, 0.5);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-ghost:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }

        .article-cover {
            flex: 0 1 40%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card), 0 0 0 1px rgba(245, 158, 11, 0.25);
            border: 1px solid rgba(245, 158, 11, 0.45);
            background: rgba(11, 46, 30, 0.8);
        }

        .article-cover img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Article Body */
        .article-body-section {
            padding: 3rem 0;
            background: rgba(5, 31, 20, 0.6);
        }

        .article-body {
            max-width: 820px;
            margin: 0 auto;
            color: var(--ivory);
            line-height: 1.75;
            font-size: 1.02rem;
        }

        .article-body h2 {
            font-size: 1.7rem;
            color: var(--gold-light);
            margin: 2rem 0 1rem;
        }

        .article-body h3 {
            font-size: 1.35rem;
            color: var(--pale-mint);
            margin: 1.6rem 0 0.8rem;
        }

        .article-body p {
            margin-bottom: 1.25rem;
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 1.5rem 1.4rem;
        }

        .article-body li {
            margin-bottom: 0.5rem;
        }

        .article-body img {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            margin: 1.8rem 0;
        }

        .article-body blockquote {
            border-left: 4px solid var(--gold);
            padding-left: 1.2rem;
            color: var(--gold-light);
            font-size: 1.1rem;
            margin: 2rem 0;
            font-style: italic;
        }

        /* Pull Quote */
        .pull-quote-section {
            padding: 4rem 0;
            background: linear-gradient(to bottom, rgba(11, 46, 30, 0.7), rgba(5, 31, 20, 0.8));
            text-align: left;
        }

        .pull-quote {
            max-width: 780px;
            margin: 0 auto;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(245, 158, 11, 0.3);
            position: relative;
        }

        .pull-quote i {
            color: var(--gold);
            font-size: 2rem;
            display: block;
            margin-bottom: 1rem;
        }

        .pull-quote p {
            font-size: 1.3rem;
            line-height: 1.65;
            color: var(--ivory);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pull-quote cite {
            font-style: normal;
            font-size: 0.9rem;
            color: var(--olive-gold);
        }

        /* Section Game Strip */
        .section-game-strip {
            padding: 4rem 0;
            background: rgba(5, 31, 20, 0.55);
        }

        .section-heading {
            max-width: 680px;
            margin-bottom: 2.5rem;
        }

        .eyebrow {
            color: var(--gold);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
        }

        .section-heading h2 {
            font-size: clamp(1.5rem, 3.2vw, 2.2rem);
            color: var(--ivory);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .game-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(245, 158, 11, 0.22);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            transform: translateY(-4px);
            border-color: rgba(245, 158, 11, 0.55);
            box-shadow: var(--shadow-gold-hover);
        }

        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
        }

        .game-card-content {
            padding: 1.2rem 1.3rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .game-card-tag {
            display: inline-block;
            align-self: flex-start;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            background: rgba(220, 38, 38, 0.18);
            border: 1px solid rgba(220, 38, 38, 0.5);
            color: #FCA5A5;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            margin-bottom: 0.8rem;
        }

        .game-card h3 {
            font-size: 1.2rem;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
        }

        .game-card p {
            font-size: 0.95rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }

        /* Payment */
        .section-payment {
            padding: 4rem 0;
            background: rgba(11, 46, 30, 0.6);
        }

        .payment-panel {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(245, 158, 11, 0.28);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: space-between;
        }

        .payment-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
        }

        .payment-item {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            background: rgba(5, 31, 20, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.3);
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--pale-mint);
            transition: all var(--transition);
        }

        .payment-item:hover {
            border-color: var(--gold-light);
            background: rgba(245, 158, 11, 0.12);
        }

        .payment-item i {
            color: var(--gold);
            font-size: 1.05rem;
        }

        .payment-note {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            max-width: 320px;
            color: var(--olive-gold);
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .payment-note i {
            color: var(--gold-light);
            font-size: 1.4rem;
            margin-top: 0.2rem;
        }

        /* FAQ */
        .section-faq {
            padding: 4rem 0;
            background: rgba(5, 31, 20, 0.65);
        }

        .faq-block {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .faq-item {
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.7);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item[open] {
            border-color: rgba(245, 158, 11, 0.55);
        }

        .faq-item summary {
            padding: 1.1rem 1.3rem;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold-light);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--gold);
            transition: transform var(--transition);
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item p {
            padding: 0 1.3rem 1.2rem;
            color: var(--pale-mint);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Article CTA */
        .article-cta {
            padding: 4rem 0;
            background: linear-gradient(to right, rgba(5, 31, 20, 0.85), rgba(11, 46, 30, 0.7)), url('/assets/images/85958789a71a382a.jpg') center/cover no-repeat;
        }

        .cta-box {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: space-between;
            background: rgba(5, 31, 20, 0.72);
            border: 1px solid rgba(245, 158, 11, 0.35);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .cta-box h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            color: var(--ivory);
            margin-bottom: 0.75rem;
        }

        .cta-box p {
            color: var(--pale-mint);
            font-size: 1rem;
        }

        .btn-cta {
            padding: 0.85rem 2rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-cta:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
            color: #051F14;
        }

        /* Not Found */
        .not-found-section {
            padding: 5rem 0;
            min-height: 55vh;
            display: flex;
            align-items: center;
        }

        .not-found-card {
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
        }

        .not-found-card i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .not-found-card h1 {
            color: var(--ivory);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .not-found-card p {
            color: var(--pale-mint);
            margin-bottom: 1.8rem;
        }

        /* Footer */
        .site-footer {
            background: rgba(5, 31, 20, 0.95);
            border-top: 1px solid rgba(245, 158, 11, 0.3);
            padding: 3rem 0 1.2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.9fr 0.9fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(245, 158, 11, 0.18);
        }

        .footer-brand h5 {
            font-size: 1.1rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--pale-mint);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        .footer-col h5 {
            color: var(--gold-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.55rem;
        }

        .footer-col a {
            color: var(--pale-mint);
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            padding-top: 1.2rem;
            text-align: center;
            color: var(--olive-gold);
            font-size: 0.78rem;
            line-height: 1.55;
        }

        .footer-bottom a {
            color: var(--gold-light);
            font-weight: 600;
        }

        /* Focus */
        a:focus-visible,
        button:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .article-hero-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .article-cover {
                flex-basis: 100%;
                width: 100%;
                max-height: 360px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 68px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
            }
            .nav-links.active-menu {
                display: flex;
            }
            .nav-actions {
                margin-left: auto;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-actions .btn-login,
            .nav-actions .btn-signup {
                display: none;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .payment-panel {
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }

        @media (max-width: 520px) {
            .nav-logo {
                font-size: 0.95rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .article-hero {
                padding: 3rem 0;
            }
            .article-hero-copy h1 {
                font-size: 1.6rem;
            }
            .article-excerpt {
                font-size: 0.95rem;
            }
            .article-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            .btn-primary,
            .btn-ghost {
                width: 100%;
                justify-content: center;
            }
            .article-body {
                font-size: 0.98rem;
            }
            .pull-quote p {
                font-size: 1.05rem;
            }
            .game-card img {
                height: 180px;
            }
            .section-heading h2 {
                font-size: 1.4rem;
            }
        }

/* roulang page: category2 */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        /* Hero Category */
        .category-hero {
            position: relative;
            padding: 8rem 0 5rem;
            min-height: 560px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.94), rgba(11, 46, 30, 0.78)), url('/assets/images/e16640352afbecb8.jpg') center/cover no-repeat;
            overflow: hidden;
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
        }
        .category-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(220, 38, 38, 0.18);
            border: 1px solid rgba(220, 38, 38, 0.6);
            color: #FCA5A5;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        .hero-badge i {
            color: var(--gold-light);
        }
        .category-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--gold-light);
            max-width: 760px;
            margin-bottom: 1.2rem;
        }
        .category-hero p.subtitle {
            font-size: 1.15rem;
            color: var(--pale-mint);
            max-width: 680px;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            border-color: var(--gold-light);
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .hero-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-light);
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--pale-mint);
            opacity: 0.8;
        }
        /* Sections */
        .section {
            padding: 4rem 0;
        }
        .section-alt {
            background: var(--bg-forest);
        }
        .section-heading {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 1rem;
            line-height: 1.25;
        }
        .section-sub {
            color: var(--pale-mint);
            font-size: 1.1rem;
            max-width: 700px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        .section-heading.left-align {
            text-align: left;
        }
        .grid-providers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .provider-card {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .provider-card:hover {
            border-color: rgba(245, 158, 11, 0.6);
            box-shadow: var(--shadow-gold);
            transform: translateY(-4px);
        }
        .provider-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--gold-light);
        }
        .provider-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--ivory);
        }
        .provider-card p {
            color: var(--pale-mint);
            font-size: 0.95rem;
            line-height: 1.65;
        }
        .provider-tag {
            display: inline-block;
            background: rgba(245, 158, 11, 0.12);
            color: var(--gold-light);
            border-radius: 999px;
            padding: 0.2rem 0.8rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .game-card {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 2rem 1.2rem;
            text-align: left;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }
        .game-card:hover {
            border-color: rgba(245, 158, 11, 0.6);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        .game-card:hover::before {
            opacity: 1;
        }
        .game-icon {
            font-size: 2.2rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }
        .game-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        .game-card p {
            color: var(--pale-mint);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .badge-hot {
            position: absolute;
            top: 0.8rem;
            right: 0.8rem;
            background: var(--dragon-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .step-card {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            position: relative;
            transition: all var(--transition);
        }
        .step-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-card);
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FCD34D, #F59E0B);
            color: #051F14;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .step-card p {
            color: var(--pale-mint);
            font-size: 0.9rem;
            line-height: 1.65;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 850px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--ivory);
            font-weight: 600;
            font-size: 1rem;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            gap: 1rem;
            transition: all var(--transition);
        }
        .faq-question i {
            color: var(--gold-light);
            transition: transform var(--transition);
        }
        .faq-question.open i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem;
            color: var(--pale-mint);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .cta-panel {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(245, 158, 11, 0.1)), var(--bg-forest);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .cta-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
            pointer-events: none;
        }
        .cta-panel h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 1rem;
            position: relative;
        }
        .cta-panel p {
            color: var(--pale-mint);
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .news-item {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .news-item:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }
        .news-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            line-height: 1.4;
        }
        .news-item p {
            color: var(--pale-mint);
            font-size: 0.9rem;
            line-height: 1.65;
            flex-grow: 1;
        }
        .news-link {
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all var(--transition);
        }
        .news-link:hover {
            color: var(--gold);
            gap: 0.6rem;
        }
        .no-results {
            color: var(--pale-mint);
            font-size: 0.95rem;
            background: rgba(245, 158, 11, 0.06);
            border: 1px dashed rgba(245, 158, 11, 0.4);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            text-align: left;
        }
        /* Footer */
        .site-footer {
            background: #02100A;
            border-top: 1px solid rgba(245, 158, 11, 0.25);
            padding: 3rem 0 1.5rem;
            color: var(--pale-mint);
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-brand h5,
        .footer-col h5 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }
        .footer-brand p {
            line-height: 1.7;
            max-width: 420px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-col a {
            color: var(--pale-mint);
            transition: all var(--transition);
        }
        .footer-col a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--olive-gold);
        }
        .footer-bottom a {
            color: var(--gold-light);
        }
        /* FAB */
        .fab-float {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            border: 2px solid var(--gold-light);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #051F14;
            font-size: 1.6rem;
            cursor: pointer;
            opacity: 0.85;
            transition: all var(--transition);
            animation: fabFloat 3s ease-in-out infinite;
        }
        .fab-float:hover {
            opacity: 1;
            transform: scale(1.1);
            animation: none;
        }
        .fab-notification {
            position: absolute;
            top: 0.2rem;
            right: 0.2rem;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border: 2px solid #fff;
            border-radius: 50%;
        }
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .grid-providers { grid-template-columns: repeat(2, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .steps { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-logo span { font-size: 0.9rem; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.75rem 0.5rem;
                font-size: 1rem;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-logo span {
                font-size: 0.8rem;
                max-width: 180px;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .category-hero {
                padding: 6rem 0 3rem;
                min-height: auto;
            }
            .hero-stats {
                gap: 1.2rem;
            }
            .hero-stat-number {
                font-size: 1.5rem;
            }
            .section {
                padding: 2.5rem 0;
            }
            .grid-providers,
            .game-grid,
            .steps,
            .news-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .cta-panel {
                padding: 2rem 1.2rem;
            }
        }
        @media (max-width: 520px) {
            .nav-wrapper {
                gap: 0.8rem;
            }
            .btn-login, .btn-signup {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary, .btn-outline {
                justify-content: center;
            }
        }

/* roulang page: category3 */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.6rem 0.8rem;
            }
            .mobile-toggle {
                display: flex;
            }
        }
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 0.9rem;
                gap: 0.35rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .btn-login {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
            .btn-signup {
                padding: 0.4rem 0.9rem;
                font-size: 0.8rem;
            }
            .nav-actions {
                gap: 0.4rem;
            }
            .mobile-toggle {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
            }
        }
        .page-hero {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            padding: 120px 0 70px;
            background: url('/assets/images/e16640352afbecb8.jpg') center/cover no-repeat;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.92) 0%, rgba(11, 46, 30, 0.82) 50%, rgba(5, 31, 20, 0.94) 100%);
            z-index: 1;
        }
        .page-hero > .container {
            position: relative;
            z-index: 2;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2.5rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .page-hero {
                min-height: 560px;
            }
        }
        @media (max-width: 520px) {
            .page-hero {
                min-height: 520px;
                padding: 100px 0 50px;
            }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(245, 158, 11, 0.4);
            background: rgba(245, 158, 11, 0.12);
            color: var(--gold-light);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 1.25rem;
        }
        .hero-badge i {
            font-size: 0.75rem;
        }
        .section-title {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--ivory);
            letter-spacing: -0.01em;
            line-height: 1.25;
            margin-bottom: 0.75rem;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 520px) {
            .section-title {
                font-size: 1.45rem;
            }
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--pale-mint);
            line-height: 1.65;
            max-width: 720px;
        }
        @media (max-width: 768px) {
            .section-subtitle {
                font-size: 0.95rem;
            }
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .page-section {
            padding: 4rem 0;
        }
        @media (max-width: 768px) {
            .page-section {
                padding: 3rem 0;
            }
        }
        .page-section.alt {
            background: var(--bg-forest);
        }
        .page-section.gold-divider {
            border-top: 1px solid rgba(245, 158, 11, 0.25);
        }
        .section-heading {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .section-heading-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        .section-heading h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--ivory);
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }
        .section-heading p {
            color: var(--pale-mint);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 1.4rem;
            }
        }
        .metric-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: rgba(11, 46, 30, 0.75);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            backdrop-filter: blur(8px);
        }
        @media (max-width: 768px) {
            .metric-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                padding: 1rem;
            }
        }
        @media (max-width: 520px) {
            .metric-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
                padding: 0.8rem;
            }
        }
        .metric-item {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        .metric-item .metric-label {
            font-size: 0.75rem;
            color: var(--olive-gold);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-weight: 600;
        }
        .metric-item .metric-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold-light);
        }
        @media (max-width: 768px) {
            .metric-item .metric-value {
                font-size: 1.2rem;
            }
        }
        .selling-points {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1024px) {
            .selling-points {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .selling-points {
                grid-template-columns: 1fr;
            }
        }
        .point-item {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(245, 158, 11, 0.2);
            background: rgba(11, 46, 30, 0.6);
            transition: all var(--transition);
        }
        .point-item:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-card);
        }
        .point-item .point-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .point-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        .point-item p {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1024px) {
            .scene-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .scene-grid {
                grid-template-columns: 1fr;
            }
        }
        .scene-card {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.15);
            transition: all var(--transition);
        }
        .scene-card:hover {
            border-color: rgba(245, 158, 11, 0.4);
            box-shadow: var(--shadow-card);
        }
        .scene-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .scene-card h3 i {
            font-size: 0.9rem;
        }
        .scene-card p {
            font-size: 0.85rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        .game-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1024px) {
            .game-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .game-card-grid {
                grid-template-columns: 1fr;
            }
        }
        .game-tile {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: rgba(11, 46, 30, 0.7);
            border: 1px solid rgba(245, 158, 11, 0.18);
            transition: all var(--transition);
            position: relative;
        }
        .game-tile:hover {
            transform: translateY(-3px);
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-card);
        }
        .game-tile .game-thumb {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }
        .game-tile .game-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .game-tile:hover .game-thumb img {
            transform: scale(1.05);
        }
        .game-tile .game-tag {
            position: absolute;
            top: 0.6rem;
            right: 0.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            background: var(--dragon-red);
            color: #fff;
        }
        .game-tile .game-info {
            padding: 1rem 1.2rem 1.2rem;
        }
        .game-tile .game-info h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.35rem;
        }
        .game-tile .game-info p {
            font-size: 0.82rem;
            color: var(--pale-mint);
            line-height: 1.5;
        }
        .step-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            list-style: none;
        }
        @media (max-width: 1024px) {
            .step-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .step-list {
                grid-template-columns: 1fr;
            }
        }
        .step-list li {
            padding: 1.4rem;
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.18);
            position: relative;
        }
        .step-list li .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FCD34D, #F59E0B);
            color: #051F14;
            font-weight: 800;
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
        }
        .step-list li h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.4rem;
        }
        .step-list li p {
            font-size: 0.82rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }
        .testimonial-item {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.18);
        }
        .testimonial-item .quote {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.65;
            margin-bottom: 1rem;
            font-style: italic;
        }
        .testimonial-item .author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .testimonial-item .author-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid rgba(245, 158, 11, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-size: 1rem;
        }
        .testimonial-item .author-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--ivory);
        }
        .testimonial-item .author-meta {
            font-size: 0.72rem;
            color: var(--olive-gold);
        }
        .news-post-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        @media (max-width: 1024px) {
            .news-post-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .news-post-list {
                grid-template-columns: 1fr;
            }
        }
        .news-post-item {
            padding: 1.2rem;
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.15);
            transition: all var(--transition);
            display: block;
        }
        .news-post-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
            box-shadow: var(--shadow-card);
        }
        .news-post-item .news-cat {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--gold-light);
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .news-post-item h3 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--ivory);
            line-height: 1.4;
            margin-bottom: 0.4rem;
        }
        .news-post-item p {
            font-size: 0.8rem;
            color: var(--pale-mint);
            line-height: 1.55;
        }
        .news-post-item .news-time {
            font-size: 0.7rem;
            color: var(--olive-gold);
            margin-top: 0.6rem;
            display: block;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            border-radius: var(--radius-md);
            background: rgba(11, 46, 30, 0.65);
            border: 1px solid rgba(245, 158, 11, 0.18);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.3rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--ivory);
            transition: all var(--transition);
        }
        .faq-question i {
            color: var(--gold-light);
            font-size: 0.85rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-answer-inner {
            padding: 0 1.3rem 1.2rem;
            font-size: 0.85rem;
            color: var(--pale-mint);
            line-height: 1.65;
        }
        .cta-banner {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: url('/assets/images/b595cab657cf0946.jpg') center/cover no-repeat;
            padding: 3.5rem 2.5rem;
            text-align: center;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.93) 0%, rgba(11, 46, 30, 0.85) 60%, rgba(5, 31, 20, 0.95) 100%);
            z-index: 1;
        }
        .cta-banner > * {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 0.75rem;
        }
        .cta-banner p {
            font-size: 0.95rem;
            color: var(--pale-mint);
            max-width: 620px;
            margin: 0 auto 1.5rem;
            line-height: 1.65;
        }
        @media (max-width: 768px) {
            .cta-banner h2 {
                font-size: 1.4rem;
            }
            .cta-banner {
                padding: 2.5rem 1.5rem;
            }
        }
        .site-footer {
            background: var(--bg-forest);
            border-top: 1px solid rgba(245, 158, 11, 0.3);
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-brand h5,
        .footer-col h5 {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 0.8rem;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: var(--pale-mint);
            line-height: 1.65;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .footer-col li a {
            font-size: 0.82rem;
            color: var(--pale-mint);
            transition: all var(--transition);
        }
        .footer-col li a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            padding-top: 1.5rem;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 0.78rem;
            color: var(--olive-gold);
            line-height: 1.6;
        }
        .footer-bottom a {
            color: var(--gold-light);
            font-weight: 600;
        }
        .fab-left {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #051F14;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            transition: all var(--transition);
            opacity: 0.8;
        }
        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55);
        }
        .fab-left:active {
            transform: scale(0.95) translateY(4px);
        }
        .fab-left .fab-notify {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--dragon-red);
            border: 2px solid #fff;
        }
        @media (max-width: 520px) {
            .fab-left {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                left: 0.8rem;
                bottom: 5rem;
            }
        }
        .focus-visible {
            outline: 2px solid var(--gold-light);
            outline-offset: 2px;
        }

/* roulang page: category4 */
:root {
            --bg-deep: #051F14;
            --bg-forest: #0B2E1E;
            --bg-card: rgba(11, 46, 30, 0.85);
            --gold-light: #FCD34D;
            --gold: #F59E0B;
            --gold-dark: #B45309;
            --dragon-red: #DC2626;
            --ivory: #F8FAFC;
            --pale-mint: #D1FAE5;
            --olive-gold: #A3A375;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.25);
            --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
            --shadow-gold-hover: 0 8px 30px rgba(245, 158, 11, 0.42);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-deep);
            color: var(--ivory);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.25);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--gold-light);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--pale-mint);
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-light);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .btn-login {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.88rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-login:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .btn-signup {
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 700;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-signup:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-sm);
            color: var(--gold-light);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .mobile-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        /* Hero Category */
        .category-hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, rgba(5,31,20,0.92) 0%, rgba(11,46,30,0.9) 50%, rgba(5,31,20,0.95) 100%);
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/e16640352afbecb8.jpg') center/cover no-repeat;
            opacity: 0.28;
            z-index: 0;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-countdown-bar {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(220, 38, 38, 0.4);
            border-radius: 999px;
            padding: 0.55rem 1.2rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
        }
        .hero-countdown-bar span {
            font-size: 0.85rem;
            font-weight: 700;
            color: #FCA5A5;
            letter-spacing: 0.04em;
        }
        .hero-countdown-bar strong {
            color: var(--gold-light);
            font-variant-numeric: tabular-nums;
            font-size: 1rem;
        }
        .hero-content-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: var(--gold-light);
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--ivory);
            margin-bottom: 1.25rem;
            letter-spacing: -0.01em;
        }
        .hero-title em {
            font-style: normal;
            color: var(--gold-light);
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--pale-mint);
            line-height: 1.65;
            margin-bottom: 1.75rem;
            max-width: 560px;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .btn-primary-hero {
            padding: 0.85rem 2rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #FCD34D, #F59E0B 55%, #D97706);
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary-hero:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-secondary-hero {
            padding: 0.85rem 1.6rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 700;
            font-size: 0.95rem;
            background: transparent;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-secondary-hero:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-light);
        }
        .hero-trust-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .hero-trust-strip span {
            font-size: 0.82rem;
            color: var(--olive-gold);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
        }
        .hero-trust-strip i {
            color: var(--gold);
        }
        .hero-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(245, 158, 11, 0.3);
            box-shadow: var(--shadow-card);
            aspect-ratio: 4/5;
            background: var(--bg-card);
        }
        .hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hero-visual:hover img {
            transform: scale(1.03);
        }
        .hero-visual-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem 1.5rem;
            background: linear-gradient(to top, rgba(5,31,20,0.95) 20%, transparent 100%);
        }
        .hero-visual-overlay p {
            font-size: 0.9rem;
            color: var(--gold-light);
            font-weight: 700;
            margin-bottom: 0.35rem;
        }
        .hero-visual-overlay span {
            font-size: 0.8rem;
            color: var(--pale-mint);
        }
        /* Sections */
        .section-block {
            padding: 4.5rem 0;
            position: relative;
        }
        .section-block.alt-bg {
            background: var(--bg-forest);
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.75rem;
        }
        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--ivory);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--pale-mint);
            line-height: 1.65;
            margin-bottom: 2.5rem;
            max-width: 680px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .game-card {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            position: relative;
            cursor: pointer;
        }
        .game-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-4px);
        }
        .game-card-img {
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
        }
        .game-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .game-card:hover .game-card-img img {
            transform: scale(1.05);
        }
        .game-card-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: var(--dragon-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            padding: 0.3rem 0.7rem;
            border-radius: 4px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
            text-transform: uppercase;
        }
        .game-card-body {
            padding: 1.1rem 1.2rem 1.3rem;
        }
        .game-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 0.4rem;
        }
        .game-card-body p {
            font-size: 0.85rem;
            color: var(--pale-mint);
            line-height: 1.55;
            margin-bottom: 0.75rem;
        }
        .game-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--olive-gold);
            font-weight: 600;
        }
        .game-card-meta i {
            color: var(--gold);
        }
        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .step-item {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1.75rem 1.5rem;
            transition: all var(--transition);
            position: relative;
        }
        .step-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
            transform: translateY(-3px);
        }
        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 25%, #FCD34D, #F59E0B 60%, #B45309);
            color: #051F14;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-gold);
        }
        .step-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        .step-item p {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.6;
        }
        /* Trust stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .stat-block {
            text-align: left;
            padding: 1.5rem;
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }
        .stat-block:hover {
            border-color: rgba(245, 158, 11, 0.45);
        }
        .stat-block strong {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--gold-light);
            display: block;
            line-height: 1.1;
            margin-bottom: 0.4rem;
            font-variant-numeric: tabular-nums;
        }
        .stat-block span {
            font-size: 0.85rem;
            color: var(--pale-mint);
            font-weight: 600;
        }
        /* News list */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.25rem;
        }
        .news-item {
            display: flex;
            gap: 1rem;
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            padding: 1rem;
            transition: all var(--transition);
        }
        .news-item:hover {
            border-color: rgba(245, 158, 11, 0.45);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        .news-item-img {
            width: 100px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .news-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item-content {
            flex: 1;
            min-width: 0;
        }
        .news-item-content h3 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--ivory);
            margin-bottom: 0.35rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item-content .news-meta {
            font-size: 0.75rem;
            color: var(--olive-gold);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .news-item-content .news-meta i {
            color: var(--gold);
        }
        /* FAQ */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
        }
        .faq-question {
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            color: var(--ivory);
            font-weight: 700;
            font-size: 0.95rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: all var(--transition);
        }
        .faq-question:hover {
            color: var(--gold-light);
        }
        .faq-question i {
            color: var(--gold);
            font-size: 0.9rem;
            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.35s ease, padding 0.35s ease;
            padding: 0 1.5rem;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.2rem;
        }
        .faq-answer p {
            font-size: 0.88rem;
            color: var(--pale-mint);
            line-height: 1.65;
        }
        /* CTA section */
        .cta-panel {
            background: linear-gradient(135deg, #0B2E1E 0%, #083620 50%, #051F14 100%);
            border: 1px solid rgba(245, 158, 11, 0.35);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 2rem;
            align-items: center;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .cta-panel::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
            border-radius: 50%;
        }
        .cta-panel h3 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--ivory);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }
        .cta-panel p {
            font-size: 0.95rem;
            color: var(--pale-mint);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 500px;
        }
        .cta-panel .btn-primary-hero {
            position: relative;
            z-index: 2;
        }
        /* Footer */
        .site-footer {
            background: #031008;
            border-top: 1px solid rgba(245, 158, 11, 0.25);
            padding: 3.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand h5 {
            font-size: 1.05rem;
            color: var(--gold-light);
            font-weight: 800;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: var(--olive-gold);
            line-height: 1.7;
        }
        .footer-col h5 {
            font-size: 0.95rem;
            color: var(--ivory);
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-col ul a {
            font-size: 0.85rem;
            color: var(--olive-gold);
            transition: all var(--transition);
        }
        .footer-col ul a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.15);
            padding-top: 1.25rem;
        }
        .footer-bottom p {
            font-size: 0.78rem;
            color: var(--olive-gold);
            text-align: center;
            line-height: 1.6;
        }
        .footer-bottom a {
            color: var(--gold-light);
            font-weight: 600;
        }
        /* FAB */
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D, #F59E0B 60%, #B45309);
            border: 2px solid var(--gold-light);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0.8;
            transition: all var(--transition);
            animation: fabFloat 3s ease-in-out infinite;
            color: #051F14;
            font-size: 1.3rem;
        }
        .fab-royal:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(245, 158, 11, 0.5);
        }
        .fab-royal:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-notification {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border-radius: 50%;
            border: 2px solid #fff;
        }
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero-visual {
                max-width: 420px;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-panel {
                grid-template-columns: 1fr;
                padding: 2rem 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                border-bottom: 1px solid rgba(245, 158, 11, 0.25);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding: 1rem 1.5rem;
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-logo span:last-child {
                font-size: 0.85rem;
                max-width: 200px;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-actions .btn-login {
                display: none;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-block {
                padding: 1rem;
            }
            .stat-block strong {
                font-size: 1.5rem;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .fab-royal {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                left: 0.75rem;
                bottom: 5rem;
            }
            .category-hero {
                padding: 100px 0 60px;
                min-height: auto;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 1rem;
            }
            .nav-actions .btn-signup {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary-hero,
            .btn-secondary-hero {
                justify-content: center;
                text-align: center;
            }
            .stats-row {
                grid-template-columns: 1fr;
            }
            .hero-trust-strip {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }
