/* roulang page: index */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-tertiary: #0D3523;
            --bg-card: rgba(11, 46, 30, 0.85);
            --bg-glass: rgba(5, 31, 20, 0.72);
            --gold-1: #F59E0B;
            --gold-2: #FCD34D;
            --gold-3: #FBBF24;
            --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
            --gold-gradient-btn: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #FCD34D 100%);
            --dragon-red: #DC2626;
            --text-white: #F8FAFC;
            --text-mint: #D1FAE5;
            --text-soft: #A7C4B5;
            --text-muted: #7A9E8D;
            --border-gold: rgba(245, 158, 11, 0.3);
            --border-subtle: rgba(245, 158, 11, 0.15);
            --shadow-gold: 0 6px 30px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --space-xs: 0.5rem;
            --space-sm: 0.875rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-section: 5.5rem;
            --font-main: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            --container-max: 1200px;
            --nav-height: 76px;
            --transition-fast: 0.2s ease;
            --transition-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s 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%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-white);
            background-color: var(--bg-primary);
            background-image: radial-gradient(ellipse at 20% 0%, rgba(5, 31, 20, 0.98) 0%, rgba(5, 31, 20, 1) 60%, rgba(6, 24, 16, 1) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--gold-2);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        ul, ol {
            list-style: none;
        }

        :focus-visible {
            outline: 3px solid var(--gold-1);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-mid), box-shadow var(--transition-mid);
        }

        .site-header.scrolled {
            background: rgba(4, 24, 15, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border-bottom-color: var(--border-gold);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            line-height: 1.2;
            color: var(--text-white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 240px;
        }

        .nav-logo-text span {
            color: var(--gold-2);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 1;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-mint);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
        }

        .nav-links a.active {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.12);
            font-weight: 600;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-nav-outline {
            padding: 9px 20px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold-2);
            border: 1.5px solid rgba(245, 158, 11, 0.5);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-nav-outline:hover {
            border-color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
            color: var(--gold-2);
        }

        .btn-nav-solid {
            padding: 9px 22px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 700;
            color: #051F14;
            background: var(--gold-gradient-btn);
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-nav-solid:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
            color: #051F14;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid var(--border-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--gold-2);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: rgba(4, 24, 15, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-gold);
            padding: 16px 24px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 14px 18px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-mint);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
            border-color: var(--border-subtle);
        }

        .mobile-menu .mobile-nav-actions {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .mobile-menu .btn-nav-outline,
        .mobile-menu .btn-nav-solid {
            flex: 1;
            text-align: center;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: calc(var(--nav-height) + 40px) 0 80px;
            background-image: url('/assets/images/d9d0677a23bf47bf.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(5, 31, 20, 0.92) 0%, rgba(5, 31, 20, 0.72) 40%, rgba(11, 46, 30, 0.58) 70%, rgba(5, 31, 20, 0.9) 100%);
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 18% 40%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                        radial-gradient(ellipse at 90% 60%, rgba(245, 158, 11, 0.06) 0%, transparent 45%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold-2);
            width: fit-content;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10B981;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 2.85rem;
            font-weight: 800;
            line-height: 1.18;
            color: var(--text-white);
            letter-spacing: -0.01em;
            margin: 0;
        }

        .hero-title .gold-highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.12rem;
            line-height: 1.65;
            color: var(--text-mint);
            max-width: 560px;
            margin: 0;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 32px;
            border-radius: var(--radius-full);
            font-size: 1rem;
            font-weight: 700;
            color: #051F14;
            background: var(--gold-gradient-btn);
            box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
            transition: all var(--transition-mid);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(245, 158, 11, 0.5);
            color: #051F14;
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 28px;
            border-radius: var(--radius-full);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.06);
            border: 1.5px solid rgba(245, 158, 11, 0.4);
            transition: all var(--transition-mid);
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.6);
            transform: translateY(-1px);
        }

        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 8px;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold-2);
            line-height: 1.2;
        }

        .hero-stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-panel {
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .hero-panel-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-panel-title::before {
            content: '';
            width: 4px;
            height: 20px;
            border-radius: 4px;
            background: var(--gold-gradient);
        }

        .live-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .live-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            border-radius: var(--radius-md);
            background: rgba(5, 31, 20, 0.6);
            border: 1px solid rgba(245, 158, 11, 0.1);
            transition: all var(--transition-fast);
        }

        .live-item:hover {
            border-color: var(--border-gold);
            background: rgba(5, 31, 20, 0.8);
        }

        .live-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .live-item-rank {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--gold-2);
            width: 28px;
            text-align: center;
        }

        .live-item-name {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-white);
        }

        .live-item-value {
            font-size: 0.88rem;
            font-weight: 700;
            color: #10B981;
            white-space: nowrap;
        }

        .live-item-value.hot {
            color: var(--dragon-red);
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-alt {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-header {
            margin-bottom: 40px;
            max-width: 720px;
        }

        .section-header.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold-1);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-white);
            letter-spacing: -0.01em;
            margin: 0 0 14px;
        }

        .section-desc {
            font-size: 1.02rem;
            line-height: 1.65;
            color: var(--text-mint);
            margin: 0;
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            padding: 20px 0;
            background: rgba(5, 31, 20, 0.6);
            border-bottom: 1px solid var(--border-subtle);
        }

        .trust-bar-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 24px 48px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--text-mint);
            font-weight: 500;
        }

        .trust-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* ========== COMMISSION HIGHLIGHTS ========== */
        .commission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .commission-card {
            padding: 28px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-mid);
            position: relative;
            overflow: hidden;
        }

        .commission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity var(--transition-mid);
        }

        .commission-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }

        .commission-card:hover::before {
            opacity: 1;
        }

        .commission-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        .commission-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 10px;
        }

        .commission-card p {
            font-size: 0.94rem;
            color: var(--text-mint);
            line-height: 1.6;
            margin: 0;
        }

        .commission-highlight {
            display: inline-block;
            margin-top: 14px;
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gold-2);
        }

        /* ========== GAME SHOWCASE ========== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .game-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-mid);
            cursor: pointer;
            position: relative;
        }

        .game-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-6px);
            box-shadow: var(--shadow-gold), 0 0 20px rgba(245, 158, 11, 0.15);
        }

        .game-card-img {
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
        }

        .game-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .game-card:hover .game-card-img img {
            transform: scale(1.06);
        }

        .game-card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            background: var(--dragon-red);
            color: #fff;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
        }

        .game-card-body {
            padding: 16px 18px;
        }

        .game-card-body h3 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 4px;
        }

        .game-card-body p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* ========== PROMO MATERIALS ========== */
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            align-items: center;
        }

        .promo-visual {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
        }

        .promo-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .promo-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .promo-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .promo-list-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            border-radius: var(--radius-md);
            background: rgba(5, 31, 20, 0.5);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }

        .promo-list-item:hover {
            border-color: var(--border-gold);
            background: rgba(5, 31, 20, 0.75);
        }

        .promo-list-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .promo-list-text h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 4px;
        }

        .promo-list-text p {
            font-size: 0.88rem;
            color: var(--text-mint);
            margin: 0;
        }

        /* ========== SETTLEMENT / PAYMENT ========== */
        .settlement-grid {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: 40px;
            align-items: start;
        }

        .settlement-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 22px 24px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }

        .step-item:hover {
            border-color: var(--border-gold);
        }

        .step-number {
            min-width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #051F14;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-text h4 {
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
        }

        .step-text p {
            font-size: 0.9rem;
            color: var(--text-mint);
            margin: 0;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .payment-method {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            border-radius: var(--radius-md);
            background: rgba(5, 31, 20, 0.6);
            border: 1px solid var(--border-subtle);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-mint);
            transition: all var(--transition-fast);
        }

        .payment-method:hover {
            border-color: var(--border-gold);
            background: rgba(5, 31, 20, 0.85);
        }

        .payment-method-icon {
            font-size: 1.3rem;
        }

        .payment-amount {
            font-family: var(--font-display);
            font-weight: 800;
            color: var(--gold-2);
            font-size: 0.95rem;
        }

        /* ========== SUCCESS CASES ========== */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .case-card {
            padding: 24px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-mid);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .case-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }

        .case-card-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .case-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--gold-2);
            font-size: 1.1rem;
        }

        .case-user-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
        }

        .case-user-game {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .case-quote {
            font-size: 0.92rem;
            color: var(--text-mint);
            line-height: 1.6;
            margin: 0;
        }

        .case-amount {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: #10B981;
        }

        /* ========== CATEGORY ENTRY ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .category-card {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 28px 24px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-mid);
            position: relative;
            overflow: hidden;
        }

        .category-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }

        .category-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity var(--transition-mid);
        }

        .category-card:hover::after {
            opacity: 1;
        }

        .category-card-icon {
            font-size: 2rem;
        }

        .category-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold-2);
        }

        .category-card p {
            font-size: 0.9rem;
            color: var(--text-mint);
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
        }

        .category-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--gold-2);
            transition: all var(--transition-fast);
        }

        .category-card-link:hover {
            gap: 10px;
            color: var(--gold-2);
        }

        /* ========== CMS NEWS ========== */
        .news-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 32px;
            align-items: start;
        }

        .news-main {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .news-item {
            display: flex;
            gap: 18px;
            padding: 18px 20px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }

        .news-item:hover {
            border-color: var(--border-gold);
            transform: translateX(4px);
        }

        .news-item-thumb {
            width: 100px;
            height: 72px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-item-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .news-item-content h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item-meta {
            display: flex;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .news-item-summary {
            font-size: 0.85rem;
            color: var(--text-mint);
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .news-sidebar-card {
            padding: 22px;
            border-radius: var(--radius-md);
            background: rgba(5, 31, 20, 0.55);
            border: 1px solid var(--border-subtle);
        }

        .news-sidebar-card h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 14px;
        }

        .news-sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-sidebar-list a {
            font-size: 0.88rem;
            color: var(--text-mint);
            line-height: 1.5;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(245, 158, 11, 0.08);
            transition: all var(--transition-fast);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-sidebar-list a:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .news-sidebar-list a:hover {
            color: var(--gold-2);
        }

        .news-empty {
            padding: 30px;
            text-align: center;
            color: var(--text-muted);
            font-style: italic;
            border: 1px dashed var(--border-subtle);
            border-radius: var(--radius-md);
        }

        /* ========== VIP LEVELS ========== */
        .vip-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .vip-card {
            padding: 22px 18px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: all var(--transition-mid);
            position: relative;
            overflow: hidden;
        }

        .vip-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }

        .vip-card.featured {
            border-color: var(--gold-1);
            background: rgba(245, 158, 11, 0.08);
        }

        .vip-card.featured::before {
            content: '★';
            position: absolute;
            top: 10px;
            right: 14px;
            color: var(--gold-2);
            font-size: 1rem;
        }

        .vip-level-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .vip-level-name {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 6px;
        }

        .vip-level-benefit {
            font-size: 0.8rem;
            color: var(--text-mint);
            line-height: 1.5;
        }

        /* ========== SECURITY ========== */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .security-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }

        .security-item:hover {
            border-color: var(--border-gold);
        }

        .security-icon {
            font-size: 1.8rem;
        }

        .security-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gold-2);
        }

        .security-item p {
            font-size: 0.86rem;
            color: var(--text-mint);
            line-height: 1.55;
            margin: 0;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 800px;
        }

        .faq-item {
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text-white);
            transition: all var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--gold-2);
        }

        .faq-question-icon {
            font-size: 1.3rem;
            color: var(--gold-2);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            font-size: 0.92rem;
            color: var(--text-mint);
            line-height: 1.65;
        }

        /* ========== FINAL CTA ========== */
        .cta-section {
            position: relative;
            padding: var(--space-xl) 0;
            background-image: url('/assets/images/31df0c138246256b.jpg');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.95) 0%, rgba(5, 31, 20, 0.85) 50%, rgba(11, 46, 30, 0.78) 100%);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.2;
        }

        .cta-title .gold-highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-desc {
            font-size: 1.05rem;
            color: var(--text-mint);
            line-height: 1.65;
            margin: 0;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        /* ========== RISK NOTICE ========== */
        .risk-notice {
            padding: 24px 28px;
            border-radius: var(--radius-md);
            background: rgba(220, 38, 38, 0.06);
            border: 1px solid rgba(220, 38, 38, 0.2);
            font-size: 0.88rem;
            color: var(--text-mint);
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .risk-notice-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ========== FAB ========== */
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D 0%, #F59E0B 50%, #D97706 100%);
            border: 2px solid #F59E0B;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #051F14;
            cursor: pointer;
            opacity: 0.8;
            transition: all var(--transition-mid);
            animation: fab-breathe 3s ease-in-out infinite;
            text-decoration: none;
        }

        .fab-left:hover {
            opacity: 1;
            transform: scale(1.1);
            animation-play-state: paused;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
        }

        .fab-left:active {
            transform: scale(0.95) translateY(1px);
        }

        .fab-notification {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #DC2626;
            border: 2px solid #FCD34D;
            animation: fab-notify 1.8s ease-in-out infinite;
        }

        @keyframes fab-breathe {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes fab-notify {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #04130C;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #051F14;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.98rem;
            color: var(--text-white);
            line-height: 1.3;
        }

        .footer-logo-text span {
            color: var(--gold-2);
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .footer-license {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-license-badge {
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.25);
            font-weight: 700;
            font-size: 0.72rem;
            letter-spacing: 0.05em;
            color: var(--gold-2);
        }

        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold-2);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 0.88rem;
            color: var(--text-mint);
            transition: all var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--gold-2);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.1);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .footer-copy {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-age {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-age-badge {
            padding: 4px 12px;
            border-radius: var(--radius-full);
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(220, 38, 38, 0.4);
            font-weight: 800;
            color: #FCA5A5;
            font-size: 0.8rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .hero-right {
                max-width: 600px;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .commission-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .vip-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .security-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .settlement-grid {
                grid-template-columns: 1fr;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 3.5rem;
                --nav-height: 64px;
            }

            .nav-links {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-actions .btn-nav-outline {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .nav-actions .btn-nav-solid {
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            .hero-section {
                min-height: auto;
                padding: calc(var(--nav-height) + 30px) 0 60px;
            }

            .hero-title {
                font-size: 1.85rem;
                line-height: 1.25;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-stats-row {
                gap: 18px;
            }

            .hero-stat-value {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .commission-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .promo-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .cases-grid {
                grid-template-columns: 1fr;
            }

            .category-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .vip-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .security-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .news-item {
                flex-direction: column;
                gap: 12px;
            }

            .news-item-thumb {
                width: 100%;
                height: 160px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .cta-title {
                font-size: 1.6rem;
            }

            .cta-desc {
                font-size: 0.95rem;
            }

            .trust-bar-inner {
                gap: 14px 24px;
            }

            .fab-left {
                width: 48px;
                height: 48px;
                left: 12px;
                bottom: 80px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .nav-logo-text {
                font-size: 0.85rem;
                max-width: 160px;
            }

            .nav-logo-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.92rem;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 13px 24px;
                font-size: 0.92rem;
            }

            .hero-panel {
                padding: 18px;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .game-card-body {
                padding: 10px 12px;
            }

            .game-card-body h3 {
                font-size: 0.85rem;
            }

            .payment-methods {
                grid-template-columns: 1fr;
            }

            .vip-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .step-item {
                padding: 16px 18px;
                gap: 12px;
            }

            .step-number {
                min-width: 36px;
                height: 36px;
                font-size: 0.95rem;
            }

            .trust-bar-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .risk-notice {
                padding: 18px;
                font-size: 0.82rem;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-tertiary: #0D3523;
            --bg-card: rgba(11, 46, 30, 0.85);
            --bg-glass: rgba(5, 31, 20, 0.72);
            --gold-1: #F59E0B;
            --gold-2: #FCD34D;
            --gold-3: #FBBF24;
            --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
            --gold-gradient-btn: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #FCD34D 100%);
            --dragon-red: #DC2626;
            --text-white: #F8FAFC;
            --text-mint: #D1FAE5;
            --text-soft: #A7C4B5;
            --text-muted: #7A9E8D;
            --border-gold: rgba(245, 158, 11, 0.3);
            --border-subtle: rgba(245, 158, 11, 0.15);
            --shadow-gold: 0 6px 30px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --space-xs: 0.5rem;
            --space-sm: 0.875rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-section: 5.5rem;
            --font-main: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            --container-max: 1200px;
            --nav-height: 76px;
            --transition-fast: 0.2s ease;
            --transition-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-white);
            background-color: var(--bg-primary);
            background-image: radial-gradient(ellipse at 20% 0%, rgba(5, 31, 20, 0.98) 0%, rgba(5, 31, 20, 1) 60%, rgba(6, 24, 16, 1) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--gold-2);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-mid), box-shadow var(--transition-mid);
        }

        .site-header.scrolled {
            background: rgba(4, 24, 15, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border-bottom-color: var(--border-gold);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-white);
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-logo-text span {
            display: block;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            color: var(--gold-2);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 18px;
            margin: 0 auto;
        }

        .nav-links a {
            position: relative;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-soft);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 2px;
            height: 2px;
            background: var(--gold-gradient);
            border-radius: 999px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-nav-outline,
        .btn-nav-solid {
            font-weight: 700;
            font-size: 0.88rem;
            border-radius: var(--radius-sm);
            padding: 10px 18px;
            white-space: nowrap;
            transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
        }

        .btn-nav-outline {
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            background: transparent;
        }

        .btn-nav-outline:hover {
            border-color: var(--gold-2);
            box-shadow: var(--shadow-gold);
            transform: translateY(-1px);
        }

        .btn-nav-solid {
            background: var(--gold-gradient-btn);
            color: #051F14;
            box-shadow: var(--shadow-gold);
        }

        .btn-nav-solid:hover {
            box-shadow: 0 8px 28px rgba(245, 158, 11, 0.42);
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: rgba(5, 31, 20, 0.7);
            padding: 0 9px;
        }

        .nav-toggle span {
            display: block;
            height: 2px;
            width: 100%;
            background: var(--gold-2);
            border-radius: 999px;
            transition: transform var(--transition-fast), opacity var(--transition-fast);
        }

        .hero-casino {
            position: relative;
            padding: calc(var(--nav-height) + 52px) 0 64px;
            background: linear-gradient(135deg, rgba(5, 31, 20, 0.88) 0%, rgba(8, 43, 29, 0.92) 55%, rgba(10, 38, 24, 0.94) 100%);
            overflow: hidden;
        }

        .hero-casino::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/3eb058c20cf018f9.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }

        .hero-casino::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.13), transparent 35%),
                        linear-gradient(180deg, transparent 0%, rgba(5, 31, 20, 0.3) 100%);
            z-index: 0;
        }

        .hero-casino-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .hero-region-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid var(--border-gold);
            border-radius: 999px;
            padding: 8px 14px;
            color: var(--gold-2);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-casino h1 {
            font-family: var(--font-display);
            font-size: 2.65rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 18px;
            max-width: 720px;
        }

        .hero-casino h1 .highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-casino p {
            color: var(--text-soft);
            font-size: 1.02rem;
            line-height: 1.7;
            margin-bottom: 26px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-gradient-btn);
            color: #051F14;
            font-weight: 800;
            font-size: 0.98rem;
            border-radius: var(--radius-sm);
            padding: 14px 24px;
            box-shadow: var(--shadow-gold);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .btn-primary:hover {
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(209, 250, 229, 0.25);
            background: rgba(11, 46, 30, 0.6);
            color: var(--text-mint);
            font-weight: 700;
            font-size: 0.98rem;
            border-radius: var(--radius-sm);
            padding: 14px 22px;
            backdrop-filter: blur(8px);
            transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
        }

        .btn-secondary:hover {
            border-color: var(--border-gold);
            background: rgba(245, 158, 11, 0.08);
            transform: translateY(-2px);
        }

        .hero-local-panel {
            background: rgba(5, 31, 20, 0.7);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
        }

        .hero-local-panel h2 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 20px;
        }

        .local-entry-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .local-entry {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 12px 14px;
            transition: background var(--transition-fast), border-color var(--transition-fast);
        }

        .local-entry:hover {
            background: rgba(245, 158, 11, 0.08);
            border-color: var(--border-gold);
        }

        .local-entry-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
        }

        .local-entry-info strong {
            display: block;
            font-size: 0.92rem;
            color: var(--text-white);
            line-height: 1.35;
        }

        .local-entry-info span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .section {
            padding: var(--space-section) 0;
        }

        .section-alt {
            background: rgba(11, 46, 30, 0.55);
        }

        .section-header {
            max-width: 700px;
            margin-bottom: 32px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold-2);
            margin-bottom: 10px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2rem;
            line-height: 1.3;
            font-weight: 800;
            color: var(--text-white);
        }

        .section-desc {
            margin-top: 12px;
            color: var(--text-soft);
            line-height: 1.7;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 26px;
            transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-2);
            font-size: 1.3rem;
            margin-bottom: 18px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--text-soft);
            line-height: 1.65;
            font-size: 0.96rem;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .split-copy h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-white);
            margin-bottom: 16px;
        }

        .split-copy p {
            color: var(--text-soft);
            line-height: 1.7;
        }

        .split-copy ul {
            list-style: none;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .split-copy ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-mint);
            font-weight: 500;
        }

        .split-copy ul li::before {
            content: '✓';
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
        }

        .split-media {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            min-height: 380px;
        }

        .split-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .split-media:hover img {
            transform: scale(1.04);
        }

        .scene-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .scene-item {
            background: rgba(5, 31, 20, 0.72);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }

        .scene-item:hover {
            border-color: var(--border-gold);
            background: rgba(245, 158, 11, 0.06);
        }

        .scene-item strong {
            display: block;
            color: var(--text-mint);
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .scene-item p {
            color: var(--text-soft);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .step {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 22px;
            transition: transform var(--transition-fast), border-color var(--transition-fast);
        }

        .step:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
        }

        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 14px;
        }

        .step h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .step p {
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .info-list-section {
            background: rgba(11, 46, 30, 0.62);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 30px;
        }

        .info-list-section h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 18px;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(245, 158, 11, 0.1);
        }

        .info-item:last-child {
            border-bottom: 0;
        }

        .info-item-icon {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: var(--radius-sm);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-2);
            font-weight: 800;
        }

        .info-item strong {
            color: var(--text-mint);
            font-weight: 700;
        }

        .info-item p {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin-top: 4px;
        }

        .post-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .post-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
            display: flex;
            flex-direction: column;
        }

        .post-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card);
        }

        .post-card-media {
            height: 200px;
            overflow: hidden;
        }

        .post-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .post-card:hover .post-card-media img {
            transform: scale(1.07);
        }

        .post-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .post-card-tag {
            display: inline-block;
            align-self: flex-start;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--border-gold);
            border-radius: 999px;
            padding: 4px 10px;
            margin-bottom: 12px;
        }

        .post-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text-white);
            margin-bottom: 10px;
        }

        .post-card p {
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .post-card-link {
            margin-top: auto;
            color: var(--gold-2);
            font-weight: 700;
            font-size: 0.88rem;
        }

        .cta-panel {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(5, 31, 20, 0.92));
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .cta-panel h2 {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-white);
            max-width: 560px;
            line-height: 1.3;
        }

        .cta-panel p {
            color: var(--text-soft);
            max-width: 620px;
            margin-top: 10px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .site-footer {
            background: #051F14;
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 28px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-white);
            line-height: 1.2;
        }

        .footer-logo-text span {
            display: block;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            color: var(--gold-2);
            text-transform: uppercase;
        }

        .footer-brand-desc {
            color: var(--text-soft);
            font-size: 0.92rem;
            line-height: 1.7;
            max-width: 360px;
            margin-bottom: 18px;
        }

        .footer-license {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            color: var(--text-soft);
            font-size: 0.82rem;
        }

        .footer-license-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(220, 38, 38, 0.18);
            border: 1px solid rgba(220, 38, 38, 0.55);
            color: #ff6b6b;
            font-weight: 800;
            font-size: 0.9rem;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            color: var(--text-white);
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--text-soft);
            font-size: 0.9rem;
            transition: color var(--transition-fast), padding-left var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--gold-2);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.14);
            padding-top: 22px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .empty-updates {
            background: rgba(255, 255, 255, 0.03);
            border: 1px dashed rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-md);
            padding: 28px;
            text-align: center;
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .hero-casino-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hero-casino h1 {
                font-size: 2.2rem;
            }

            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .post-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 3.25rem;
                --nav-height: 64px;
            }

            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: rgba(4, 24, 15, 0.98);
                backdrop-filter: blur(18px);
                padding: 18px 24px;
                gap: 8px;
                border-bottom: 1px solid var(--border-gold);
                transform: translateY(-110%);
                transition: transform var(--transition-mid);
                z-index: 999;
            }

            .nav-links.open {
                transform: translateY(0);
            }

            .nav-toggle {
                display: flex;
            }

            .nav-actions {
                gap: 6px;
            }

            .btn-nav-outline,
            .btn-nav-solid {
                padding: 8px 12px;
                font-size: 0.82rem;
            }

            .hero-casino {
                padding-top: calc(var(--nav-height) + 36px);
            }

            .hero-casino h1 {
                font-size: 1.9rem;
            }

            .section-title,
            .split-copy h2,
            .info-list-section h2,
            .cta-panel h2 {
                font-size: 1.65rem;
            }

            .feature-grid,
            .scene-grid,
            .post-list,
            .split-layout {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .split-media {
                min-height: 260px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .nav-logo-text {
                font-size: 0.92rem;
            }

            .nav-logo-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .hero-casino {
                padding-top: calc(var(--nav-height) + 28px);
            }

            .hero-casino h1 {
                font-size: 1.6rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
            }

            .section-title,
            .split-copy h2,
            .info-list-section h2,
            .cta-panel h2 {
                font-size: 1.45rem;
            }

            .feature-grid,
            .steps,
            .post-list,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-panel {
                padding: 26px 20px;
            }

            .post-card-media {
                height: 180px;
            }
        }

/* roulang page: article */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-tertiary: #0D3523;
            --bg-card: rgba(11, 46, 30, 0.85);
            --bg-glass: rgba(5, 31, 20, 0.72);
            --gold-1: #F59E0B;
            --gold-2: #FCD34D;
            --gold-3: #FBBF24;
            --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
            --gold-gradient-btn: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #FCD34D 100%);
            --dragon-red: #DC2626;
            --text-white: #F8FAFC;
            --text-mint: #D1FAE5;
            --text-soft: #A7C4B5;
            --text-muted: #7A9E8D;
            --border-gold: rgba(245, 158, 11, 0.3);
            --border-subtle: rgba(245, 158, 11, 0.15);
            --shadow-gold: 0 6px 30px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --space-xs: 0.5rem;
            --space-sm: 0.875rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-section: 5.5rem;
            --font-main: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            --container-max: 1200px;
            --nav-height: 76px;
            --transition-fast: 0.2s ease;
            --transition-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s 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%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-white);
            background-color: var(--bg-primary);
            background-image: radial-gradient(ellipse at 20% 0%, rgba(5, 31, 20, 0.98) 0%, rgba(5, 31, 20, 1) 60%, rgba(6, 24, 16, 1) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--gold-2);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-mid), box-shadow var(--transition-mid);
        }

        .site-header.scrolled {
            background: rgba(4, 24, 15, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border-bottom-color: var(--border-gold);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .nav-logo-text span {
            font-size: 0.62rem;
            font-weight: 500;
            color: var(--gold-2);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 26px;
            flex-shrink: 1;
            min-width: 0;
        }

        .nav-links a {
            font-size: 0.89rem;
            font-weight: 500;
            color: var(--text-soft);
            padding: 6px 2px;
            position: relative;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            border-radius: var(--radius-full);
            transition: width var(--transition-mid);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-2);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-nav-outline {
            font-size: 0.84rem;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            border: 1px solid var(--gold-1);
            color: var(--gold-2);
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-nav-outline:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-2);
            color: var(--gold-2);
            box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
        }

        .btn-nav-solid {
            font-size: 0.84rem;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            color: #051F14;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
        }

        .btn-nav-solid:hover {
            box-shadow: 0 4px 22px rgba(245, 158, 11, 0.5);
            transform: translateY(-1px);
            color: #051F14;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast);
        }

        .nav-toggle:hover,
        .nav-toggle:focus-visible {
            background: rgba(245, 158, 11, 0.1);
            outline: 2px solid var(--gold-1);
            outline-offset: 2px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold-2);
            border-radius: 4px;
            transition: all var(--transition-mid);
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ========== ARTICLE HERO ========== */
        .article-hero {
            padding: calc(var(--nav-height) + 3.5rem) 0 3rem;
            position: relative;
            background-image: linear-gradient(to bottom, rgba(5, 31, 20, 0.75) 0%, rgba(5, 31, 20, 0.92) 100%), url('/assets/images/d9d0677a23bf47bf.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-bottom: 1px solid var(--border-subtle);
        }

        .article-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
            pointer-events: none;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .breadcrumb a:hover {
            color: var(--gold-2);
        }

        .breadcrumb .sep {
            color: var(--gold-1);
        }

        .breadcrumb .current {
            color: var(--gold-2);
            font-weight: 600;
        }

        .article-hero-inner {
            max-width: 820px;
        }

        .article-category-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .article-hero h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-white);
            margin-bottom: 1.25rem;
        }

        .article-hero .article-excerpt {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-mint);
            margin-bottom: 1.5rem;
            opacity: 0.88;
        }

        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding-top: 1rem;
            border-top: 1px solid var(--border-subtle);
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .article-meta-item i {
            color: var(--gold-1);
            font-size: 0.9rem;
        }

        /* ========== ARTICLE LAYOUT ========== */
        .article-layout {
            padding: 3rem 0 0;
        }

        .article-layout-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 3rem;
            align-items: start;
        }

        .article-main {
            min-width: 0;
        }

        .article-body {
            font-size: 1.02rem;
            line-height: 1.75;
            color: var(--text-soft);
        }

        .article-body h2 {
            font-family: var(--font-display);
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 2.25rem 0 1rem;
            line-height: 1.4;
        }

        .article-body h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-white);
            margin: 1.75rem 0 0.85rem;
            line-height: 1.4;
        }

        .article-body p {
            margin-bottom: 1.15rem;
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 1.25rem 1.5rem;
            padding-left: 0;
        }

        .article-body li {
            margin-bottom: 0.5rem;
        }

        .article-body ul li::marker {
            color: var(--gold-1);
        }

        .article-body strong {
            color: var(--text-white);
            font-weight: 600;
        }

        .article-body blockquote {
            margin: 1.5rem 0;
            padding: 1.25rem 1.5rem;
            background: rgba(245, 158, 11, 0.07);
            border-left: 3px solid var(--gold-1);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            color: var(--text-mint);
            font-style: italic;
        }

        .article-body img {
            border-radius: var(--radius-md);
            margin: 1.5rem 0;
            box-shadow: var(--shadow-card);
        }

        .article-body a {
            color: var(--gold-2);
            border-bottom: 1px dashed rgba(245, 158, 11, 0.4);
        }

        .article-body a:hover {
            color: var(--gold-3);
            border-bottom-color: var(--gold-3);
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .article-body th,
        .article-body td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }

        .article-body th {
            background: var(--bg-tertiary);
            color: var(--gold-2);
            font-weight: 600;
        }

        .article-body tr:hover td {
            background: rgba(245, 158, 11, 0.04);
        }

        .article-not-found {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
        }

        .article-not-found i {
            font-size: 2.8rem;
            color: var(--gold-1);
            margin-bottom: 1rem;
            display: block;
        }

        .article-not-found h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            color: var(--text-white);
            margin-bottom: 0.75rem;
        }

        .article-not-found p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        /* ========== SIDEBAR ========== */
        .article-sidebar {
            position: sticky;
            top: calc(var(--nav-height) + 24px);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sidebar-widget {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
        }

        .sidebar-widget h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-widget h3 i {
            color: var(--gold-1);
            font-size: 1rem;
        }

        .sidebar-promo {
            background: var(--gold-gradient);
            border-radius: var(--radius-lg);
            padding: 1.75rem 1.5rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            text-align: center;
        }

        .sidebar-promo .promo-badge {
            display: inline-block;
            background: rgba(5, 31, 20, 0.85);
            color: var(--gold-2);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 4px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 0.85rem;
        }

        .sidebar-promo h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .sidebar-promo p {
            font-size: 0.88rem;
            font-weight: 500;
            opacity: 0.85;
            margin-bottom: 1.1rem;
        }

        .sidebar-cta {
            display: inline-block;
            background: #051F14;
            color: var(--gold-2);
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 22px;
            border-radius: var(--radius-full);
            transition: all var(--transition-fast);
        }

        .sidebar-cta:hover {
            color: var(--gold-2);
            box-shadow: 0 4px 18px rgba(5, 31, 20, 0.35);
            transform: translateY(-1px);
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--text-soft);
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list li i {
            color: var(--gold-1);
            font-size: 0.82rem;
            flex-shrink: 0;
        }

        /* ========== SECTION GENERAL ========== */
        .section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-alt {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-heading {
            max-width: 650px;
            margin-bottom: 2.25rem;
        }

        .section-heading h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.35;
            color: var(--text-white);
            margin-bottom: 0.75rem;
        }

        .section-heading p {
            font-size: 0.98rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold-2);
            margin-bottom: 0.85rem;
        }

        .section-tag::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--gold-1);
            border-radius: 2px;
        }

        /* ========== KEY TAKEAWAYS ========== */
        .takeaway-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .takeaway-item {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md);
            padding: 1.25rem 1.4rem;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: all var(--transition-fast);
        }

        .takeaway-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            border-color: var(--gold-1);
        }

        .takeaway-item .takeaway-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold-2);
            font-size: 1rem;
        }

        .takeaway-item .takeaway-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.3rem;
        }

        .takeaway-item .takeaway-text p {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ========== RELATED GAMES ========== */
        .related-games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .game-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-mid);
            cursor: pointer;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
        }

        .game-card .game-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }

        .game-card .game-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-mid);
        }

        .game-card:hover .game-thumb img {
            transform: scale(1.06);
        }

        .game-card .game-corner-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--dragon-red);
            color: #fff;
            font-size: 0.62rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
        }

        .game-card .game-body {
            padding: 1rem 1.1rem 1.15rem;
        }

        .game-card .game-body h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.35rem;
        }

        .game-card .game-body p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .game-card .game-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border-subtle);
        }

        .game-card .game-rating {
            color: var(--gold-1);
            font-size: 0.75rem;
        }

        .game-card .game-play {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gold-2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== TRUST & SECURITY ========== */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .trust-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 1.5rem 1.25rem;
            text-align: center;
            transition: all var(--transition-fast);
        }

        .trust-item:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card);
        }

        .trust-item .trust-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.85rem;
            color: var(--gold-2);
            font-size: 1.3rem;
            border: 1px solid var(--border-gold);
        }

        .trust-item h4 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.4rem;
        }

        .trust-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 750px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 0.85rem;
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item.open {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 1.1rem 1.4rem;
            cursor: pointer;
            transition: background var(--transition-fast);
            background: transparent;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            background: rgba(245, 158, 11, 0.05);
        }

        .faq-question h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-white);
            line-height: 1.5;
        }

        .faq-question .faq-toggle-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid var(--gold-1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold-2);
            font-size: 0.7rem;
            transition: all var(--transition-fast);
        }

        .faq-item.open .faq-toggle-icon {
            background: var(--gold-1);
            color: #051F14;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-mid);
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 1.4rem 1.25rem;
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.7;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: var(--space-section) 0;
            text-align: center;
        }

        .cta-panel {
            background-image: linear-gradient(to bottom, rgba(5, 31, 20, 0.8) 0%, rgba(5, 31, 20, 0.95) 100%), url('/assets/images/c9d2e2108bf69b37.jpg');
            background-size: cover;
            background-position: center;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 3.5rem 2.5rem;
            box-shadow: var(--shadow-gold);
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-panel h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.85rem;
            position: relative;
        }

        .cta-panel p {
            font-size: 1rem;
            color: var(--text-mint);
            max-width: 550px;
            margin: 0 auto 1.75rem;
            line-height: 1.7;
            position: relative;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-primary {
            font-size: 0.95rem;
            font-weight: 700;
            padding: 13px 32px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            color: #051F14;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            transition: all var(--transition-fast);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(245, 158, 11, 0.55);
            transform: translateY(-2px);
            color: #051F14;
        }

        .btn-secondary {
            font-size: 0.95rem;
            font-weight: 600;
            padding: 13px 28px;
            border-radius: var(--radius-full);
            border: 1px solid var(--gold-1);
            color: var(--gold-2);
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: var(--gold-2);
            color: var(--gold-2);
            box-shadow: 0 0 18px rgba(245, 158, 11, 0.3);
        }

        .cta-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            font-size: 0.78rem;
            color: var(--text-muted);
            position: relative;
        }

        .cta-trust span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cta-trust i {
            color: var(--gold-1);
            font-size: 0.82rem;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #04190F;
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 0 0;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.1rem;
        }

        .footer-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #051F14;
            flex-shrink: 0;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-white);
            line-height: 1.2;
        }

        .footer-logo-text span {
            font-size: 0.58rem;
            font-weight: 500;
            color: var(--gold-2);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-brand-desc {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1rem;
            max-width: 320px;
        }

        .footer-license {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.75rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .footer-license-badge {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid var(--dragon-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--dragon-red);
            flex-shrink: 0;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1.1rem;
            font-family: var(--font-display);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .footer-links a {
            font-size: 0.84rem;
            color: var(--text-muted);
            transition: color var(--transition-fast), padding-left var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--gold-2);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding: 1.5rem 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-copy {
            line-height: 1.6;
        }

        .footer-note {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--text-soft);
        }

        .footer-note i {
            color: var(--gold-1);
        }

        /* ========== FAB ========== */
        .fab-support {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #FCD34D 0%, #D97706 60%, #B45309 100%);
            border: 2px solid var(--gold-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #051F14;
            font-size: 1.3rem;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            transition: all var(--transition-fast);
            cursor: pointer;
            opacity: 0.8;
            animation: fabBreathe 3s ease-in-out infinite;
        }

        .fab-support:hover {
            scale: 1.1;
            opacity: 1;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
        }

        .fab-support:active {
            scale: 0.95;
            transform: translateY(2px);
        }

        .fab-support .fab-notification {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes fabBreathe {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            :root {
                --space-section: 4rem;
                --nav-height: 64px;
            }
            .article-hero h1 {
                font-size: 2.1rem;
            }
            .article-layout-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .article-sidebar {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .sidebar-widget,
            .sidebar-promo {
                flex: 1 1 280px;
            }
            .related-games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-section: 3rem;
                --nav-height: 60px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: rgba(4, 24, 15, 0.98);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
                border-bottom: 1px solid var(--border-gold);
                padding: 12px 0;
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 12px 24px;
                width: 100%;
                font-size: 0.95rem;
                border-bottom: 1px solid var(--border-subtle);
            }
            .nav-links a::after {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-actions .btn-nav-outline,
            .nav-actions .btn-nav-solid {
                display: none;
            }
            .article-hero {
                padding-top: calc(var(--nav-height) + 2rem);
            }
            .article-hero h1 {
                font-size: 1.7rem;
            }
            .article-hero .article-excerpt {
                font-size: 0.95rem;
            }
            .article-meta {
                gap: 12px;
                font-size: 0.78rem;
            }
            .related-games-grid {
                grid-template-columns: 1fr;
            }
            .section-heading h2 {
                font-size: 1.45rem;
            }
            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.85rem;
            }
            .trust-item {
                padding: 1.1rem 0.85rem;
            }
            .cta-panel {
                padding: 2.5rem 1.5rem;
            }
            .cta-panel h2 {
                font-size: 1.5rem;
            }
            .cta-actions {
                flex-direction: column;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .fab-support {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                left: 0.75rem;
                bottom: 5rem;
            }
            .article-body {
                font-size: 0.95rem;
            }
            .article-body h2 {
                font-size: 1.35rem;
            }
            .sidebar-widget,
            .sidebar-promo {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .article-hero h1 {
                font-size: 1.4rem;
            }
            .article-hero {
                padding-top: calc(var(--nav-height) + 1.5rem);
                padding-bottom: 2rem;
            }
            .breadcrumb {
                font-size: 0.74rem;
                gap: 5px;
            }
            .article-category-tag {
                font-size: 0.68rem;
                padding: 4px 12px;
            }
            .section {
                padding: 2.5rem 0;
            }
            .takeaway-grid {
                grid-template-columns: 1fr;
            }
            .trust-grid {
                grid-template-columns: 1fr;
            }
            .cta-panel h2 {
                font-size: 1.25rem;
            }
            .cta-panel p {
                font-size: 0.88rem;
            }
            .nav-logo-text {
                font-size: 0.95rem;
            }
            .nav-logo-text span {
                font-size: 0.5rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
        }

.article-hero {
            transition: opacity 0.6s ease;
            opacity: 0.85;
        }
        .article-hero.hero-loaded {
            opacity: 1;
        }

/* roulang page: category2 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-tertiary: #0D3523;
            --bg-card: rgba(11, 46, 30, 0.85);
            --bg-glass: rgba(5, 31, 20, 0.72);
            --gold-1: #F59E0B;
            --gold-2: #FCD34D;
            --gold-3: #FBBF24;
            --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
            --gold-gradient-btn: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #FCD34D 100%);
            --dragon-red: #DC2626;
            --text-white: #F8FAFC;
            --text-mint: #D1FAE5;
            --text-soft: #A7C4B5;
            --text-muted: #7A9E8D;
            --border-gold: rgba(245, 158, 11, 0.3);
            --border-subtle: rgba(245, 158, 11, 0.15);
            --shadow-gold: 0 6px 30px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --space-xs: 0.5rem;
            --space-sm: 0.875rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-section: 5.5rem;
            --font-main: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            --container-max: 1200px;
            --nav-height: 76px;
            --transition-fast: 0.2s ease;
            --transition-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-white);
            background-color: var(--bg-primary);
            background-image: radial-gradient(ellipse at 20% 0%, rgba(5, 31, 20, 0.98) 0%, rgba(5, 31, 20, 1) 60%, rgba(6, 24, 16, 1) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--gold-2);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-mid), box-shadow var(--transition-mid);
        }
        .site-header.scrolled {
            background: rgba(4, 24, 15, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border-bottom-color: var(--border-gold);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
        }
        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-white);
            line-height: 1.2;
            display: flex;
            flex-direction: column;
        }
        .nav-logo-text span {
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: auto;
            margin-right: 20px;
        }
        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-soft);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .nav-links a:hover {
            color: var(--gold-2);
        }
        .nav-links a.active {
            color: var(--gold-2);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-nav-outline {
            padding: 8px 18px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            font-size: 0.85rem;
            font-weight: 600;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-nav-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            border-color: var(--gold-2);
            color: var(--gold-2);
        }
        .btn-nav-solid {
            padding: 8px 20px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            color: #051F14;
            font-size: 0.85rem;
            font-weight: 700;
            transition: all var(--transition-fast);
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
        }
        .btn-nav-solid:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
            color: #051F14;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-white);
            border-radius: 2px;
            transition: all var(--transition-mid);
        }
        .nav-toggle:hover {
            background: rgba(245, 158, 11, 0.1);
        }

        /* ===== HERO ===== */
        .hero-category {
            padding-top: calc(var(--nav-height) + 3.5rem);
            padding-bottom: 4rem;
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }
        .hero-category-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/d9d0677a23bf47bf.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }
        .hero-category-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(5,31,20,0.85) 0%, rgba(5,31,20,0.6) 50%, rgba(5,31,20,0.95) 100%);
        }
        .hero-category .container {
            z-index: 1;
            position: relative;
        }
        .hero-category-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 1.5rem;
        }
        .hero-tag i {
            font-size: 0.75rem;
        }
        .hero-category h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.15;
            color: var(--text-white);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .hero-category h1 .highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-category p.hero-sub {
            font-size: 1.1rem;
            color: var(--text-soft);
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: 2rem;
        }
        .hero-feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 2rem;
            list-style: none;
        }
        .hero-feature-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(11, 46, 30, 0.6);
            border-radius: var(--radius-full);
            border: 1px solid var(--border-subtle);
            font-size: 0.85rem;
            color: var(--text-mint);
            font-weight: 500;
        }
        .hero-feature-list li i {
            color: var(--gold-1);
            font-size: 0.8rem;
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .btn-primary {
            padding: 14px 32px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            color: #051F14;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-mid);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 36px rgba(245, 158, 11, 0.45);
            color: #051F14;
        }
        .btn-secondary {
            padding: 14px 28px;
            border-radius: var(--radius-full);
            background: transparent;
            border: 1px solid var(--border-gold);
            color: var(--gold-2);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all var(--transition-mid);
        }
        .btn-secondary:hover {
            background: rgba(245, 158, 11, 0.1);
            border-color: var(--gold-2);
            color: var(--gold-2);
            transform: translateY(-1px);
        }
        .hero-trust-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .trust-item i {
            color: var(--gold-1);
            font-size: 0.9rem;
        }
        .hero-visual-card {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .hero-visual-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 20%;
            width: 60%;
            height: 2px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }
        .hero-visual-card img {
            border-radius: var(--radius-md);
            margin-bottom: 1.25rem;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .hero-stat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .hero-stat-item {
            text-align: center;
            padding: 12px;
            background: rgba(5, 31, 20, 0.6);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
        }
        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gold-2);
            display: block;
        }
        .hero-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        /* ===== SECTION GENERAL ===== */
        .section {
            padding: var(--space-section) 0;
            position: relative;
            z-index: 1;
        }
        .section-alt {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .section-header {
            margin-bottom: 3rem;
            max-width: 640px;
        }
        .section-header h2 {
            font-family: var(--font-display);
            font-size: 2.1rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-white);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-soft);
            line-height: 1.65;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gold-1);
            margin-bottom: 0.75rem;
        }

        /* ===== SPORTS GRID ===== */
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .sport-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            transition: all var(--transition-mid);
            position: relative;
            overflow: hidden;
        }
        .sport-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }
        .sport-card-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: var(--gold-1);
            border: 1px solid var(--border-subtle);
        }
        .sport-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }
        .sport-card p {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.6;
        }

        /* ===== FEATURES ASYMMETRIC ===== */
        .feature-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        .feature-panel:last-child {
            margin-bottom: 0;
        }
        .feature-panel.reverse {
            direction: rtl;
        }
        .feature-panel.reverse > * {
            direction: ltr;
        }
        .feature-content h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .feature-content p {
            color: var(--text-soft);
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }
        .feature-list-mini {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .feature-list-mini li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-mint);
        }
        .feature-list-mini li i {
            color: var(--gold-1);
            margin-top: 4px;
            flex-shrink: 0;
        }
        .feature-image-wrap {
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            position: relative;
        }
        .feature-image-wrap img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .feature-image-wrap:hover img {
            transform: scale(1.03);
        }
        .feature-image-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ===== STEPS / PROCESS ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            position: relative;
            transition: all var(--transition-mid);
        }
        .step-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card);
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #051F14;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .step-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }
        .step-card p {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.6;
        }

        /* ===== CMS LIST ===== */
        .cms-list-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .cms-list-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cms-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-mid);
            display: flex;
            flex-direction: column;
        }
        .cms-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        .cms-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-subtle);
        }
        .cms-card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .cms-card-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid var(--border-subtle);
            color: var(--gold-2);
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            align-self: flex-start;
        }
        .cms-card-title {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }
        .cms-card-title a:hover {
            color: var(--gold-2);
        }
        .cms-card-excerpt {
            font-size: 0.82rem;
            color: var(--text-soft);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 0.75rem;
        }
        .cms-card-meta {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cms-card-meta i {
            font-size: 0.7rem;
            color: var(--gold-1);
        }
        .cms-empty {
            padding: 3rem;
            text-align: center;
            background: var(--bg-card);
            border: 1px dashed var(--border-gold);
            border-radius: var(--radius-lg);
            color: var(--text-muted);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 0.5rem;
            right: 1.25rem;
            font-size: 3.5rem;
            color: rgba(245, 158, 11, 0.2);
            font-family: serif;
            line-height: 1;
        }
        .testimonial-stars {
            color: var(--gold-1);
            font-size: 0.8rem;
            margin-bottom: 0.75rem;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.65;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimonial-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #051F14;
        }
        .testimonial-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-white);
        }
        .testimonial-role {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-gold);
        }
        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-white);
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--gold-2);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--gold-2);
            transition: all var(--transition-mid);
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            background: var(--gold-gradient);
            color: #051F14;
            border-color: transparent;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-mid), padding var(--transition-mid);
            padding: 0 1.5rem;
            color: var(--text-soft);
            font-size: 0.88rem;
            line-height: 1.65;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 1.5rem 1.25rem;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(5, 31, 20, 0.9) 40%, rgba(11, 46, 30, 0.95) 100%);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-banner-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .cta-banner-text h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }
        .cta-banner-text p {
            color: var(--text-mint);
            font-size: 0.95rem;
        }
        .cta-banner .btn-primary {
            flex-shrink: 0;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #041A10;
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 0 2rem;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }
        .footer-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            flex-shrink: 0;
        }
        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-white);
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .footer-logo-text span {
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.65;
            margin-bottom: 1rem;
        }
        .footer-license {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-license-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            background: var(--dragon-red);
            color: #fff;
            font-weight: 800;
            font-size: 0.7rem;
        }
        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1rem;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            font-size: 0.82rem;
            color: var(--text-soft);
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--gold-2);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-links-bottom {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-links-bottom a {
            font-size: 0.75rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-links-bottom a:hover {
            color: var(--gold-2);
        }

        /* ===== FAB ===== */
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #0B2E1E 0%, #051F14 60%);
            border: 2px solid var(--gold-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--gold-2);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            transition: all var(--transition-mid);
            animation: fab-breathe 3s ease-in-out infinite;
        }
        .fab-left:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
            animation: none;
        }
        .fab-left:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-left .fab-notification {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border-radius: 50%;
            border: 2px solid #fff;
        }
        @keyframes fab-breathe {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-category-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero-category h1 {
                font-size: 2.4rem;
            }
            .sports-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cms-list-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            :root {
                --space-section: 3.5rem;
                --nav-height: 64px;
            }
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 16px 24px;
                border-bottom: 1px solid var(--border-gold);
                transform: translateY(-120%);
                transition: transform var(--transition-mid);
                z-index: 999;
                margin: 0;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                padding: 14px 0;
                font-size: 1rem;
                width: 100%;
                border-bottom: 1px solid var(--border-subtle);
            }
            .nav-links a.active::after {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .btn-nav-outline,
            .btn-nav-solid {
                padding: 7px 14px;
                font-size: 0.75rem;
            }
            .hero-category {
                padding-top: calc(var(--nav-height) + 2rem);
                min-height: auto;
                padding-bottom: 2.5rem;
            }
            .hero-category h1 {
                font-size: 1.9rem;
            }
            .hero-feature-list li {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            .sports-grid {
                grid-template-columns: 1fr;
            }
            .feature-panel {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feature-panel.reverse {
                direction: ltr;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .cms-list-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .cta-banner {
                padding: 2rem 1.5rem;
            }
            .cta-banner-inner {
                flex-direction: column;
                text-align: center;
            }
            .cta-banner-text h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .fab-left {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
                left: 12px;
                bottom: 80px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .hero-category h1 {
                font-size: 1.6rem;
            }
            .hero-category p.hero-sub {
                font-size: 0.95rem;
            }
            .hero-cta-row {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary,
            .btn-secondary {
                justify-content: center;
                text-align: center;
            }
            .hero-stat-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .hero-stat-value {
                font-size: 1rem;
            }
            .hero-visual-card {
                padding: 1.25rem;
            }
            .nav-logo-text {
                font-size: 0.9rem;
            }
            .nav-logo-text span {
                display: none;
            }
            .btn-nav-outline {
                padding: 6px 10px;
                font-size: 0.7rem;
            }
            .btn-nav-solid {
                padding: 6px 12px;
                font-size: 0.7rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #051F14;
            --bg-secondary: #0B2E1E;
            --bg-tertiary: #0D3523;
            --bg-card: rgba(11, 46, 30, 0.85);
            --bg-glass: rgba(5, 31, 20, 0.72);
            --gold-1: #F59E0B;
            --gold-2: #FCD34D;
            --gold-3: #FBBF24;
            --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FBBF24 100%);
            --gold-gradient-btn: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #FCD34D 100%);
            --dragon-red: #DC2626;
            --text-white: #F8FAFC;
            --text-mint: #D1FAE5;
            --text-soft: #A7C4B5;
            --text-muted: #7A9E8D;
            --border-gold: rgba(245, 158, 11, 0.3);
            --border-subtle: rgba(245, 158, 11, 0.15);
            --shadow-gold: 0 6px 30px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --space-xs: 0.5rem;
            --space-sm: 0.875rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-section: 5.5rem;
            --font-main: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            --container-max: 1200px;
            --nav-height: 76px;
            --transition-fast: 0.2s ease;
            --transition-mid: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-white);
            background-color: var(--bg-primary);
            background-image: radial-gradient(ellipse at 20% 0%, rgba(5, 31, 20, 0.98) 0%, rgba(5, 31, 20, 1) 60%, rgba(6, 24, 16, 1) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--gold-2);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(5, 31, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-mid), box-shadow var(--transition-mid);
        }

        .site-header.scrolled {
            background: rgba(4, 24, 15, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border-bottom-color: var(--border-gold);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
            font-family: var(--font-display);
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.2;
        }

        .nav-logo-text span {
            display: block;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--gold-2);
            letter-spacing: 0.02em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 1;
            min-width: 0;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-soft);
            padding: 10px 14px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
        }

        .nav-links a.active {
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.12);
            font-weight: 600;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-nav-outline {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold-2);
            padding: 10px 18px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-gold);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-nav-outline:hover {
            background: rgba(245, 158, 11, 0.1);
            border-color: var(--gold-2);
        }

        .btn-nav-solid {
            font-size: 0.85rem;
            font-weight: 700;
            color: #051F14;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-nav-solid:hover {
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
            transform: translateY(-1px);
            color: #051F14;
        }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: transparent;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: border-color var(--transition-fast);
        }

        .nav-toggle:hover {
            border-color: var(--border-gold);
        }

        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-white);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        /* Mobile nav */
        @media (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(5, 31, 20, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 24px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-gold);
                transform: translateY(-120%);
                opacity: 0;
                transition: transform var(--transition-mid), opacity var(--transition-mid);
                z-index: 999;
            }

            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
            }

            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                font-size: 0.95rem;
            }

            .nav-toggle {
                display: flex;
            }
        }

        @media (max-width: 520px) {
            .nav-logo-text {
                font-size: 0.9rem;
            }
            .nav-logo-text span {
                font-size: 0.6rem;
            }
            .btn-nav-outline {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .btn-nav-solid {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
        }

        /* ========== HERO ========== */
        .hero-promo {
            padding-top: calc(var(--nav-height) + 60px);
            padding-bottom: var(--space-xl);
            position: relative;
            z-index: 1;
        }

        .hero-promo-grid {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .hero-promo-left {
            flex: 1.1;
            min-width: 0;
        }

        .hero-promo-right {
            flex: 0.9;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-full);
            padding: 8px 18px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-badge i {
            font-size: 0.85rem;
        }

        .hero-promo-left h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
            color: var(--text-white);
        }

        .hero-promo-left h1 .highlight {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-promo-left p.lead {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-soft);
            margin-bottom: 28px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-primary-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 700;
            color: #051F14;
            padding: 14px 30px;
            border-radius: var(--radius-full);
            background: var(--gold-gradient-btn);
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-mid);
            border: none;
        }

        .btn-primary-gold:hover {
            box-shadow: 0 8px 36px rgba(245, 158, 11, 0.5);
            transform: translateY(-2px);
            color: #051F14;
        }

        .btn-primary-gold:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-white);
            padding: 14px 28px;
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all var(--transition-fast);
        }

        .btn-outline-light:hover {
            border-color: var(--gold-2);
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.05);
        }

        .hero-card-stack {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .hero-card-main {
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
        }

        .hero-card-main .card-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold-2);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hero-card-main .card-value {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .hero-card-main .card-desc {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.55;
        }

        .hero-card-side {
            background: var(--bg-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
            transition: border-color var(--transition-fast);
        }

        .hero-card-side:hover {
            border-color: var(--border-gold);
        }

        .hero-card-side .side-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--gold-2);
            flex-shrink: 0;
        }

        .hero-card-side .side-info h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 2px;
        }

        .hero-card-side .side-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0;
        }

        @media (max-width: 900px) {
            .hero-promo-grid {
                flex-direction: column;
                gap: 32px;
            }
            .hero-promo-left, .hero-promo-right {
                flex: unset;
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .hero-promo {
                padding-top: calc(var(--nav-height) + 32px);
                padding-bottom: var(--space-lg);
            }
            .hero-card-main .card-value {
                font-size: 1.9rem;
            }
        }

        /* ========== SECTION BASICS ========== */
        section {
            padding: var(--space-section) 0;
            position: relative;
            z-index: 1;
        }

        .section-alt {
            background: rgba(11, 46, 30, 0.35);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-header {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }

        .section-header .section-tag {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold-2);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-white);
            max-width: 700px;
        }

        .section-header p {
            font-size: 1rem;
            line-height: 1.65;
            color: var(--text-soft);
            max-width: 620px;
        }

        /* ========== FEATURE ROW ========== */
        .feature-row {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .feature-row.reverse {
            flex-direction: row-reverse;
        }

        .feature-text {
            flex: 1.1;
            min-width: 0;
        }

        .feature-image {
            flex: 0.9;
            min-width: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
        }

        .feature-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .feature-text h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .feature-text p {
            font-size: 1rem;
            line-height: 1.65;
            color: var(--text-soft);
            margin-bottom: 16px;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-soft);
            line-height: 1.55;
        }

        .feature-list li i {
            color: var(--gold-2);
            font-size: 1rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        @media (max-width: 900px) {
            .feature-row, .feature-row.reverse {
                flex-direction: column;
                gap: 24px;
            }
            .feature-image img {
                height: 200px;
            }
        }

        /* ========== PROMO CARDS ========== */
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .promo-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all var(--transition-mid);
            position: relative;
            overflow: hidden;
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .promo-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }

        .promo-card:hover::before {
            opacity: 1;
        }

        .promo-card .promo-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--gold-2);
            margin-bottom: 16px;
        }

        .promo-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .promo-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-soft);
            margin: 0;
        }

        .promo-card .promo-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            color: #DC2626;
            background: rgba(220, 38, 38, 0.12);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: var(--radius-full);
            padding: 4px 12px;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        @media (max-width: 900px) {
            .promo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 620px) {
            .promo-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== STEPS ========== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
            position: relative;
        }

        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.15rem;
            color: #051F14;
            box-shadow: 0 3px 14px rgba(245, 158, 11, 0.3);
            flex-shrink: 0;
        }

        .step-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 0;
        }

        .step-item p {
            font-size: 0.88rem;
            line-height: 1.55;
            color: var(--text-muted);
            margin: 0;
        }

        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== VIP SECTION ========== */
        .vip-wrapper {
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            overflow: hidden;
            display: flex;
            gap: 0;
            box-shadow: var(--shadow-card);
        }

        .vip-image {
            flex: 0.8;
            min-width: 0;
            position: relative;
        }

        .vip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 280px;
        }

        .vip-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(5, 31, 20, 0.3) 0%, rgba(5, 31, 20, 0) 100%);
            pointer-events: none;
        }

        .vip-content {
            flex: 1.2;
            padding: 36px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .vip-content h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
        }

        .vip-content p {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--text-soft);
            margin-bottom: 20px;
        }

        .vip-tiers {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            list-style: none;
            margin-bottom: 20px;
        }

        .vip-tiers li {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold-2);
            background: rgba(245, 158, 11, 0.08);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-full);
            padding: 8px 16px;
        }

        @media (max-width: 800px) {
            .vip-wrapper {
                flex-direction: column;
            }
            .vip-image img {
                min-height: 180px;
                height: 200px;
            }
            .vip-image::after {
                background: linear-gradient(180deg, rgba(5, 31, 20, 0.3) 0%, rgba(5, 31, 20, 0) 100%);
            }
            .vip-content {
                padding: 24px 28px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: border-color var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-item h4 i {
            color: var(--gold-2);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .faq-item p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-soft);
            margin: 0;
            padding-left: 26px;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: var(--space-xl) 0;
            position: relative;
            z-index: 1;
        }

        .cta-box {
            background: var(--bg-glass);
            backdrop-filter: blur(18px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            box-shadow: var(--shadow-gold);
        }

        .cta-box h2 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 14px;
        }

        .cta-box p {
            font-size: 1rem;
            line-height: 1.65;
            color: var(--text-soft);
            max-width: 560px;
            margin: 0 auto 26px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        @media (max-width: 520px) {
            .cta-box {
                padding: 32px 20px;
            }
        }

        /* ========== FAB ========== */
        .fab-support {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-glass);
            backdrop-filter: blur(14px);
            border: 2px solid var(--gold-1);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--gold-2);
            cursor: pointer;
            transition: all var(--transition-mid);
            animation: fab-float 3s ease-in-out infinite;
        }

        .fab-support:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(245, 158, 11, 0.55);
        }

        .fab-support:active {
            transform: scale(0.95) translateY(2px);
        }

        .fab-notification {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: var(--dragon-red);
            border-radius: 50%;
            border: 2px solid #fff;
        }

        @keyframes fab-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-gold);
            padding: 60px 0 30px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #051F14;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-white);
            line-height: 1.3;
        }

        .footer-logo-text span {
            display: block;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--gold-2);
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 16px;
            max-width: 420px;
        }

        .footer-license {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-license-badge {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.8rem;
            color: #051F14;
            background: var(--gold-gradient);
            border-radius: var(--radius-sm);
            padding: 4px 10px;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--gold-2);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-copy a {
            color: var(--text-muted);
            text-decoration: underline;
        }

        .footer-copy a:hover {
            color: var(--gold-2);
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ========== Responsive tweaks ========== */
        @media (max-width: 768px) {
            :root {
                --space-section: 3.5rem;
                --nav-height: 64px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --space-section: 2.8rem;
            }
            .hero-promo-left h1 {
                font-size: 1.7rem;
            }
        }
