/* roulang page: index */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-deep: #071F13;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --accent-lime: #32CD32;
            --text-white: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #A9C9BC;
            --border-gold: rgba(255, 215, 0, 0.35);
            --border-subtle: rgba(209, 242, 235, 0.15);
            --radius-card: 16px;
            --radius-btn: 9999px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
            --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --spacing-section: 4rem;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.65;
            font-size: 16px;
            background-image: radial-gradient(ellipse at 20% 10%, rgba(255, 215, 0, 0.03) 0%, transparent 55%),
                              radial-gradient(ellipse at 80% 90%, rgba(50, 205, 50, 0.04) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 3px;
            border-radius: 6px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            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(7, 31, 19, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            background: rgba(7, 31, 19, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            gap: 1.5rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--accent-gold);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .nav-logo i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4));
        }

        .nav-logo span {
            color: var(--text-white);
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-pale);
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .nav-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-login {
            background: transparent;
            border: none;
            color: var(--text-pale);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            transition: color var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            color: var(--accent-gold);
        }

        .btn-signup {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 0.55rem 1.3rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
        }

        .btn-signup:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
            transform: translateY(-1px);
        }

        .btn-signup:active {
            transform: translateY(1px);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-subtle);
            color: var(--text-pale);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            background: rgba(7, 31, 19, 0.98);
            border-top: 1px solid var(--border-subtle);
            padding: 0.75rem 0;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            font-weight: 500;
            color: var(--text-pale);
            font-size: 0.95rem;
            transition: all var(--transition-base);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.06);
        }

        .mobile-menu .nav-actions {
            display: flex;
            padding: 0.75rem 1.5rem;
            gap: 0.75rem;
        }

        @media (max-width: 820px) {
            .nav-menu {
                display: none;
            }

            .nav-actions.desktop-only {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-logo {
                font-size: 1.05rem;
            }

            .nav-logo i {
                font-size: 1.3rem;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            padding: 7.5rem 0 4rem;
            min-height: 92vh;
            display: flex;
            align-items: center;
            background-image:
                linear-gradient(180deg, rgba(7, 31, 19, 0.72) 0%, rgba(10, 46, 28, 0.88) 55%, rgba(7, 31, 19, 0.95) 100%),
                url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-bottom: 1px solid var(--border-gold);
        }

        .hero-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 780px;
            gap: 1.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            letter-spacing: 0.02em;
        }

        .hero-badge i {
            font-size: 0.8rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-white);
            margin: 0;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-title .highlight {
            color: var(--accent-gold);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-pale);
            max-width: 650px;
            margin: 0;
        }

        .hero-countdown-bar {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid var(--border-subtle);
            border-left: 4px solid var(--accent-gold);
            padding: 0.9rem 1.4rem;
            border-radius: 12px;
            flex-wrap: wrap;
        }

        .countdown-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-pale);
            white-space: nowrap;
        }

        .countdown-label i {
            color: var(--accent-red);
            font-size: 1.1rem;
        }

        .countdown-timer {
            display: flex;
            gap: 0.5rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
        }

        .countdown-timer .count-item {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            font-size: 1.1rem;
            min-width: 44px;
            text-align: center;
        }

        .countdown-timer .count-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            display: block;
            margin-top: 0.1rem;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-gold);
            color: #071F13;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.8rem 1.8rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
        }

        .btn-primary:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.55);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--text-white);
            font-weight: 700;
            font-size: 1rem;
            padding: 0.8rem 1.8rem;
            border-radius: 9999px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .btn-outline:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.06);
        }

        .hero-stats-row {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .hero-stat .stat-value {
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--accent-gold);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-stat .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        @media (max-width: 576px) {
            .hero-section {
                padding-top: 6rem;
                min-height: auto;
                padding-bottom: 3rem;
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-outline {
                width: 100%;
                justify-content: center;
            }

            .hero-countdown-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .hero-stat .stat-value {
                font-size: 1.4rem;
            }
        }

        /* ========== SECTIONS GENERAL ========== */
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }

        .section-alt {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-header {
            margin-bottom: 2.5rem;
            max-width: 720px;
        }

        .section-header.left-align {
            margin-left: 0;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-gold);
            margin-bottom: 0.6rem;
        }

        .section-kicker::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.25;
            letter-spacing: -0.02em;
            margin: 0 0 0.8rem 0;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .section {
                padding: 2.5rem 0;
            }
        }

        /* ========== METRIC CARDS ========== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.25rem;
        }

        .metric-card {
            background: rgba(18, 62, 37, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.5rem 1.25rem;
            text-align: center;
            transition: all var(--transition-base);
            backdrop-filter: blur(6px);
        }

        .metric-card:hover {
            border-color: var(--border-gold);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
            transform: translateY(-3px);
        }

        .metric-card .metric-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
        }

        .metric-card .metric-value {
            font-size: 1.55rem;
            font-weight: 900;
            color: var(--accent-gold);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .metric-card .metric-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
            font-weight: 500;
        }

        @media (max-width: 520px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .metric-card {
                padding: 1rem 0.8rem;
            }

            .metric-card .metric-value {
                font-size: 1.25rem;
            }
        }

        /* ========== BEAST CARDS / CHARACTERS ========== */
        .beast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.25rem;
        }

        .beast-card {
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition-base);
            cursor: default;
            position: relative;
        }

        .beast-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .beast-card .beast-img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-subtle);
        }

        .beast-card .beast-info {
            padding: 1rem 1.1rem;
        }

        .beast-card .beast-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .beast-card .beast-mult {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            padding: 0.2rem 0.6rem;
            border-radius: 9999px;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .beast-card .beast-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .beast-card .beast-role {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--accent-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.2rem 0.6rem;
            border-radius: 9999px;
            box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
        }

        @media (max-width: 520px) {
            .beast-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .beast-card .beast-img {
                height: 100px;
            }

            .beast-card .beast-info {
                padding: 0.8rem;
            }

            .beast-card .beast-name {
                font-size: 0.9rem;
            }
        }

        /* ========== TABLE STYLED ========== */
        .paytable-wrap {
            overflow-x: auto;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            background: rgba(18, 62, 37, 0.5);
        }

        .paytable-wrap table {
            width: 100%;
            border-collapse: collapse;
            min-width: 640px;
        }

        .paytable-wrap th {
            background: var(--bg-deep);
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 0.85rem;
            text-align: left;
            padding: 1rem 1.2rem;
            border-bottom: 2px solid var(--border-gold);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .paytable-wrap td {
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            color: var(--text-pale);
            border-bottom: 1px solid var(--border-subtle);
        }

        .paytable-wrap tr:last-child td {
            border-bottom: none;
        }

        .paytable-wrap tr:hover td {
            background: rgba(255, 215, 0, 0.04);
        }

        .paytable-wrap .mult-highlight {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.1rem;
        }

        @media (max-width: 640px) {
            .paytable-wrap th,
            .paytable-wrap td {
                padding: 0.7rem 0.9rem;
                font-size: 0.8rem;
            }
        }

        /* ========== JACKPOT STEPS ========== */
        .steps-track {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.25rem;
        }

        .step-card {
            background: rgba(18, 62, 37, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.5rem 1.25rem;
            position: relative;
            transition: all var(--transition-base);
        }

        .step-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
            transform: translateY(-2px);
        }

        .step-number {
            font-size: 0.8rem;
            font-weight: 800;
            color: #071F13;
            background: var(--accent-gold);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.8rem;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
        }

        .step-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.4rem;
        }

        .step-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== TIER / REWARD CARDS ========== */
        .tier-track {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .tier-card {
            background: rgba(18, 62, 37, 0.65);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            position: relative;
            transition: all var(--transition-base);
            text-align: left;
        }

        .tier-card:hover {
            border-color: var(--border-gold);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
            transform: translateY(-3px);
        }

        .tier-card .tier-name {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent-gold);
            margin-bottom: 0.3rem;
        }

        .tier-card .tier-point {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--text-white);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .tier-card .tier-point span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .tier-card .tier-reward {
            font-size: 0.9rem;
            color: var(--text-pale);
            margin-top: 0.5rem;
        }

        .tier-card .tier-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            color: #fff;
            background: var(--accent-red);
            padding: 0.25rem 0.6rem;
            border-radius: 9999px;
            letter-spacing: 0.04em;
        }

        .tier-card.featured {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.06);
            box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 520px) {
            .tier-track {
                grid-template-columns: 1fr;
            }
        }

        /* ========== QUICK ACCESS / ENTRY MATRIX ========== */
        .entry-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .entry-btn {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(18, 62, 37, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 1rem 1.2rem;
            font-weight: 600;
            color: var(--text-pale);
            transition: all var(--transition-base);
            cursor: pointer;
            font-size: 0.9rem;
        }

        .entry-btn:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.06);
            transform: translateY(-2px);
        }

        .entry-btn i {
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        /* ========== CMS LIST ========== */
        .cms-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2rem;
            align-items: start;
        }

        .cms-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cms-item {
            display: flex;
            gap: 1rem;
            background: rgba(18, 62, 37, 0.55);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 1.1rem 1.4rem;
            transition: all var(--transition-base);
            align-items: flex-start;
        }

        .cms-item:hover {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.05);
            transform: translateY(-2px);
        }

        .cms-item .cms-index {
            font-size: 1.5rem;
            font-weight: 900;
            color: rgba(255, 215, 0, 0.35);
            line-height: 1;
            min-width: 36px;
            text-align: center;
            letter-spacing: -0.03em;
        }

        .cms-item .cms-content {
            flex: 1;
        }

        .cms-item .cms-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.25rem;
            line-height: 1.4;
            transition: color var(--transition-base);
        }

        .cms-item:hover .cms-title {
            color: var(--accent-gold);
        }

        .cms-item .cms-summary {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cms-item .cms-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        .cms-item .cms-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .cms-sidebar {
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            position: sticky;
            top: 90px;
        }

        .cms-sidebar h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cms-sidebar .side-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: var(--text-pale);
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }

        .cms-sidebar .side-link:last-child {
            border-bottom: none;
        }

        .cms-sidebar .side-link:hover {
            color: var(--accent-gold);
            padding-left: 0.4rem;
        }

        .cms-empty {
            background: rgba(18, 62, 37, 0.5);
            border: 1px dashed var(--border-subtle);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        @media (max-width: 900px) {
            .cms-layout {
                grid-template-columns: 1fr;
            }

            .cms-sidebar {
                position: static;
            }
        }

        @media (max-width: 520px) {
            .cms-item {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem;
            }

            .cms-item .cms-index {
                font-size: 1.2rem;
                min-width: auto;
                text-align: left;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 850px;
        }

        .faq-item {
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item.open {
            border-color: var(--border-gold);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 1rem 1.4rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            text-align: left;
            transition: color var(--transition-base);
            gap: 1rem;
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 0.9rem;
            color: var(--accent-gold);
            transition: transform var(--transition-base);
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.25s ease;
            padding: 0 1.4rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .faq-item.open .faq-answer {
            max-height: 240px;
            padding-bottom: 1.2rem;
        }

        /* ========== CTA / FORM ========== */
        .cta-section {
            background-image:
                linear-gradient(180deg, rgba(7, 31, 19, 0.85) 0%, rgba(10, 46, 28, 0.92) 100%),
                url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            padding: 3.5rem 2.5rem;
            border: 1px solid var(--border-gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-copy h3 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.25;
            margin: 0 0 0.8rem 0;
        }

        .cta-copy p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
            max-width: 480px;
        }

        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .cta-form input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 0.8rem 1rem;
            color: var(--text-white);
            font-size: 0.95rem;
            transition: all var(--transition-base);
            width: 100%;
        }

        .cta-form input::placeholder {
            color: var(--text-muted);
        }

        .cta-form input:focus {
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.09);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
        }

        .cta-form .btn-submit {
            background: var(--accent-gold);
            color: #071F13;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
        }

        .cta-form .btn-submit:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
        }

        @media (max-width: 768px) {
            .cta-section {
                grid-template-columns: 1fr;
                padding: 2rem 1.5rem;
                gap: 1.5rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-gold);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand .nav-logo {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .footer-col h6 {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0.35rem 0;
            transition: all var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 0.3rem;
        }

        .footer-pay {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .pay-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-pale);
            transition: all var(--transition-base);
        }

        .pay-badge:hover {
            border-color: var(--border-gold);
            color: var(--accent-gold);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0;
        }

        .footer-bottom .compliance {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .badge-18 {
            background: var(--accent-red);
            color: #fff;
            font-weight: 800;
            font-size: 0.8rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            letter-spacing: 0.04em;
        }

        .badge-license {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ========== FAB ========== */
        .fab-left {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 60;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 25%, #2A2A2A 0%, #111 70%);
            border: 3px solid var(--accent-gold);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0.7;
            transition: all var(--transition-base);
            animation: fab-breathe 3s ease-in-out infinite;
        }

        .fab-left i {
            font-size: 1.5rem;
            color: var(--accent-gold);
            filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
            transition: transform 0.4s ease;
        }

        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(255, 215, 0, 0.55);
        }

        .fab-left:hover i {
            transform: rotate(360deg);
        }

        .fab-left:active {
            transform: scale(0.95) translateY(2px);
        }

        .fab-left .fab-notification {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #D32F2F;
            border-radius: 50%;
            border: 2px solid #071F13;
            animation: fab-blink 1.8s ease-in-out infinite;
        }

        @keyframes fab-breathe {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.15);
            }
            50% {
                box-shadow: 0 8px 32px rgba(255, 215, 0, 0.6), inset 0 1px 3px rgba(255, 255, 255, 0.25);
            }
        }

        @keyframes fab-blink {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.8);
            }
        }

        @media (max-width: 520px) {
            .fab-left {
                width: 48px;
                height: 48px;
                bottom: 5rem;
                left: 0.75rem;
            }

            .fab-left i {
                font-size: 1.3rem;
            }
        }

        /* ========== UTILITIES ========== */
        .text-gold { color: var(--accent-gold); }
        .bg-gold-soft { background: rgba(255, 215, 0, 0.1); }
        .border-gold { border-color: var(--border-gold); }

        .divider-gradient {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
            border: none;
            margin: 0;
            opacity: 0.4;
        }

/* roulang page: article */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-deep: #071F13;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --accent-lime: #32CD32;
            --text-white: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #A9C9BC;
            --border-gold: rgba(255, 215, 0, 0.35);
            --border-subtle: rgba(209, 242, 235, 0.15);
            --radius-card: 16px;
            --radius-btn: 9999px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
            --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --spacing-section: 4rem;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.65;
            font-size: 16px;
            background-image: radial-gradient(ellipse at 20% 10%, rgba(255, 215, 0, 0.03) 0%, transparent 55%),
                              radial-gradient(ellipse at 80% 90%, rgba(50, 205, 50, 0.04) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 3px;
            border-radius: 6px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        .container {
            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(7, 31, 19, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            background: rgba(7, 31, 19, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            gap: 1.5rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--accent-gold);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .nav-logo i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4));
        }
        .nav-logo span {
            color: var(--text-white);
            font-weight: 600;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }
        .nav-menu a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-pale);
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }
        .nav-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .btn-login {
            background: transparent;
            border: none;
            color: var(--text-pale);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            transition: color var(--transition-base);
            white-space: nowrap;
        }
        .btn-login:hover {
            color: var(--accent-gold);
        }
        .btn-signup {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 0.55rem 1.3rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
        }
        .btn-signup:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
            transform: translateY(-1px);
        }
        .btn-signup:active {
            transform: translateY(1px);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-subtle);
            color: var(--text-pale);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }
        .nav-toggle:hover {
            border-color: var(--border-gold);
            color: var(--accent-gold);
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(7, 31, 19, 0.98);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 1rem 1.5rem 1.5rem;
            border-bottom: 1px solid var(--border-subtle);
            flex-direction: column;
            gap: 0.5rem;
            z-index: 99;
            transform: translateY(-10px);
            opacity: 0;
            pointer-events: none;
            transition: all var(--transition-base);
        }
        .mobile-menu.open {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-menu a {
            padding: 0.7rem 0.9rem;
            border-radius: 12px;
            font-weight: 500;
            color: var(--text-pale);
            transition: all var(--transition-base);
        }
        .mobile-menu a:hover {
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
        }
        .mobile-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }
        .mobile-menu .nav-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }
        @media (max-width: 1024px) {
            .nav-menu,
            .desktop-only {
                display: none !important;
            }
            .nav-toggle {
                display: flex;
            }
        }

        /* ========== ARTICLE PAGE SPECIFIC ========== */
        .article-page {
            padding-top: 70px;
        }
        .breadcrumb-bar {
            padding: 1.2rem 0 0.8rem;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb-bar a {
            color: var(--text-pale);
            transition: color var(--transition-base);
        }
        .breadcrumb-bar a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb-bar i {
            margin: 0 0.4rem;
            font-size: 0.7rem;
            color: var(--accent-gold);
        }
        .article-main {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 2.5rem;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .article-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content-wrap {
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow-card);
            margin-bottom: 2rem;
        }
        @media (max-width: 520px) {
            .article-content-wrap {
                padding: 1.2rem 1rem;
            }
        }
        .article-meta-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
        }
        .article-tag {
            background: rgba(211, 47, 47, 0.18);
            color: #FF7B7B;
            padding: 0.25rem 0.8rem;
            border-radius: 9999px;
            font-weight: 700;
            letter-spacing: 0.03em;
            border: 1px solid rgba(211, 47, 47, 0.4);
        }
        .article-category-tag {
            background: rgba(255, 215, 0, 0.15);
            color: var(--accent-gold);
            padding: 0.25rem 0.8rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.8rem;
            border: 1px solid var(--border-gold);
        }
        .article-date {
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .article-title {
            font-size: 2.25rem;
            line-height: 1.3;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 1.75rem;
            }
        }
        .article-featured-img {
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
            border: 1px solid var(--border-gold);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
        }
        .article-featured-img img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .article-content {
            color: var(--text-pale);
            font-size: 1.05rem;
            line-height: 1.75;
        }
        .article-content h2,
        .article-content h3 {
            color: var(--text-white);
            font-weight: 700;
            margin: 1.8rem 0 0.8rem;
            line-height: 1.4;
        }
        .article-content h2 {
            font-size: 1.6rem;
        }
        .article-content h3 {
            font-size: 1.3rem;
        }
        .article-content p {
            margin-bottom: 1rem;
        }
        .article-content ul,
        .article-content ol {
            margin: 0.8rem 0 1rem 1.2rem;
            padding-left: 1rem;
        }
        .article-content li {
            margin-bottom: 0.4rem;
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent-gold);
            background: rgba(255, 215, 0, 0.05);
            padding: 1rem 1.2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            color: var(--text-pale);
            font-style: italic;
        }
        .article-content img {
            border-radius: 12px;
            margin: 1.5rem auto;
        }
        .not-found-box {
            text-align: center;
            padding: 3rem 1.5rem;
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
        }
        .not-found-box i {
            font-size: 3rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .not-found-box h2 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }
        .not-found-box p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        .btn-back-home {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-gold);
            color: #071F13;
            padding: 0.7rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            transition: all var(--transition-base);
        }
        .btn-back-home:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-2px);
        }

        /* ========== SIDEBAR ========== */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-box {
            background: rgba(18, 62, 37, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
        }
        .sidebar-box h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid var(--border-subtle);
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 0;
            color: var(--text-pale);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(209, 242, 235, 0.05);
            transition: all var(--transition-base);
        }
        .sidebar-links a:last-child {
            border-bottom: none;
        }
        .sidebar-links a:hover {
            color: var(--accent-gold);
            transform: translateX(4px);
        }
        .sidebar-links i {
            color: var(--accent-gold);
            width: 20px;
            text-align: center;
        }
        .sidebar-promo {
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.25), rgba(255, 215, 0, 0.1));
            border: 1px solid rgba(211, 47, 47, 0.4);
            border-radius: var(--radius-card);
            padding: 1.5rem;
        }
        .sidebar-promo h4 {
            color: var(--text-white);
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
        }
        .sidebar-promo p {
            color: var(--text-pale);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .sidebar-promo .btn-signup {
            display: block;
            width: 100%;
            text-align: center;
        }

        /* ========== STATS SECTION ========== */
        .stats-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(50, 205, 50, 0.05));
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 3rem 1.5rem;
            margin: 3rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .stat-card {
            background: rgba(7, 31, 19, 0.7);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 1.8rem 1.2rem;
            text-align: left;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-lime));
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.4rem;
        }

        /* ========== TIPS SECTION ========== */
        .tips-section {
            padding: 4rem 0;
        }
        .section-heading {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 1.8rem;
            letter-spacing: -0.02em;
            position: relative;
            padding-left: 1rem;
        }
        .section-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.2rem;
            bottom: 0.2rem;
            width: 4px;
            background: linear-gradient(180deg, var(--accent-gold), var(--accent-lime));
            border-radius: 4px;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 1024px) {
            .tips-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
        .tip-item {
            background: rgba(18, 62, 37, 0.55);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.6rem;
            transition: all var(--transition-base);
            cursor: default;
        }
        .tip-item:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .tip-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            font-size: 1.3rem;
        }
        .tip-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.6rem;
        }
        .tip-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            padding: 4rem 0;
            background: rgba(7, 31, 19, 0.5);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            background: rgba(18, 62, 37, 0.55);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .faq-item.open {
            border-color: var(--border-gold);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            color: var(--text-white);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: left;
            transition: all var(--transition-base);
        }
        .faq-question i {
            color: var(--accent-gold);
            font-size: 1.1rem;
            transition: transform var(--transition-base);
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 0 1.5rem 1.2rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 4rem 0;
            text-align: left;
        }
        .cta-card {
            background: linear-gradient(135deg, #123E25 0%, #071F13 100%);
            border: 1px solid var(--border-gold);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent 70%);
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .cta-card {
                flex-direction: column;
                text-align: center;
                padding: 2rem 1.5rem;
            }
        }
        .cta-content h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }
        .cta-content p {
            color: var(--text-pale);
            font-size: 1.05rem;
            max-width: 600px;
        }
        .btn-primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--accent-gold);
            color: #071F13;
            padding: 0.9rem 2rem;
            border-radius: 9999px;
            font-weight: 800;
            font-size: 1rem;
            white-space: nowrap;
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
            transition: all var(--transition-base);
        }
        .btn-primary-cta:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.8rem;
            max-width: 380px;
        }
        .footer-col h6 {
            color: var(--accent-gold);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            letter-spacing: 0.05em;
        }
        .footer-col a {
            display: block;
            color: var(--text-pale);
            font-size: 0.9rem;
            padding: 0.3rem 0;
            transition: color var(--transition-base);
        }
        .footer-col a:hover {
            color: var(--accent-gold);
        }
        .footer-pay {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .pay-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 0.45rem 0.7rem;
            font-size: 0.8rem;
            color: var(--text-pale);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .pay-badge i {
            color: var(--accent-gold);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .compliance {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .badge-18 {
            background: var(--accent-red);
            color: #fff;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
        }
        .badge-license {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
            color: var(--text-pale);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .badge-license i {
            color: var(--accent-gold);
        }

        /* FAB */
        .fab-lucky {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 80;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #1C1C1E, #0A0A0A);
            border: 3px solid var(--accent-gold);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            animation: floatBreath 3s ease-in-out infinite;
            transition: all var(--transition-base);
            opacity: 0.7;
        }
        .fab-lucky:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
        }
        .fab-lucky:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-lucky .notification-dot {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 16px;
            height: 16px;
            background: #D32F2F;
            border-radius: 50%;
            border: 2px solid #071F13;
            animation: blinkDot 1.5s ease-in-out infinite;
        }
        @keyframes floatBreath {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes blinkDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-deep: #071F13;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --accent-lime: #32CD32;
            --text-white: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #A9C9BC;
            --border-gold: rgba(255, 215, 0, 0.35);
            --border-subtle: rgba(209, 242, 235, 0.15);
            --radius-card: 16px;
            --radius-btn: 9999px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
            --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --spacing-section: 4rem;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.65;
            font-size: 16px;
            background-image: radial-gradient(ellipse at 20% 10%, rgba(255, 215, 0, 0.04) 0%, transparent 55%),
                              radial-gradient(ellipse at 80% 90%, rgba(50, 205, 50, 0.04) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 3px;
            border-radius: 6px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            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(7, 31, 19, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            background: rgba(7, 31, 19, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            gap: 1.5rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--accent-gold);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .nav-logo i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4));
        }

        .nav-logo span {
            color: var(--text-white);
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-pale);
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .nav-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-login {
            background: transparent;
            border: none;
            color: var(--text-pale);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            transition: color var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            color: var(--accent-gold);
        }

        .btn-signup {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 0.55rem 1.3rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
        }

        .btn-signup:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
            transform: translateY(-1px);
        }

        .btn-signup:active {
            transform: translateY(1px);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-subtle);
            color: var(--text-pale);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }

        .nav-toggle:hover {
            color: var(--accent-gold);
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 0.25rem;
            padding: 0.75rem 1.5rem 1.25rem;
            border-top: 1px solid var(--border-subtle);
            background: rgba(7, 31, 19, 0.98);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .mobile-menu a {
            padding: 0.7rem 0.8rem;
            border-radius: 12px;
            font-weight: 500;
            color: var(--text-pale);
            transition: all var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }

        .mobile-menu .nav-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        /* ========== HERO ========== */
        .category-hero {
            padding-top: 140px;
            padding-bottom: 4rem;
            position: relative;
            background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-primary) 55%, var(--bg-secondary) 100%);
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 65%);
            pointer-events: none;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(50, 205, 50, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            padding: 0.45rem 1.1rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .hero-badge i {
            font-size: 0.8rem;
        }

        .hero-title {
            font-size: clamp(2.1rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin: 0 0 1.25rem;
            color: var(--text-white);
        }

        .hero-title em {
            font-style: normal;
            color: var(--accent-gold);
            position: relative;
        }

        .hero-title em::after {
            content: '';
            position: absolute;
            bottom: 0.08em;
            left: 0;
            right: 0;
            height: 0.18em;
            background: rgba(255, 215, 0, 0.25);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-pale);
            line-height: 1.7;
            margin: 0 0 2rem;
            max-width: 580px;
        }

        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-gold:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 26px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

        .btn-gold:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--border-gold);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.8rem 1.6rem;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-outline-gold:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .hero-panel {
            background: rgba(7, 31, 19, 0.65);
            border: 1px solid var(--border-gold);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .progress-ring-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .progress-ring {
            position: relative;
            width: 180px;
            height: 180px;
        }

        .progress-ring svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .progress-ring .ring-track {
            fill: none;
            stroke: rgba(255, 255, 255, 0.08);
            stroke-width: 12;
        }

        .progress-ring .ring-fill {
            fill: none;
            stroke: var(--accent-gold);
            stroke-width: 12;
            stroke-linecap: round;
            stroke-dasharray: 226.19;
            stroke-dashoffset: 72.38;
            transition: stroke-dashoffset 1.2s ease;
        }

        .progress-ring .ring-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .ring-value .ring-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
        }

        .ring-value .ring-unit {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .progress-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .progress-meta-item {
            text-align: center;
            padding: 0.75rem 0.5rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

        .progress-meta-item .meta-value {
            display: block;
            font-weight: 700;
            color: var(--text-white);
            font-size: 1rem;
        }

        .progress-meta-item .meta-label {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
        }

        /* ========== SECTION GENERIC ========== */
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }

        .section-header {
            margin-bottom: 2.5rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.6rem;
        }

        .section-label i {
            font-size: 0.85rem;
        }

        .section-title {
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.01em;
            margin: 0;
            color: var(--text-white);
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 0.8rem;
            max-width: 700px;
        }

        /* ========== METRIC DASHBOARD ========== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .metric-card {
            background: rgba(7, 31, 19, 0.6);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), rgba(255, 215, 0, 0.15));
        }

        .metric-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .metric-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .metric-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.2;
        }

        .metric-unit {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-left: 0.25rem;
        }

        .metric-label {
            font-size: 0.9rem;
            color: var(--text-pale);
            margin-top: 0.4rem;
            font-weight: 500;
        }

        .metric-trend {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-lime);
            margin-top: 0.6rem;
        }

        /* ========== RULES MATRIX ========== */
        .rules-layout {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 2.5rem;
            align-items: start;
        }

        .rules-list {
            display: grid;
            gap: 1rem;
        }

        .rule-item {
            background: rgba(7, 31, 19, 0.55);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 1.25rem 1.5rem;
            transition: all var(--transition-base);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .rule-item:hover {
            border-color: var(--border-gold);
            background: rgba(7, 31, 19, 0.75);
            box-shadow: var(--shadow-card);
        }

        .rule-num {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
        }

        .rule-body h3 {
            margin: 0 0 0.4rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
        }

        .rule-body p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .rule-side-card {
            background: rgba(7, 31, 19, 0.7);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            padding: 1.75rem;
            box-shadow: var(--shadow-card);
            position: sticky;
            top: 100px;
        }

        .rule-side-card img {
            border-radius: 12px;
            margin-bottom: 1.25rem;
            width: 100%;
            object-fit: cover;
            border: 1px solid var(--border-subtle);
        }

        .rule-side-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.6rem;
            color: var(--text-white);
        }

        .rule-side-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0 0 1.2rem;
        }

        .side-badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .side-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 215, 0, 0.08);
            border: 1px solid var(--border-gold);
            border-radius: 9999px;
            padding: 0.4rem 0.9rem;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-pale);
        }

        .side-badge i {
            color: var(--accent-gold);
            font-size: 0.7rem;
        }

        /* ========== COMPARISON ========== */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .compare-col {
            border-radius: var(--radius-card);
            padding: 1.25rem;
            background: rgba(7, 31, 19, 0.55);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }

        .compare-col.wrong {
            border-color: rgba(211, 47, 47, 0.4);
        }

        .compare-col.right {
            border-color: rgba(50, 205, 50, 0.4);
        }

        .compare-col:hover {
            box-shadow: var(--shadow-card);
        }

        .compare-head {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 1rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .compare-head .compare-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .compare-col.wrong .compare-icon {
            background: rgba(211, 47, 47, 0.12);
            border: 1px solid rgba(211, 47, 47, 0.35);
            color: #ff6b6b;
        }

        .compare-col.right .compare-icon {
            background: rgba(50, 205, 50, 0.12);
            border: 1px solid rgba(50, 205, 50, 0.35);
            color: var(--accent-lime);
        }

        .compare-head h3 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .compare-col.wrong .compare-head h3 {
            color: #ff6b6b;
        }

        .compare-col.right .compare-head h3 {
            color: var(--accent-lime);
        }

        .compare-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.7rem;
        }

        .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-pale);
            line-height: 1.6;
        }

        .compare-list li i {
            flex-shrink: 0;
            margin-top: 0.3rem;
            font-size: 0.85rem;
        }

        .compare-col.wrong .compare-list li i {
            color: #ff6b6b;
        }

        .compare-col.right .compare-list li i {
            color: var(--accent-lime);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            gap: 0.75rem;
        }

        .faq-item {
            background: rgba(7, 31, 19, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item.open {
            border-color: var(--border-gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.4rem;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            color: var(--text-white);
            font-weight: 700;
            font-size: 0.98rem;
            transition: color var(--transition-base);
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question .faq-toggle-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.08);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--accent-gold);
            transition: transform var(--transition-base);
        }

        .faq-item.open .faq-question .faq-toggle-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 1.4rem;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 1.4rem 1.25rem;
        }

        .faq-answer p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ========== CTA FORM ========== */
        .cta-section {
            background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .cta-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 1rem;
            color: var(--text-white);
        }

        .cta-info h2 em {
            font-style: normal;
            color: var(--accent-gold);
        }

        .cta-info p {
            font-size: 1.05rem;
            color: var(--text-pale);
            line-height: 1.7;
            margin: 0 0 1.5rem;
            max-width: 480px;
        }

        .cta-benefit-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.6rem;
        }

        .cta-benefit-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-pale);
            font-weight: 500;
        }

        .cta-benefit-list li i {
            color: var(--accent-gold);
            font-size: 0.85rem;
        }

        .cta-form-card {
            background: rgba(7, 31, 19, 0.75);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
        }

        .cta-form-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            color: var(--text-white);
        }

        .cta-form-card .form-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 1.5rem;
        }

        .form-group {
            margin-bottom: 1.1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-pale);
            margin-bottom: 0.4rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            color: var(--text-white);
            font-size: 0.95rem;
            transition: all var(--transition-base);
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(169, 201, 188, 0.6);
        }

        .form-input:focus {
            border-color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.05);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
        }

        .form-btn {
            width: 100%;
            padding: 0.85rem 1.5rem;
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            border-radius: var(--radius-btn);
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .form-btn:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 26px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

        .form-btn:active {
            transform: translateY(1px);
        }

        .form-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 0.75rem;
        }

        /* ========== FAB ========== */
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(7, 31, 19, 0.88);
            border: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            animation: fabBreath 3s ease-in-out infinite;
        }

        .fab-royal i {
            color: var(--accent-gold);
            font-size: 1.3rem;
            transition: transform 0.35s ease;
        }

        .fab-royal:hover {
            scale: 1.1;
            opacity: 1;
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5);
        }

        .fab-royal:hover i {
            transform: rotate(360deg);
        }

        .fab-royal:active {
            scale: 0.95;
            box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }

        .fab-royal .notif-dot {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D32F2F;
            border: 1.5px solid var(--text-white);
            animation: notifBlink 1.5s ease-in-out infinite;
        }

        @keyframes fabBreath {
            0%, 100% {
                opacity: 0.7;
                transform: translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-3px);
            }
        }

        @keyframes notifBlink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            padding: 3rem 0 1.5rem;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand .nav-logo {
            margin-bottom: 0.8rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .footer-col h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin: 0 0 1rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .footer-col a {
            display: block;
            font-size: 0.9rem;
            color: var(--text-pale);
            margin-bottom: 0.6rem;
            transition: color var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
        }

        .footer-pay {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .pay-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 9999px;
            padding: 0.35rem 0.9rem;
            font-size: 0.8rem;
            color: var(--text-pale);
            font-weight: 500;
        }

        .pay-badge i {
            color: var(--accent-gold);
            font-size: 0.75rem;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
        }

        .compliance {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .badge-18 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(211, 47, 47, 0.15);
            border: 1px solid var(--accent-red);
            color: #ff6b6b;
            font-weight: 800;
            font-size: 0.85rem;
        }

        .badge-license {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .badge-license i {
            color: var(--accent-gold);
            font-size: 0.8rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .hero-panel {
                max-width: 520px;
            }
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .rules-layout {
                grid-template-columns: 1fr;
            }
            .rule-side-card {
                position: static;
            }
            .cta-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-section: 3rem;
            }
            .nav-actions {
                display: none;
            }
            .nav-menu {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .mobile-menu {
                display: flex;
            }
            .container {
                padding: 0 1rem;
            }
            .category-hero {
                padding-top: 110px;
                padding-bottom: 3rem;
            }
            .hero-desc {
                font-size: 1rem;
            }
            .compare-grid {
                grid-template-columns: 1fr;
            }
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.9rem;
            }
            .metric-card {
                padding: 1.1rem;
            }
            .metric-value {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }
            .cta-form-card {
                padding: 1.5rem;
            }
            .fab-royal {
                bottom: 5rem;
                left: 0.8rem;
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 520px) {
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-cta-row {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-gold,
            .btn-outline-gold {
                justify-content: center;
            }
            .progress-ring {
                width: 150px;
                height: 150px;
            }
            .ring-value .ring-number {
                font-size: 2rem;
            }
            .progress-meta {
                grid-template-columns: 1fr;
            }
            .rule-item {
                flex-direction: column;
                gap: 0.75rem;
            }
            .cta-form-card {
                padding: 1.25rem;
            }
        }

/* roulang page: category2 */
/* ========== DESIGN SYSTEM VARIABLES ========== */
        :root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-deep: #071F13;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --accent-lime: #32CD32;
            --text-white: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #A9C9BC;
            --border-gold: rgba(255, 215, 0, 0.35);
            --border-subtle: rgba(209, 242, 235, 0.15);
            --radius-card: 16px;
            --radius-lg: 24px;
            --radius-btn: 9999px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
            --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --spacing-section: 4rem;
            --spacing-section-sm: 2.5rem;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ========== BASE RESET ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--text-white);
            line-height: 1.65;
            font-size: 16px;
            background-image: radial-gradient(ellipse at 20% 10%, rgba(255, 215, 0, 0.03) 0%, transparent 55%),
                              radial-gradient(ellipse at 80% 90%, rgba(50, 205, 50, 0.04) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base), opacity var(--transition-base);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 3px;
            border-radius: 6px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(7, 31, 19, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            background: rgba(7, 31, 19, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            gap: 1.5rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--accent-gold);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .nav-logo i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.4));
        }

        .nav-logo span {
            color: var(--text-white);
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-pale);
            transition: all var(--transition-base);
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .nav-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-login {
            background: transparent;
            border: none;
            color: var(--text-pale);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            transition: color var(--transition-base);
            white-space: nowrap;
        }

        .btn-login:hover {
            color: var(--accent-gold);
        }

        .btn-signup {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 0.55rem 1.3rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
        }

        .btn-signup:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
            transform: translateY(-1px);
        }

        .btn-signup:active {
            transform: translateY(1px);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-subtle);
            color: var(--text-pale);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            background: rgba(7, 31, 19, 0.98);
            border-top: 1px solid var(--border-subtle);
            padding: 1rem 1.5rem 1.25rem;
            flex-direction: column;
            gap: 0.4rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 0.8rem 1rem;
            border-radius: 12px;
            font-weight: 500;
            color: var(--text-pale);
            transition: all var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.12);
            font-weight: 700;
        }

        .mobile-menu .nav-actions {
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-wrapper {
            padding-top: 5.5rem;
            padding-bottom: 0.5rem;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb .separator {
            opacity: 0.6;
            font-size: 0.7rem;
        }

        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* ========== HERO ========== */
        .hero-cat {
            position: relative;
            padding: 3rem 0 3.5rem;
            overflow: hidden;
            background: linear-gradient(140deg, #071F13 0%, #0A2E1C 45%, #123E25 100%);
            border-bottom: 1px solid var(--border-subtle);
        }

        .hero-cat::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-cat-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-cat-content h1 {
            font-size: 2.75rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-white);
            margin-bottom: 1.25rem;
        }

        .hero-cat-content h1 .highlight {
            color: var(--accent-gold);
            display: block;
            margin-top: 0.25rem;
        }

        .hero-cat-desc {
            font-size: 1.1rem;
            color: var(--text-pale);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 560px;
        }

        .hero-cat-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            align-items: center;
        }

        .btn-primary-lg {
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.85rem 2rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-primary-lg:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

        .btn-primary-lg:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
        }

        .btn-outline-lg {
            background: transparent;
            color: var(--text-pale);
            border: 1px solid var(--border-gold);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.85rem 1.8rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-outline-lg:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.06);
        }

        /* Hero Data Panel */
        .hero-data-panel {
            background: rgba(7, 31, 19, 0.7);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .hero-data-panel .panel-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .hero-data-panel .panel-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        .hero-data-panel .live-badge {
            background: rgba(211, 47, 47, 0.15);
            color: #FF6B6B;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid rgba(211, 47, 47, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .hero-data-panel .live-badge .dot {
            width: 8px;
            height: 8px;
            background: #FF4444;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        .data-rank-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .data-rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.85rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            transition: all var(--transition-base);
        }

        .data-rank-item:hover {
            background: rgba(255, 215, 0, 0.06);
            border-color: var(--border-gold);
        }

        .data-rank-index {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.12);
            color: var(--accent-gold);
            font-weight: 700;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .data-rank-info {
            flex: 1;
            min-width: 0;
        }

        .data-rank-info .rank-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-white);
        }

        .data-rank-info .rank-detail {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .data-rank-value {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--accent-gold);
            white-space: nowrap;
        }

        .hero-data-panel .panel-footer {
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-data-panel .panel-footer .total-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero-data-panel .panel-footer .total-value {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent-gold);
        }

        /* ========== SECTION HEADINGS ========== */
        .section-head {
            margin-bottom: 2.5rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.08);
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            margin-bottom: 1rem;
        }

        .section-head h2 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--text-white);
            margin-bottom: 0.75rem;
        }

        .section-head p {
            font-size: 1.05rem;
            color: var(--text-pale);
            max-width: 720px;
        }

        /* ========== METRICS STRIP ========== */
        .metrics-strip {
            padding: 2.5rem 0;
            background: rgba(7, 31, 19, 0.6);
            border-bottom: 1px solid var(--border-subtle);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .metric-block {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            transition: all var(--transition-base);
        }

        .metric-block:hover {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.04);
        }

        .metric-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.1);
            color: var(--accent-gold);
            border-radius: 12px;
            font-size: 1.2rem;
        }

        .metric-info .metric-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.2;
        }

        .metric-info .metric-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* ========== STRATEGY SECTION ========== */
        .strategy-section {
            padding: var(--spacing-section) 0;
        }

        .strategy-layout {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 2.5rem;
            align-items: start;
        }

        .strategy-intro {
            position: sticky;
            top: 100px;
        }

        .strategy-intro .intro-card {
            background: linear-gradient(150deg, #0F3D28 0%, #071F13 100%);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            box-shadow: var(--shadow-card);
        }

        .strategy-intro .intro-card img {
            border-radius: 12px;
            margin-bottom: 1.25rem;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .strategy-intro .intro-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
        }

        .strategy-intro .intro-card p {
            font-size: 0.95rem;
            color: var(--text-pale);
        }

        .strategy-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .strategy-item {
            display: flex;
            gap: 1.15rem;
            padding: 1.25rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            transition: all var(--transition-base);
        }

        .strategy-item:hover {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.04);
            transform: translateX(4px);
        }

        .strategy-num {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.1);
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 1.05rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .strategy-item-content h4 {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }

        .strategy-item-content p {
            font-size: 0.93rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .strategy-item-content .strategy-tips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.75rem;
        }

        .strategy-item-content .tip-chip {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-pale);
            background: rgba(255, 255, 255, 0.05);
            padding: 0.3rem 0.7rem;
            border-radius: 9999px;
            border: 1px solid var(--border-subtle);
        }

        /* ========== COMPARISON SECTION ========== */
        .comparison-section {
            padding: var(--spacing-section) 0;
            background: rgba(7, 31, 19, 0.5);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 900px;
        }

        .comparison-card {
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .comparison-card.negative {
            background: rgba(211, 47, 47, 0.07);
            border: 1px solid rgba(211, 47, 47, 0.25);
        }

        .comparison-card.positive {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid var(--border-gold);
        }

        .comparison-card .compare-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.35rem 0.9rem;
            border-radius: 9999px;
            margin-bottom: 1.25rem;
        }

        .comparison-card.negative .compare-badge {
            background: rgba(211, 47, 47, 0.15);
            color: #FF6B6B;
            border: 1px solid rgba(211, 47, 47, 0.3);
        }

        .comparison-card.positive .compare-badge {
            background: rgba(255, 215, 0, 0.12);
            color: var(--accent-gold);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .comparison-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .comparison-card.negative h3 {
            color: #FF8A8A;
        }

        .comparison-card.positive h3 {
            color: var(--accent-gold);
        }

        .compare-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-pale);
        }

        .compare-list li i {
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .comparison-card.negative .compare-list li i {
            color: #FF6B6B;
        }

        .comparison-card.positive .compare-list li i {
            color: var(--accent-lime);
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            padding: var(--spacing-section) 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            max-width: 860px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(255, 215, 0, 0.25);
        }

        .faq-item.active {
            border-color: var(--border-gold);
            background: rgba(255, 215, 0, 0.03);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-white);
            transition: color var(--transition-base);
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
            font-size: 0.85rem;
            transition: all var(--transition-base);
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
            background: rgba(255, 215, 0, 0.18);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.25rem;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        /* ========== CTA / FORM SECTION ========== */
        .cta-form-section {
            padding: var(--spacing-section) 0;
            background: linear-gradient(150deg, #0F3D28 0%, #071F13 60%, #123E25 100%);
            border-top: 1px solid var(--border-gold);
        }

        .cta-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .cta-form-content h2 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--text-white);
            margin-bottom: 1rem;
        }

        .cta-form-content h2 .highlight {
            color: var(--accent-gold);
        }

        .cta-form-content p {
            font-size: 1.05rem;
            color: var(--text-pale);
            margin-bottom: 1.5rem;
            max-width: 480px;
        }

        .cta-form-benefits {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .cta-form-benefits li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: var(--text-pale);
        }

        .cta-form-benefits li i {
            color: var(--accent-lime);
        }

        .form-card {
            background: rgba(7, 31, 19, 0.75);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .form-card .form-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .form-card .form-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.15rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-pale);
            margin-bottom: 0.4rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            color: var(--text-white);
            font-size: 0.95rem;
            transition: all var(--transition-base);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        }

        .form-group input::placeholder {
            color: rgba(169, 201, 188, 0.6);
        }

        .form-group select option {
            background: #0F3D28;
            color: var(--text-white);
        }

        .btn-submit {
            width: 100%;
            background: var(--accent-gold);
            color: #071F13;
            border: none;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.85rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .btn-submit:hover {
            background: var(--accent-gold-hover);
            box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
        }

        .form-note {
            margin-top: 0.85rem;
            font-size: 0.78rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* ========== FLOATING ACTION BUTTON ========== */
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(145deg, #1C1C1E 0%, #121212 70%);
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            opacity: 0.7;
            animation: fab-float 3s ease-in-out infinite;
            transition: all var(--transition-base);
            min-width: 48px;
            min-height: 48px;
        }

        .fab-royal:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            animation-play-state: paused;
        }

        .fab-royal:active {
            transform: scale(0.95) translateY(2px);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
        }

        .fab-royal .fab-notification {
            position: absolute;
            top: -3px;
            right: -3px;
            width: 14px;
            height: 14px;
            background: #D32F2F;
            border: 2px solid #1C1C1E;
            border-radius: 50%;
            animation: gem-blink 2s ease-in-out infinite;
        }

        @keyframes fab-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes gem-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-gold);
            padding: 3rem 0 2rem;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .footer-brand .nav-logo {
            margin-bottom: 1rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 380px;
        }

        .footer-col h6 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .footer-col a {
            display: block;
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 0.35rem 0;
            transition: all var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }

        .footer-pay {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .pay-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-pale);
            background: rgba(255, 255, 255, 0.05);
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
        }

        .pay-badge i {
            color: var(--accent-gold);
            font-size: 0.85rem;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .compliance {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.65rem;
        }

        .badge-18 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(211, 47, 47, 0.15);
            border: 1px solid rgba(211, 47, 47, 0.4);
            color: #FF6B6B;
            font-weight: 800;
            font-size: 0.8rem;
            border-radius: 8px;
        }

        .badge-license {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            background: rgba(255, 215, 0, 0.04);
            border: 1px solid rgba(255, 215, 0, 0.2);
            padding: 0.4rem 0.85rem;
            border-radius: 9999px;
        }

        .badge-license i {
            color: var(--accent-gold);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-cat-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-data-panel {
                max-width: 100%;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .strategy-layout {
                grid-template-columns: 1fr;
            }

            .strategy-intro {
                position: static;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .desktop-only {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-cat-content h1 {
                font-size: 2rem;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .cta-form-grid {
                grid-template-columns: 1fr;
            }

            .section-head h2 {
                font-size: 1.6rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }

            .compliance {
                justify-content: center;
            }

            .hero-data-panel .panel-footer {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .hero-cat {
                padding: 2.5rem 0;
            }

            .hero-cat-content h1 {
                font-size: 1.65rem;
            }

            .hero-cat-desc {
                font-size: 0.95rem;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .metric-block {
                padding: 1rem;
            }

            .strategy-item {
                padding: 1rem;
                gap: 0.85rem;
            }

            .comparison-card {
                padding: 1.5rem;
            }

            .form-card {
                padding: 1.5rem;
            }

            .section-head h2 {
                font-size: 1.4rem;
            }

            .fab-royal {
                width: 48px;
                height: 48px;
                bottom: 5rem;
                left: 0.75rem;
            }
        }

        /* Custom responsive for buttons on very small screens */
        @media (max-width: 360px) {
            .btn-primary-lg,
            .btn-outline-lg {
                width: 100%;
                justify-content: center;
            }

            .hero-cat-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }

.fab-support {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #0F2920;
            border: 3px solid #FFD700;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), inset 0 0 8px rgba(255, 215, 0, 0.18);
            color: #FFD700;
            font-size: 1.5rem;
            opacity: 0.85;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            animation: fabFloat 3s ease-in-out infinite;
        }
        .fab-support:hover {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(255, 215, 0, 0.55), inset 0 0 12px rgba(255, 215, 0, 0.28);
            animation-play-state: paused;
        }
        .fab-support:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .fab-notification-dot {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D32F2F;
            border: 1px solid #FFD700;
            animation: pulse-dot 1.8s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.6; }
        }
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @media (max-width: 768px) {
            .fab-support {
                width: 52px;
                height: 52px;
                bottom: 5.5rem;
                left: 0.75rem;
                font-size: 1.35rem;
            }
        }
