    /* ─── Reset & Base ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; color-scheme: dark; }
    body {
      font-family: var(--font-sans);
      background-color: #060606;
      background-image:
        radial-gradient(ellipse at 18% 0%, rgba(226,184,74,0.13), transparent 28%),
        radial-gradient(ellipse at 84% 8%,  rgba(246,200,76,0.07), transparent 22%),
        url('<?= htmlspecialchars($assetBase . 'assets/bg-hero.jpg', ENT_QUOTES) ?>');
      background-size: cover;
      background-position: center top;
      background-attachment: fixed;
      color: var(--color-text);
      min-height: 100vh;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ─── Layout ─── */
    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    /* ─── Header ─── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      background: rgba(6,6,6,0.78);
      border-bottom: 1px solid rgba(226,184,74,0.13);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 13px 0;
    }
    .brand img { width: 112px; height: auto; }

    .nav {
      display: none;
      align-items: center;
      gap: 20px;
      font-size: 18px;
      font-weight: 700;
      color: var(--color-muted);
    }
    .nav a { transition: color 150ms ease; }
    .nav a:hover { color: var(--color-text-strong); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      padding: 6px;
      background: rgba(226,184,74,0.08);
      border: 1px solid rgba(226,184,74,0.18);
      border-radius: 8px;
      cursor: pointer;
      transition: background 160ms ease;
    }
    .hamburger:hover { background: rgba(226,184,74,0.14); }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--color-primary);
      border-radius: 2px;
      transition: transform 200ms ease, opacity 200ms ease;
    }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Nav Drawer */
    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 2px;
      padding: 12px 0 16px;
      border-top: 1px solid rgba(226,184,74,0.10);
    }
    .mobile-nav.is-open { display: flex; }
    .mobile-nav a {
      padding: 10px 0;
      color: var(--color-muted);
      font-size: 15px;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: color 150ms ease;
    }
    .mobile-nav a:hover { color: var(--color-text-strong); }

    /* ─── Buttons ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: linear-gradient(135deg, #f7d76e 0%, #e2b84a 48%, #b9891f 100%); color: #0e0e0e; box-shadow: 0 12px 28px rgba(185,137,31,0.26); }
    .btn-primary:hover { box-shadow: 0 18px 38px rgba(246,200,76,0.40); }
    .btn-secondary { background: rgba(255,255,255,0.04); border-color: rgba(226,184,74,0.22); color: var(--color-text); }
    .btn-secondary:hover { border-color: rgba(226,184,74,0.40); background: rgba(255,255,255,0.07); }
    .btn-sm { min-height: 38px; padding: 0 16px; font-size: 13px; }

    /* ─── Hero ─── */
    .hero { padding: 32px 0 16px; }
    .hero-grid { display: grid; gap: 24px; align-items: center; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid rgba(226,184,74,0.26);
      background: rgba(226,184,74,0.08);
      color: var(--color-primary-strong);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      width: fit-content;
      animation: fadeDown 0.5s ease both;
    }

    h1, h2, h3 { line-height: 1.1; font-family: var(--font-display); }
    h1 {
      font-size: clamp(2.2rem, 6.5vw, 4.6rem);
      margin-top: 14px;
      max-width: 14ch;
      animation: fadeDown 0.5s 0.08s ease both;
    }

    .hero-copy {
      color: var(--color-muted);
      font-size: 1rem;
      line-height: 1.8;
      margin-top: 16px;
      max-width: 58ch;
      animation: fadeDown 0.5s 0.16s ease both;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
      animation: fadeDown 0.5s 0.22s ease both;
    }

    /* Stat grid */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 20px;
      animation: fadeDown 0.5s 0.30s ease both;
    }
    .stat {
      padding: 14px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(226,184,74,0.14);
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .stat:hover { border-color: rgba(226,184,74,0.28); transform: translateY(-2px); }
    .stat strong { display: block; color: var(--color-primary-strong); font-size: 1.05rem; margin-bottom: 4px; }
    .stat span   { display: block; color: var(--color-muted); font-size: 0.88rem; line-height: 1.5; }

    /* Hero visual panel */
    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: linear-gradient(160deg, #1e1e24 0%, #12121a 100%);
      border: 1px solid rgba(226,184,74,0.22);
      box-shadow: var(--shadow-lg), var(--shadow-gold);
      padding: 16px;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 18%, rgba(246,200,76,0.16), transparent 30%),
        radial-gradient(circle at 12% 85%, rgba(226,184,74,0.08), transparent 28%);
      pointer-events: none;
    }
    .hero-panel img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      position: relative;
      z-index: 1;
    }

    /* ─── Trust Strip ─── */
    .trust-strip {
      padding: 18px 0;
      border-top: 1px solid rgba(226,184,74,0.10);
      border-bottom: 1px solid rgba(226,184,74,0.10);
      overflow: hidden;
    }
    .trust-strip-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    /* ─── Sections ─── */
    section { padding: 28px 0; }

    .section-head {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 22px;
    }
    .section-title {
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      letter-spacing: -0.01em;
    }
    .section-copy {
      color: var(--color-muted);
      line-height: 1.78;
      max-width: 70ch;
    }

    /* ─── Feature cards ─── */
    .card-grid { display: grid; gap: 14px; }
    .card {
      position: relative;
      overflow: hidden;
      padding: 20px;
      border-radius: var(--radius-md);
      background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent 24%), #17171b;
      border: 1px solid rgba(226,184,74,0.16);
      box-shadow: var(--shadow-sm);
      transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    }
    .card:hover {
      border-color: rgba(226,184,74,0.34);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md), 0 0 18px rgba(226,184,74,0.10);
    }
    .card-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .card h3  { font-size: 1.05rem; margin-bottom: 8px; }
    .card p   { color: var(--color-muted); line-height: 1.7; font-size: 0.92rem; }

    /* ─── Game Categories ─── */
    .game-grid { display: grid; gap: 14px; }
    .game-card {
      position: relative;
      padding: 20px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(160deg, rgba(255,255,255,0.03), transparent 20%),
        #1a1a20;
      border: 1px solid rgba(226,184,74,0.18);
      box-shadow: var(--shadow-sm);
      transition: border-color 220ms ease, transform 220ms ease;
    }
    .game-card:hover {
      border-color: rgba(246,200,76,0.36);
      transform: translateY(-3px);
    }
    .game-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }
    .game-card h3 { font-size: 1.1rem; }
    .game-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(247,215,110,0.18), rgba(185,137,31,0.10));
      border: 1px solid rgba(226,184,74,0.26);
      color: var(--color-primary-strong);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }
    .game-points {
      list-style: none;
      display: grid;
      gap: 7px;
    }
    .game-points li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--color-muted);
      line-height: 1.5;
    }
    .game-points li::before {
      content: '✓';
      flex-shrink: 0;
      color: var(--color-primary-strong);
      font-weight: 700;
      margin-top: 1px;
    }

    /* ─── Promotions ─── */
    .promo-layout { display: grid; gap: 14px; }
    .promo-hero {
      padding: 24px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(247,215,110,0.14), rgba(185,137,31,0.05)),
        #1a1a1e;
      border: 1px solid rgba(246,200,76,0.26);
      box-shadow: 0 4px 24px rgba(185,137,31,0.10);
    }
    .promo-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(246,200,76,0.15);
      border: 1px solid rgba(246,200,76,0.28);
      color: var(--color-primary-strong);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .promo-hero h3 {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      margin-bottom: 10px;
    }
    .promo-hero p {
      color: var(--color-muted);
      line-height: 1.72;
      margin-bottom: 16px;
    }
    .promo-cards { display: grid; gap: 12px; }
    .promo-card {
      padding: 18px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(226,184,74,0.14);
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .promo-card:hover {
      border-color: rgba(226,184,74,0.30);
      transform: translateY(-2px);
    }
    .promo-card-hot {
      border-color: rgba(246,200,76,0.28);
      background: linear-gradient(160deg, rgba(247,215,110,0.05), transparent), rgba(255,255,255,0.025);
    }
    .promo-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .promo-card p  { color: var(--color-muted); line-height: 1.68; font-size: 0.91rem; margin-bottom: 10px; }
    .promo-note    { color: var(--color-primary); font-size: 0.86rem; font-weight: 600; }

    /* ─── Testimonials ─── */
    .testimonial-grid { display: grid; gap: 14px; }
    .testimonial-card {
      padding: 22px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(226,184,74,0.13);
      position: relative;
      overflow: hidden;
      transition: border-color 220ms ease, transform 220ms ease;
    }
    .testimonial-card:hover {
      border-color: rgba(226,184,74,0.28);
      transform: translateY(-3px);
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -8px;
      left: 16px;
      font-size: 5rem;
      font-family: Georgia, serif;
      color: rgba(226,184,74,0.10);
      line-height: 1;
      pointer-events: none;
    }
    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 12px;
    }
    .stars span { color: var(--color-star); font-size: 1rem; }
    .testimonial-quote {
      color: var(--color-muted);
      line-height: 1.78;
      font-size: 0.92rem;
      margin-bottom: 16px;
      font-style: italic;
    }
    .testimonial-author { display: flex; flex-direction: column; gap: 2px; }
    .testimonial-name   { font-weight: 700; font-size: 0.95rem; color: var(--color-text-strong); }
    .testimonial-role   { font-size: 0.82rem; color: var(--color-muted-2); }

    /* ─── Review cards ─── */
    .review-card {
      padding: 18px;
      border-radius: var(--radius-md);
      background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent 20%), #17171b;
      border: 1px solid rgba(226,184,74,0.16);
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .review-card:hover {
      border-color: rgba(226,184,74,0.30);
      transform: translateY(-2px);
    }
    .tag-pill {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(226,184,74,0.10);
      border: 1px solid rgba(226,184,74,0.18);
      color: var(--color-primary-strong);
      font-size: 11px;
      font-weight: 700;
    }
    .review-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .review-card p  { color: var(--color-muted); line-height: 1.7; font-size: 0.91rem; }

    /* ─── Article cards ─── */
    .article-card {
      padding: 18px;
      border-radius: var(--radius-md);
      background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent 20%), #17171b;
      border: 1px solid rgba(226,184,74,0.14);
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .article-card:hover {
      border-color: rgba(226,184,74,0.30);
      transform: translateY(-2px);
    }
    .article-card h3 { font-size: 1rem; line-height: 1.45; }
    .article-card p  { color: var(--color-muted); line-height: 1.65; font-size: 0.88rem; }
    .article-arrow {
      margin-top: auto;
      color: var(--color-primary);
      font-size: 0.86rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* ─── FAQ Accordion ─── */
    .faq-list { display: grid; gap: 10px; }
    .faq-item {
      border: 1px solid rgba(226,184,74,0.16);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.02);
      overflow: hidden;
      transition: border-color 200ms ease;
    }
    .faq-item.is-open {
      border-color: rgba(246,200,76,0.32);
      background: rgba(226,184,74,0.04);
    }
    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--color-text-strong);
      font-family: var(--font-display);
      font-size: 0.96rem;
      font-weight: 600;
      text-align: left;
      line-height: 1.4;
    }
    .faq-trigger:hover { color: var(--color-primary-strong); }
    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(226,184,74,0.10);
      border: 1px solid rgba(226,184,74,0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary-strong);
      font-size: 16px;
      transition: transform 250ms ease, background 200ms ease;
    }
    .faq-item.is-open .faq-icon { transform: rotate(45deg); background: rgba(226,184,74,0.18); }
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 320ms ease;
    }
    .faq-body-inner {
      padding: 0 18px 18px;
      color: var(--color-muted);
      line-height: 1.78;
      font-size: 0.93rem;
    }

    /* ─── Provider Marquee ─── */
    .provider-marquee-wrap {
      overflow: hidden;
      position: relative;
      padding: 20px 0;
    }
    .provider-marquee-wrap::before,
    .provider-marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .provider-marquee-wrap::before {
      left: 0;
      background: linear-gradient(to right, #0c0c10, transparent);
    }
    .provider-marquee-wrap::after {
      right: 0;
      background: linear-gradient(to left, #0c0c10, transparent);
    }
    .provider-marquee {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .provider-marquee:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .provider-chip {
      display: inline-flex;
      align-items: center;
      padding: 9px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(226,184,74,0.14);
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      transition: border-color 200ms ease, color 200ms ease;
    }
    .provider-chip:hover {
      border-color: rgba(226,184,74,0.34);
      color: var(--color-text-strong);
    }

    /* ─── Image strip ─── */
    .image-strip { display: grid; gap: 14px; }
    .image-card {
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(226,184,74,0.16);
      background: #15151a;
      transition: border-color 200ms ease;
    }
    .image-card:hover { border-color: rgba(226,184,74,0.30); }
    .image-card img { width: 100%; height: auto; }
    .image-caption {
      padding: 12px 16px 16px;
      color: var(--color-muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    /* ─── Trust Note ─── */
    .trust-note {
      padding: 22px;
      border-radius: var(--radius-lg);
      background: linear-gradient(160deg, rgba(226,184,74,0.07), rgba(255,255,255,0.015));
      border: 1px solid rgba(226,184,74,0.18);
      color: var(--color-muted);
      line-height: 1.8;
    }
    .trust-note strong { color: var(--color-primary-strong); }

    /* ─── Divider ─── */
    .gold-divider {
      border: none;
      border-top: 1px solid rgba(226,184,74,0.14);
      margin: 0;
    }

    /* ─── Footer ─── */
    .site-footer {
      padding: 30px 0 42px;
      color: var(--color-muted-2);
      font-size: 0.88rem;
      border-top: 1px solid rgba(226,184,74,0.10);
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .footer-brand img { width: 96px; height: auto; opacity: 0.8; }
    .footer-copy { line-height: 1.75; max-width: 72ch; }
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-nav a:hover { color: var(--color-muted); }

    /* ─── Animations ─── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── Mobile Sticky Footer Menu ─── */
    .mobile-sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 8px 12px;
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      background: rgba(12, 12, 16, 0.86);
      border-top: 1px solid rgba(226, 184, 74, 0.22);
      box-shadow: 0 -6px 24px rgba(0,0,0,0.6);
    }
    @media (min-width: 768px) {
      .mobile-sticky-bar { display: none !important; }
      body { padding-bottom: 0; }
    }
    @media (max-width: 767px) {
      body { padding-bottom: 74px; }
    }
    
    .sticky-bar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: var(--color-muted);
      font-size: 11px;
      font-weight: 600;
      transition: color 150ms ease;
    }
    .sticky-bar-item:hover, .sticky-bar-item:active {
      color: var(--color-primary-strong);
    }
    .sticky-bar-icon {
      font-size: 19px;
    }
    
    .sticky-bar-cta {
      background: linear-gradient(135deg, #f7d76e 0%, #e2b84a 48%, #b9891f 100%);
      color: #111111;
      padding: 9px 18px;
      border-radius: 999px;
      font-weight: 750;
      font-size: 13px;
      box-shadow: 0 4px 12px rgba(185,137,31,0.3);
      display: flex;
      align-items: center;
      gap: 6px;
      text-shadow: 0 0 1px rgba(255,255,255,0.2);
      animation: barCtaPulse 2.5s ease-in-out infinite;
    }
    @keyframes barCtaPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(185,137,31,0.3); }
      50% { transform: scale(1.04); box-shadow: 0 6px 18px rgba(246,200,76,0.5); }
    }

    /* ─── Responsive ─── */
    @media (min-width: 600px) {
      .stat-grid { grid-template-columns: repeat(4, 1fr); }
      .game-grid { grid-template-columns: repeat(2, 1fr); }
      .promo-cards { grid-template-columns: repeat(2, 1fr); }
      .image-strip { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 768px) {
      .nav { display: flex; }
      .hamburger { display: none; }
      .hero { padding-top: 48px; }
      .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
      .card-grid { grid-template-columns: repeat(2, 1fr); }
      .game-grid { grid-template-columns: repeat(2, 1fr); }
      .promo-layout { grid-template-columns: 0.9fr 1.1fr; }
      .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
      .review-card-grid { grid-template-columns: repeat(2, 1fr); }
      .faq-list { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .hero { padding-top: 60px; }
      .card-grid { grid-template-columns: repeat(4, 1fr); }
      .game-grid { grid-template-columns: repeat(4, 1fr); }
      .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
      .review-card-grid { grid-template-columns: repeat(3, 1fr); }
      .article-grid { grid-template-columns: repeat(4, 1fr); }
    }
