    /* ==============================================
       VARIABLES
    ============================================== */
    :root {
      --bg:      #0d1117;
      --bg2:     #161b26;
      --bg3:     #1c2333;
      --primary: #38bdf8;
      --text:    #c9d8e8;
      --heading: #e8f4fd;
      --muted:   #6e8aa8;
      --border:  #1f2d40;
      --link:    #60b8e8;
      --gold:    #d4a24e;
      --r:       6px;
    }

    /* ==============================================
       RESET & BASE — MOBILE FIRST
    ============================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 15px; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }
    a { color: var(--link); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { display: block; max-width: 100%; height: auto; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

    /* ==============================================
       LAYOUT
    ============================================== */
    .wrap {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ==============================================
       TOPBAR — hidden on mobile, show on desktop
    ============================================== */
    .topbar { display: none; }

    /* ==============================================
       HEADER
    ============================================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .site-logo { height: 32px; width: auto; display: block; }
    .site-nav { display: none; } /* hidden on mobile */
    .nav-cta { display: none; }  /* hidden on mobile */

    /* Hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px 2px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--muted);
      border-radius: 2px;
      transition: all 0.25s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--primary); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--primary); }

    /* ==============================================
       MOBILE DRAWER
    ============================================== */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(7, 9, 15, 0.65);
    }
    .mobile-nav.open { display: block; }
    .drawer {
      position: absolute;
      top: 0; right: 0;
      width: min(300px, 82vw);
      height: 100%;
      background: var(--bg2);
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 6px;
      overflow-y: auto;
    }
    .drawer-close {
      align-self: flex-end;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
      margin-bottom: 8px;
    }
    .drawer-links { list-style: none; }
    .drawer-links li { border-bottom: 1px solid var(--border); }
    .drawer-links a {
      display: block;
      padding: 13px 6px;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
    }
    .drawer-links a:hover { color: var(--primary); }
    .drawer-btns { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
    .btn-block {
      display: block;
      text-align: center;
      padding: 11px;
      border-radius: var(--r);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
    }
    .btn-block-primary { background: var(--primary); color: #07090f; }
    .btn-block-outline { border: 1.5px solid var(--border); color: var(--muted); }

    /* ==============================================
       BREADCRUMB
    ============================================== */
    .breadcrumb {
      padding: 10px 0;
      font-size: 0.75rem;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .breadcrumb-inner {
      display: flex;
      align-items: center;
      gap: 5px;
      flex-wrap: nowrap;
      overflow: hidden;
    }
    .breadcrumb a {
      color: var(--muted);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .breadcrumb a:hover { color: var(--link); }
    .bc-sep { color: var(--border); flex-shrink: 0; }
    .bc-current {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }

    /* ==============================================
       MAIN — single column mobile, 2-col desktop
    ============================================== */
    .main-layout {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 20px 0 32px;
    }

    /* ==============================================
       ARTICLE
    ============================================== */
    .article-category {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .article-title {
      font-family: 'Merriweather', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--heading);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      font-size: 0.75rem;
      color: var(--muted);
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 18px;
    }
    .article-img {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      border-radius: var(--r);
      margin-bottom: 6px;
    }
    .img-caption {
      font-size: 0.7rem;
      color: var(--muted);
      text-align: center;
      margin-bottom: 20px;
      font-style: italic;
    }

    /* Article body typography */
    .article-body h2 {
      font-family: 'Merriweather', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--heading);
      margin: 28px 0 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .article-body h3 {
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--heading);
      margin: 20px 0 8px;
    }
    .article-body p {
      font-size: 0.9rem;
      margin-bottom: 14px;
      line-height: 1.8;
    }
    .article-body ul, .article-body ol {
      margin: 0 0 14px 18px;
    }
    .article-body li {
      font-size: 0.9rem;
      margin-bottom: 5px;
      line-height: 1.7;
    }
    .article-body strong { color: var(--heading); font-weight: 600; }
    .article-body a { color: var(--link); }

    /* Callout */
    .callout {
      background: var(--bg2);
      border-left: 3px solid var(--primary);
      border-radius: 0 var(--r) var(--r) 0;
      padding: 14px 16px;
      margin: 20px 0;
      font-size: 0.87rem;
      line-height: 1.65;
    }
    .callout strong { color: var(--primary); }

    /* Inline CTA */
    .inline-cta {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 16px;
      margin: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .inline-cta-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--heading);
      margin-bottom: 3px;
    }
    .inline-cta-desc { font-size: 0.82rem; color: var(--muted); }
    .btn-cta {
      display: block;
      text-align: center;
      padding: 10px 20px;
      background: var(--primary);
      color: #07090f;
      border-radius: var(--r);
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .btn-cta:hover { opacity: 0.88; text-decoration: none; }

    /* Table wrapper — scrollable on mobile */
    .tbl-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 16px 0 24px;
      border: 1px solid var(--border);
      border-radius: var(--r);
    }
    .info-table {
      width: 100%;
      min-width: 480px;
      border-collapse: collapse;
      font-size: 0.82rem;
    }
    .info-table th {
      background: var(--bg3);
      color: var(--heading);
      font-weight: 600;
      padding: 10px 12px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      white-space: nowrap;
    }
    .info-table td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .info-table tr:last-child td { border-bottom: none; }
    .info-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
    .badge-hot { color: #f59e0b; font-weight: 600; }
    .badge-ok  { color: #4ade80; font-weight: 600; }

    /* Game grid — 2 col on small mobile, 3 col on wider mobile */
    .game-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin: 16px 0 24px;
    }
    @media (min-width: 400px) {
      .game-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .game-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .game-card:hover { border-color: rgba(56,189,248,0.4); }
    .game-thumb {
      width: 100%;
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      color: var(--muted);
      text-align: center;
      padding: 6px;
      line-height: 1.3;
    }
    .g-emoji { font-size: 1.5rem; display: block; margin-bottom: 4px; }
    .game-info { padding: 6px 8px 8px; }
    .game-name { font-size: 0.7rem; font-weight: 600; color: var(--heading); line-height: 1.3; }
    .game-prov { font-size: 0.63rem; color: var(--muted); margin-top: 1px; }

    /* Provider tags */
    .prov-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin: 14px 0 20px;
    }
    .prov-tag {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 0.75rem;
      color: var(--muted);
    }

    /* FAQ */
    .faq-wrap { margin: 8px 0 20px; }
    .faq-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      margin-bottom: 8px;
      overflow: hidden;
    }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 13px 15px;
      cursor: pointer;
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--heading);
      user-select: none;
    }
    .faq-q:hover { color: var(--primary); }
    .faq-icon {
      flex-shrink: 0;
      font-size: 1.2rem;
      color: var(--muted);
      transition: transform 0.25s;
      line-height: 1;
    }
    .faq-item.open .faq-q { color: var(--primary); }
    .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
    .faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-ans-inner {
      padding: 0 15px 13px;
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Divider */
    .divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

    /* Anchor offset — prevent heading hidden under sticky header */
    .article-body h2[id],
    .article-body h3[id] {
      scroll-margin-top: 72px;
    }

    /* ==============================================
       SIDEBAR — shown below article on mobile
    ============================================== */
    .sidebar { display: flex; flex-direction: column; gap: 16px; }
    .s-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .s-card-head {
      background: var(--bg3);
      border-bottom: 1px solid var(--border);
      padding: 10px 14px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--heading);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .s-card-body { padding: 14px; }

    /* Sidebar CTA */
    .s-logo { height: 28px; width: auto; margin: 0 auto 10px; }
    .s-site-name { text-align: center; font-size: 0.9rem; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
    .s-desc { text-align: center; font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
    .rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 14px; font-size: 0.78rem; }
    .stars { color: var(--gold); }
    .btn-s-primary {
      display: block;
      text-align: center;
      padding: 10px;
      background: var(--primary);
      color: #07090f;
      border-radius: var(--r);
      font-size: 0.84rem;
      font-weight: 700;
      text-decoration: none;
      margin-bottom: 8px;
    }
    .btn-s-primary:hover { opacity: 0.88; text-decoration: none; }
    .btn-s-outline {
      display: block;
      text-align: center;
      padding: 9px;
      border: 1.5px solid var(--border);
      color: var(--muted);
      border-radius: var(--r);
      font-size: 0.82rem;
      text-decoration: none;
    }
    .btn-s-outline:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

    /* Sidebar TOC */
    .toc-list { list-style: none; }
    .toc-list li { margin-bottom: 6px; }
    .toc-list a {
      display: flex;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      line-height: 1.5;
    }
    .toc-list a:hover { color: var(--link); }
    .toc-num { color: var(--border); font-size: 0.72rem; flex-shrink: 0; padding-top: 1px; }

    /* Sidebar stats */
    .stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.8rem;
    }
    .stat-row:last-child { border-bottom: none; }
    .stat-lbl { color: var(--muted); }
    .stat-val { font-weight: 600; color: var(--heading); }

    /* Sidebar bonus */
    .bonus-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
    }
    .bonus-row:last-child { border-bottom: none; }
    .bonus-ico { font-size: 1.2rem; flex-shrink: 0; }
    .bonus-name { font-size: 0.8rem; font-weight: 600; color: var(--heading); }
    .bonus-val { font-size: 0.74rem; color: var(--gold); }

    /* ==============================================
       STICKY MOBILE BAR
    ============================================== */
    .sticky-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 150;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 10px 16px;
      display: flex;
      gap: 10px;
    }
    .sticky-bar a {
      flex: 1;
      display: block;
      text-align: center;
      padding: 11px 8px;
      border-radius: var(--r);
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
    }
    .sticky-bar .sb-login {
      border: 1.5px solid var(--border);
      color: var(--muted);
    }
    .sticky-bar .sb-daftar {
      background: var(--primary);
      color: #07090f;
    }

    /* ==============================================
       FOOTER
    ============================================== */
    .site-footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 28px 0 80px; /* extra bottom on mobile for sticky bar */
    }
    .footer-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 24px;
    }
    .footer-logo { height: 28px; width: auto; margin-bottom: 10px; }
    .footer-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
    .footer-col-title { font-size: 0.75rem; font-weight: 700; color: var(--heading); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 7px; }
    .footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; }
    .footer-links a:hover { color: var(--link); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 0.73rem;
      color: var(--muted);
    }

    /* ==============================================
       TABLET (≥ 640px)
    ============================================== */
    @media (min-width: 640px) {
      .wrap { padding: 0 24px; }
      .article-title { font-size: 1.6rem; }
      .article-img { max-height: 300px; }
      .article-body h2 { font-size: 1.2rem; }
      .game-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
      .game-thumb { font-size: 0.72rem; }
      .g-emoji { font-size: 1.7rem; }
      .game-name { font-size: 0.75rem; }
      .inline-cta { flex-direction: row; align-items: center; justify-content: space-between; }
      .btn-cta { white-space: nowrap; flex-shrink: 0; display: inline-block; }
      .footer-grid { flex-direction: row; flex-wrap: wrap; }
      .footer-grid > div { flex: 1 1 140px; }
      .footer-bottom { flex-direction: row; justify-content: space-between; }
    }

    /* ==============================================
       DESKTOP (≥ 960px)
    ============================================== */
    @media (min-width: 960px) {
      /* Topbar */
      .topbar {
        display: block;
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 9px 0;
        font-size: 0.77rem;
        color: var(--muted);
      }
      .topbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .topbar-left { display: flex; align-items: center; gap: 14px; }
      .topbar-tag {
        background: rgba(56,189,248,0.1);
        color: var(--primary);
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 0.7rem;
        font-weight: 600;
      }
      .topbar-right { display: flex; gap: 10px; }
      .topbar-link { color: var(--muted); font-size: 0.77rem; text-decoration: none; }
      .topbar-link:hover { color: var(--primary); }

      /* Header */
      .site-logo { height: 36px; }
      .hamburger { display: none; }
      .site-nav {
        display: flex;
        gap: 4px;
        align-items: center;
      }
      .nav-link {
        display: block;
        padding: 6px 12px;
        font-size: 0.82rem;
        color: var(--muted);
        border-radius: 4px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
      }
      .nav-link:hover { color: var(--heading); background: var(--bg3); text-decoration: none; }
      .nav-cta {
        display: inline-block;
        padding: 7px 16px;
        background: var(--primary);
        color: #07090f;
        border-radius: var(--r);
        font-size: 0.82rem;
        font-weight: 600;
        margin-left: 8px;
        text-decoration: none;
        transition: opacity 0.2s;
      }
      .nav-cta:hover { opacity: 0.88; text-decoration: none; }

      /* Layout: article + sidebar side by side */
      .main-layout {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 32px;
        align-items: start;
        padding: 28px 0 60px;
      }

      /* Sidebar sticky */
      .sidebar { position: sticky; top: 76px; }

      /* Article */
      .article-title { font-size: 1.9rem; }
      .article-img { max-height: 360px; }
      .article-body h2 { font-size: 1.25rem; }
      .article-body h3 { font-size: 1rem; }
      .article-body p, .article-body li { font-size: 0.92rem; }
      .game-grid { grid-template-columns: repeat(4, 1fr); }

      /* Hide sticky bar on desktop, reset footer padding */
      .sticky-bar { display: none; }
      .site-footer { padding-bottom: 24px; }
    }
