/* roulang page: index */
@import url('/assets/css/vendor/9723b7396f-css2.css');
    :root {
      --color-primary-bg: #450A0A;
      --color-secondary-bg: #2B0404;
      --color-accent-gold: #FBBF24;
      --color-accent-mandarine: #F97316;
      --color-text-primary: #FFFBEB;
      --color-text-secondary: #FDE68A;
      --color-text-muted: #E7E5E4;
      --color-border-subtle: rgba(251, 191, 36, 0.25);
      --radius-card: 16px;
      --radius-btn: 50px;
      --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--color-primary-bg);
      color: var(--color-text-muted);
      line-height: 1.6;
      overflow-x: hidden;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .text-gold-gradient {
      background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .bg-gold-gradient {
      background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
    }
    .bg-dark-wine {
      background: radial-gradient(circle at top, #3B0A0A, #1C0404);
    }
    .card-hover {
      transition: var(--transition-smooth);
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
      border-color: rgba(251, 191, 36, 0.6);
    }
    .gold-border-glow {
      border: 1px solid var(--color-border-subtle);
      transition: var(--transition-smooth);
    }
    .gold-border-glow:hover {
      border-color: #FBBF24;
      box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
    }
    .btn-primary {
      background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
      color: #2B0404;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: var(--radius-btn);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
      background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
    }
    .btn-outline-gold {
      border: 2px solid #FBBF24;
      color: #FBBF24;
      background: transparent;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      transition: var(--transition-smooth);
    }
    .btn-outline-gold:hover {
      background: rgba(251, 191, 36, 0.1);
      border-color: #FDE68A;
      color: #FDE68A;
    }
    .section-title {
      font-family: 'Lexend', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--color-text-primary);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 1.15rem;
      color: var(--color-text-muted);
      max-width: 700px;
      margin-bottom: 40px;
    }
    .game-card {
      background: linear-gradient(145deg, #2B0404, #3B0A0A);
      border: 1px solid var(--color-border-subtle);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .game-card:hover {
      border-color: #FBBF24;
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .badge-hot {
      background: #DC2626;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.8px;
    }
    .fab-left {
      position: fixed;
      left: 16px;
      bottom: 80px;
      z-index: 50;
      width: 56px;
      height: 56px;
      background: radial-gradient(circle at 30% 30%, #FBBF24, #B45309);
      border-radius: 50%;
      border: 2px solid #FDE68A;
      box-shadow: 0 8px 25px rgba(251, 191, 36, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .fab-left:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 30px rgba(251, 191, 36, 0.65);
    }
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.8rem;
      }
    }

/* roulang page: article */
@import url('/assets/css/vendor/9723b7396f-css2.css');
        :root {
            --color-primary-bg: #450A0A;
            --color-secondary-bg: #2B0404;
            --color-accent-gold: #FBBF24;
            --color-accent-mandarine: #F97316;
            --color-text-primary: #FFFBEB;
            --color-text-secondary: #FDE68A;
            --color-text-muted: #E7E5E4;
            --color-border-subtle: rgba(251, 191, 36, 0.25);
            --radius-card: 16px;
            --radius-btn: 50px;
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--color-primary-bg);
            color: var(--color-text-muted);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-narrow {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-gold-gradient {
            background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .card-hover {
            transition: var(--transition-smooth);
        }
        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
            border-color: rgba(251, 191, 36, 0.6);
        }
        .gold-border-glow {
            border: 1px solid var(--color-border-subtle);
            transition: var(--transition-smooth);
        }
        .gold-border-glow:hover {
            border-color: #FBBF24;
            box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
        }
        .btn-primary {
            background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
            color: #2B0404;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
            background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
        }
        .btn-outline-gold {
            border: 2px solid #FBBF24;
            color: #FBBF24;
            background: transparent;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition-smooth);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-gold:hover {
            background: rgba(251, 191, 36, 0.1);
            border-color: #FDE68A;
            color: #FDE68A;
        }
        .section-title {
            font-family: 'Lexend', 'Inter', system-ui, sans-serif;
            font-weight: 700;
            font-size: 2.2rem;
            color: var(--color-text-primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 700px;
            margin-bottom: 40px;
        }
        .game-card {
            background: linear-gradient(145deg, #2B0404, #3B0A0A);
            border: 1px solid var(--color-border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .game-card:hover {
            border-color: #FBBF24;
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
        }
        .badge-hot {
            background: #DC2626;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.8px;
        }
        .article-content {
            color: var(--color-text-muted);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .article-content h2 {
            font-family: 'Lexend', sans-serif;
            color: var(--color-text-primary);
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        .article-content h3 {
            font-family: 'Lexend', sans-serif;
            color: var(--color-text-secondary);
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .article-content img {
            border-radius: 12px;
            margin: 1.5rem 0;
            max-width: 100%;
            height: auto;
        }
        .article-content a {
            color: #FBBF24;
            text-decoration: underline;
        }
        .article-content blockquote {
            border-left: 4px solid #FBBF24;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: #FDE68A;
            font-style: italic;
        }
        .category-pill {
            display: inline-block;
            background: rgba(251, 191, 36, 0.15);
            color: #FDE68A;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .author-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .author-meta i {
            color: #FBBF24;
        }
        .separator {
            border: none;
            border-top: 1px solid var(--color-border-subtle);
            margin: 2rem 0;
        }
        .cta-banner {
            background: linear-gradient(135deg, #2B0404, #450A0A);
            border: 2px solid #FBBF24;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }
        .fab-left {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(145deg, #450A0A, #2B0404);
            border: 2px solid #FBBF24;
            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;
            animation: fabFloat 3s ease-in-out infinite;
        }
        .fab-left:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 35px rgba(245, 158, 11, 0.55);
        }
        .fab-left .badge-notif {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            background: #DC2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .container-narrow {
                padding: 0 16px;
            }
            .article-content {
                font-size: 1rem;
            }
            .cta-banner {
                padding: 24px;
            }
        }
        @media (max-width: 520px) {
            .btn-primary, .btn-outline-gold {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }

/* roulang page: category1 */
@import url('/assets/css/vendor/9723b7396f-css2.css');
        :root {
            --color-primary-bg: #450A0A;
            --color-secondary-bg: #2B0404;
            --color-accent-gold: #FBBF24;
            --color-accent-mandarine: #F97316;
            --color-text-primary: #FFFBEB;
            --color-text-secondary: #FDE68A;
            --color-text-muted: #E7E5E4;
            --color-border-subtle: rgba(251, 191, 36, 0.25);
            --radius-card: 16px;
            --radius-btn: 50px;
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--color-primary-bg);
            color: var(--color-text-muted);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-gold-gradient {
            background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .bg-gold-gradient {
            background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
            color: #2B0404;
            font-weight: 700;
        }
        .card-hover {
            transition: var(--transition-smooth);
        }
        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
            border-color: rgba(251, 191, 36, 0.6);
        }
        .gold-border-glow {
            border: 1px solid var(--color-border-subtle);
            transition: var(--transition-smooth);
        }
        .gold-border-glow:hover {
            border-color: #FBBF24;
            box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
        }
        .btn-primary {
            background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
            color: #2B0404;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
            text-decoration: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
            background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
        }
        .btn-outline-gold {
            border: 2px solid #FBBF24;
            color: #FBBF24;
            background: transparent;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-gold:hover {
            background: rgba(251, 191, 36, 0.1);
            border-color: #FDE68A;
            color: #FDE68A;
        }
        .section-title {
            font-family: 'Lexend', 'Inter', system-ui, sans-serif;
            font-weight: 700;
            font-size: 2.2rem;
            color: var(--color-text-primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 700px;
            margin-bottom: 40px;
        }
        .game-card {
            background: linear-gradient(145deg, #2B0404, #3B0A0A);
            border: 1px solid var(--color-border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .game-card:hover {
            border-color: #FBBF24;
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
        }
        .badge-hot {
            background: #DC2626;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.8px;
        }
        .faq-item {
            background: linear-gradient(145deg, #3B0A0A, #2B0404);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .faq-item summary {
            padding: 18px 24px;
            cursor: pointer;
            font-weight: 600;
            color: var(--color-text-secondary);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item p {
            padding: 0 24px 18px;
            color: var(--color-text-muted);
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
        }

/* roulang page: category2 */
:root {
      --color-primary-bg: #450A0A;
      --color-secondary-bg: #2B0404;
      --color-accent-gold: #FBBF24;
      --color-accent-mandarine: #F97316;
      --color-text-primary: #FFFBEB;
      --color-text-secondary: #FDE68A;
      --color-text-muted: #E7E5E4;
      --color-border-subtle: rgba(251, 191, 36, 0.25);
      --radius-card: 16px;
      --radius-btn: 50px;
      --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @import url('/assets/css/vendor/9723b7396f-css2.css');
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--color-primary-bg);
      color: var(--color-text-muted);
      line-height: 1.6;
      overflow-x: hidden;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .text-gold-gradient {
      background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .card-hover {
      transition: var(--transition-smooth);
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
      border-color: rgba(251, 191, 36, 0.6);
    }
    .gold-border-glow {
      border: 1px solid var(--color-border-subtle);
      transition: var(--transition-smooth);
    }
    .gold-border-glow:hover {
      border-color: #FBBF24;
      box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
    }
    .btn-primary {
      background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
      color: #2B0404;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: var(--radius-btn);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
      background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
    }
    .btn-outline-gold {
      border: 2px solid #FBBF24;
      color: #FBBF24;
      background: transparent;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      transition: var(--transition-smooth);
    }
    .btn-outline-gold:hover {
      background: rgba(251, 191, 36, 0.1);
      border-color: #FDE68A;
      color: #FDE68A;
    }
    .section-title {
      font-family: 'Lexend', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--color-text-primary);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 1.15rem;
      color: var(--color-text-muted);
      max-width: 700px;
      margin-bottom: 40px;
    }
    .game-card {
      background: linear-gradient(145deg, #2B0404, #3B0A0A);
      border: 1px solid var(--color-border-subtle);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .game-card:hover {
      border-color: #FBBF24;
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .badge-hot {
      background: #DC2626;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.8px;
    }
    .jackpot-counter {
      background: linear-gradient(135deg, #FBBF24, #F97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800;
    }
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.8rem;
      }
    }

/* roulang page: category3 */
@import url('/assets/css/vendor/9723b7396f-css2.css');
    :root {
      --color-primary-bg: #450A0A;
      --color-secondary-bg: #2B0404;
      --color-accent-gold: #FBBF24;
      --color-accent-mandarine: #F97316;
      --color-text-primary: #FFFBEB;
      --color-text-secondary: #FDE68A;
      --color-text-muted: #E7E5E4;
      --color-border-subtle: rgba(251, 191, 36, 0.25);
      --radius-card: 16px;
      --radius-btn: 50px;
      --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--color-primary-bg);
      color: var(--color-text-muted);
      line-height: 1.6;
      overflow-x: hidden;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .text-gold-gradient {
      background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .card-hover {
      transition: var(--transition-smooth);
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
      border-color: rgba(251, 191, 36, 0.6);
    }
    .gold-border-glow {
      border: 1px solid var(--color-border-subtle);
      transition: var(--transition-smooth);
    }
    .gold-border-glow:hover {
      border-color: #FBBF24;
      box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
    }
    .btn-primary {
      background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
      color: #2B0404;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: var(--radius-btn);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
      cursor: pointer;
      border: none;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
      background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
    }
    .btn-outline-gold {
      border: 2px solid #FBBF24;
      color: #FBBF24;
      background: transparent;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .btn-outline-gold:hover {
      background: rgba(251, 191, 36, 0.1);
      border-color: #FDE68A;
      color: #FDE68A;
    }
    .section-title {
      font-family: 'Lexend', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--color-text-primary);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 1.15rem;
      color: var(--color-text-muted);
      max-width: 700px;
      margin-bottom: 40px;
    }
    .game-card {
      background: linear-gradient(145deg, #2B0404, #3B0A0A);
      border: 1px solid var(--color-border-subtle);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .game-card:hover {
      border-color: #FBBF24;
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .badge-hot {
      background: #DC2626;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.8px;
    }
    .fab-left {
      position: fixed;
      left: 16px;
      bottom: 96px;
      z-index: 50;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(145deg, #2B0404, #3B0A0A);
      border: 2px solid #FBBF24;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FBBF24;
      font-size: 1.5rem;
      box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
      opacity: 0.90;
      transition: var(--transition-smooth);
      cursor: pointer;
      animation: floatSlow 3s infinite ease-in-out;
    }
    .fab-left:hover {
      opacity: 1;
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55);
    }
    .fab-left:active {
      transform: scale(0.95) translateY(2px);
    }
    @keyframes floatSlow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .fab-badge {
      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; }
    }

/* roulang page: category4 */
:root {
            --color-primary-bg: #450A0A;
            --color-secondary-bg: #2B0404;
            --color-accent-gold: #FBBF24;
            --color-accent-mandarine: #F97316;
            --color-text-primary: #FFFBEB;
            --color-text-secondary: #FDE68A;
            --color-text-muted: #E7E5E4;
            --color-border-subtle: rgba(251, 191, 36, 0.25);
            --radius-card: 16px;
            --radius-btn: 50px;
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        @import url('/assets/css/vendor/9723b7396f-css2.css');
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--color-primary-bg);
            color: var(--color-text-muted);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-gold-gradient {
            background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .card-hover {
            transition: var(--transition-smooth);
        }
        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(245, 158, 11, 0.25);
            border-color: rgba(251, 191, 36, 0.6);
        }
        .gold-border-glow {
            border: 1px solid var(--color-border-subtle);
            transition: var(--transition-smooth);
        }
        .gold-border-glow:hover {
            border-color: #FBBF24;
            box-shadow: 0 0 18px rgba(251, 191, 36, 0.3);
        }
        .btn-primary {
            background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
            color: #2B0404;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
            background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
        }
        .btn-outline-gold {
            border: 2px solid #FBBF24;
            color: #FBBF24;
            background: transparent;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .btn-outline-gold:hover {
            background: rgba(251, 191, 36, 0.1);
            border-color: #FDE68A;
            color: #FDE68A;
        }
        .section-title {
            font-family: 'Lexend', 'Inter', system-ui, sans-serif;
            font-weight: 700;
            font-size: 2.2rem;
            color: var(--color-text-primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 700px;
            margin-bottom: 40px;
        }
        .game-card {
            background: linear-gradient(145deg, #2B0404, #3B0A0A);
            border: 1px solid var(--color-border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .game-card:hover {
            border-color: #FBBF24;
            box-shadow: 0 12px 28px rgba(0,0,0,0.5);
        }
        .badge-hot {
            background: #DC2626;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.8px;
        }
        .fab-main {
            position: fixed;
            left: 16px;
            bottom: 96px;
            z-index: 50;
            width: 56px;
            height: 56px;
            background: radial-gradient(circle at 30% 30%, #FCD34D, #B45309);
            border-radius: 50%;
            border: 2px solid #FBBF24;
            box-shadow: 0 6px 25px rgba(245,158,11,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            opacity: 0.9;
        }
        .fab-main:hover {
            transform: scale(1.1);
            opacity: 1;
        }
        .fab-main:active {
            transform: scale(0.95) translateY(2px);
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.9rem;
            }
            .btn-primary {
                padding: 12px 24px;
            }
        }
