/* roulang page: index */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255,255,255,0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245,158,11,0.3);
            --shadow-gold: 0 6px 25px rgba(245,158,11,0.25);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245,158,11,0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245,158,11,0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(245,158,11,0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }

        .section-pad {
            padding: 4.5rem 0;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }

        .card-game {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .card-game:hover {
            transform: translateY(-6px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245,158,11,0.3);
        }

        .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #DC2626;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.03em;
            box-shadow: 0 2px 8px rgba(220,38,38,0.5);
            text-transform: uppercase;
        }

        .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .fab-royal {
            position: fixed;
            left: 1.5rem;
            bottom: 6rem;
            width: 56px;
            height: 56px;
            background: radial-gradient(circle at 30% 30%, #FCD34D, #B45309);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-gold);
            z-index: 50;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #F59E0B;
            font-size: 1.8rem;
            color: #051F14;
        }

        .fab-royal:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(245,158,11,0.5);
        }

        .fab-royal .badge-noti {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }

        .timer-box {
            display: inline-flex;
            gap: 0.5rem;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 1.4rem;
            border: 1px solid var(--border-gold);
        }

        .timer-digit {
            background: #0B2E1E;
            color: #FCD34D;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }

        .progress-bar {
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 999px;
            overflow: hidden;
            margin-top: 0.5rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #DC2626, #F59E0B);
            border-radius: 999px;
            width: 72%;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .section-pad {
                padding: 2.8rem 0;
            }
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

/* roulang page: article */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255,255,255,0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245,158,11,0.3);
            --shadow-gold: 0 6px 25px rgba(245,158,11,0.25);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245,158,11,0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245,158,11,0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(245,158,11,0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }
        .section-pad {
            padding: 4.5rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }
        .article-body {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-card);
            line-height: 1.75;
            font-size: 1.05rem;
            color: var(--text-muted);
        }
        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-light);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        .article-body p {
            margin-bottom: 1.25rem;
        }
        .article-body ul, .article-body ol {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .article-body img {
            border-radius: var(--radius-md);
            margin: 1.5rem 0;
        }
        .article-body a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 600;
        }
        .article-body a:hover {
            color: var(--primary-light);
        }
        .article-body blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.2rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--text-gold);
            background: rgba(245,158,11,0.05);
            padding: 1rem 1.5rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .article-body th {
            background: rgba(245,158,11,0.15);
            color: var(--primary-light);
            font-weight: 700;
            padding: 0.75rem 1rem;
            text-align: left;
            border: 1px solid var(--border-gold);
        }
        .article-body td {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-gold);
            color: var(--text-muted);
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-gold);
            margin-bottom: 2rem;
            color: var(--text-gold);
            font-size: 0.9rem;
        }
        .article-meta i {
            color: var(--primary);
            margin-right: 0.4rem;
        }
        .article-meta .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .related-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }
        .related-card:hover {
            transform: translateY(-4px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245,158,11,0.3);
        }
        .cta-bar {
            background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(220,38,38,0.1) 100%);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
        }
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: radial-gradient(circle at 30% 30%, #FCD34D, #B45309);
            border-radius: 50%;
            border: 2px solid #F59E0B;
            box-shadow: 0 6px 25px rgba(245,158,11,0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #0B2E1E;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.8;
            animation: gentleFloat 3s ease-in-out infinite;
        }
        .fab-royal:hover {
            opacity: 1;
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 8px 32px rgba(245,158,11,0.6);
        }
        .fab-royal:active {
            transform: scale(0.95) translateY(2px);
        }
        .fab-royal .badge-noti {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @media (max-width: 1024px) {
            .section-title { font-size: 1.8rem; }
            .section-pad { padding: 2.8rem 0; }
            .container { padding-left: 1rem; padding-right: 1rem; }
            .article-body { padding: 1.5rem; }
        }
        @media (max-width: 768px) {
            .section-title { font-size: 1.6rem; }
            .section-pad { padding: 2rem 0; }
            .article-body { padding: 1.25rem; font-size: 0.95rem; }
            .article-body h2 { font-size: 1.4rem; }
            .article-body h3 { font-size: 1.2rem; }
        }

/* roulang page: category1 */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255, 255, 255, 0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245, 158, 11, 0.3);
            --shadow-gold: 0 6px 25px rgba(245, 158, 11, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }

        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(245, 158, 11, 0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }

        .section-pad {
            padding: 4.5rem 0;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }

        .card-game {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .card-game:hover {
            transform: translateY(-6px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
        }

        .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #DC2626;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.03em;
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.5);
            text-transform: uppercase;
        }

        .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            width: 56px;
            height: 56px;
            background: linear-gradient(145deg, #051F14, #0B2E1E);
            border-radius: 50%;
            border: 2px solid #F59E0B;
            cursor: pointer;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
            transition: all 0.3s ease;
            opacity: 0.85;
        }

        .fab-royal:hover {
            transform: scale(1.1);
            opacity: 1;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55);
        }

        .fab-royal .badge-noti {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }

            .section-pad {
                padding: 2.8rem 0;
            }

            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .fab-royal {
                width: 48px;
                height: 48px;
                bottom: 5rem;
                left: 0.75rem;
            }
        }

        .process-step {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: #FCD34D;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
        }

        .hero-overlay {
            background: linear-gradient(180deg, rgba(5, 31, 20, 0.85) 0%, rgba(5, 31, 20, 0.95) 100%);
        }

/* roulang page: category2 */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255,255,255,0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245,158,11,0.3);
            --shadow-gold: 0 6px 25px rgba(245,158,11,0.25);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245,158,11,0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245,158,11,0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(245,158,11,0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }
        .section-pad {
            padding: 4.5rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }
        .card-game {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .card-game:hover {
            transform: translateY(-6px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245,158,11,0.3);
        }
        .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #DC2626;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.03em;
            box-shadow: 0 2px 8px rgba(220,38,38,0.5);
            text-transform: uppercase;
        }
        .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: radial-gradient(circle at 30% 30%, #0B2E1E, #051F14);
            border: 2px solid #F59E0B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #FCD34D;
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: floatFab 3s ease-in-out infinite;
        }
        .fab-royal:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(245,158,11,0.55);
        }
        .fab-royal .badge-noti {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        @keyframes floatFab {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .countdown-ring {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid rgba(245,158,11,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .countdown-ring-inner {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: #F59E0B;
            border-right-color: #FCD34D;
            animation: spin 2s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .feature-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FCD34D;
            line-height: 1;
        }
        .feature-label {
            font-size: 0.9rem;
            color: #A3A375;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .accordion-item {
            border-bottom: 1px solid rgba(245,158,11,0.15);
        }
        .accordion-header {
            padding: 1.2rem 0;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.05rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #F8FAFC;
            transition: color 0.2s;
        }
        .accordion-header:hover {
            color: #FCD34D;
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: #D1FAE5;
            line-height: 1.7;
        }
        .accordion-body.open {
            max-height: 300px;
            padding-bottom: 1.2rem;
        }
        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(5,31,20,0.96);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(245,158,11,0.3);
            padding: 0.8rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            z-index: 40;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .section-pad {
                padding: 2.8rem 0;
            }
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .sticky-cta-bar {
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.6rem 1rem;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255,255,255,0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245,158,11,0.3);
            --shadow-gold: 0 6px 25px rgba(245,158,11,0.25);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245,158,11,0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245,158,11,0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(245,158,11,0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }
        .section-pad {
            padding: 4.5rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }
        .card-game {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .card-game:hover {
            transform: translateY(-6px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245,158,11,0.3);
        }
        .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #DC2626;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.03em;
            box-shadow: 0 2px 8px rgba(220,38,38,0.5);
            text-transform: uppercase;
        }
        .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: radial-gradient(circle at 30% 30%, #0B2E1E, #051F14);
            border-radius: 50%;
            border: 2px solid #F59E0B;
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.8;
        }
        .fab-royal:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        .fab-royal .badge-noti {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .section-pad {
                padding: 2.8rem 0;
            }
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FCD34D;
            --secondary: #DC2626;
            --accent: #FCD34D;
            --bg-dark: #051F14;
            --bg-darker: #0B2E1E;
            --bg-card: rgba(255,255,255,0.05);
            --text-light: #F8FAFC;
            --text-muted: #D1FAE5;
            --text-gold: #A3A375;
            --border-gold: rgba(245,158,11,0.3);
            --shadow-gold: 0 6px 25px rgba(245,158,11,0.25);
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --radius-lg: 1.25rem;
            --radius-md: 0.875rem;
            --radius-sm: 0.5rem;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        .text-gradient-gold {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: #0B2E1E;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(245,158,11,0.35);
            text-transform: none;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(245,158,11,0.5);
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.8rem;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(245,158,11,0.12);
            border-color: #FCD34D;
            color: #FCD34D;
        }
        .section-pad {
            padding: 4.5rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-light);
            line-height: 1.25;
        }
        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }
        .card-game {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .card-game:hover {
            transform: translateY(-6px);
            border-color: #FCD34D;
            box-shadow: 0 12px 40px rgba(245,158,11,0.3);
        }
        .badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #DC2626;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.03em;
            box-shadow: 0 2px 8px rgba(220,38,38,0.5);
            text-transform: uppercase;
        }
        .badge-vip {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            color: #051F14;
            font-weight: 800;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .fab-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #0B2E1E 0%, #051F14 100%);
            border-radius: 50%;
            border: 2px solid #F59E0B;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.85;
        }
        .fab-royal:hover {
            transform: scale(1.1);
            opacity: 1;
            box-shadow: 0 12px 35px rgba(245,158,11,0.55);
        }
        .fab-royal .badge-noti {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        .tip-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.3s ease;
        }
        .tip-card:hover {
            border-color: #FCD34D;
            box-shadow: 0 8px 32px rgba(245,158,11,0.2);
        }
        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #F59E0B, #D97706);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            color: #051F14;
        }
        @media (max-width: 1024px) {
            .section-title {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.6rem;
            }
            .section-pad {
                padding: 2.8rem 0;
            }
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .fab-royal {
                left: 0.75rem;
                bottom: 5rem;
                width: 50px;
                height: 50px;
            }
        }
