    :root{
      /* Slightly neutral gray cast (less blue) across base surfaces */
      --bg-0:#070809;
      --bg-1:#0b0c0f;
      --bg-2:#151619;
      --bg-3:#1c2329;
      --bg-4:#262d34;

      --text:#e8eef6;
      --muted:rgba(232,238,246,.72);

      --line:rgba(255,255,255,.10);
      --line2:rgba(255,255,255,.14);

      --accent:#e01818;
      --accent2:#ff3b2f;
      --steel:#2e3a44;
      --steel2:#1e242a;

      --shadow: 0 18px 45px rgba(0,0,0,.55);
      --shadow-soft: 0 10px 24px rgba(0,0,0,.35);

      /* Squarish UI (≈2–6px), aligned with slot tiles reference */
      --radius-sm: 3px;
      --radius: 4px;
      --radius-lg: 6px;

      --max: 1100px;
      /* Header: switch to drawer nav at same width as main content column */
      --nav-break: 1100px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
      color:var(--text);
      background:var(--bg-0);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}

    /* Top bar */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background-color: var(--bg-0);
      background-image:
        linear-gradient(180deg, rgba(6,9,12,.88) 0%, rgba(6,9,12,.78) 100%),
        url("../header-bg.f27f4c7d206f2b27.webp");
      /* Honeycomb: denser pattern, tiled horizontally like reference */
      background-size: 100% 100%, 350px auto;
      background-position: center top, -2px -14px;
      background-repeat: no-repeat, repeat-x;
      border-bottom:none;
    }
    header > .container{
      position:relative;
      z-index:52;
    }
    .nav-backdrop{
      display:none;
      position:fixed;
      inset:0;
      z-index:44;
      background:rgba(0,0,0,.48);
      backdrop-filter: blur(2px);
    }
    body.site-nav-open .nav-backdrop{
      display:block;
    }
    .topbar{
      display:grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items:center;
      gap:12px 16px;
      padding:12px 0;
    }
    .brand{
      grid-column: 1;
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 0;
      max-width: 100%;
      justify-self: start;
    }
    .brand img{
      height:34px;
      width:auto;
      max-width:100%;
      display:block;
      object-fit:contain;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
    }
    .brand-name{
      display:block;
      max-width:100%;
      font-weight:900;
      font-size:clamp(20px, 2.3vw, 30px);
      letter-spacing:.02em;
      line-height:1.05;
      color:rgba(255,255,255,.96);
      text-shadow:0 10px 18px rgba(0,0,0,.45);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-toggle{
      display:none;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:5px;
      width:42px;
      height:42px;
      padding:0;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.18);
      background:rgba(10,15,20,.55);
      color:#fff;
      cursor:pointer;
      flex-shrink:0;
      justify-self:center;
    }
    .nav-toggle-line{
      display:block;
      width:20px;
      height:2px;
      border-radius:1px;
      background:rgba(255,255,255,.92);
      transition: transform .2s ease, opacity .2s ease;
    }
    body.site-nav-open .nav-toggle-line:nth-child(1){
      transform: translateY(7px) rotate(45deg);
    }
    body.site-nav-open .nav-toggle-line:nth-child(2){ opacity:0; }
    body.site-nav-open .nav-toggle-line:nth-child(3){
      transform: translateY(-7px) rotate(-45deg);
    }
    .nav{
      grid-column: 2;
      justify-self: center;
      display:flex;
      align-items:center;
      gap:18px;
      color:rgba(232,238,246,.86);
      font-size:14px;
      white-space:nowrap;
    }
    .nav a{
      padding:8px 10px;
      border-radius:var(--radius);
      transition: background .2s ease, color .2s ease;
    }
    .nav a:hover{
      background: rgba(255,255,255,.07);
      color: var(--text);
    }
    .auth{
      grid-column: 3;
      justify-self: end;
      display:flex;
      flex-direction:row;
      align-items:center;
      gap:10px;
      white-space:nowrap;
      flex-wrap:nowrap;
      justify-content:flex-end;
      flex-shrink:0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 16px;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.14);
      background: linear-gradient(180deg, rgba(44,70,91,.8), rgba(24,39,52,.86));
      color: var(--text);
      font-weight:700;
      letter-spacing:.2px;
      font-size:13px;
      box-shadow: 0 10px 22px rgba(0,0,0,.35);
    }
    .btn:active{transform: translateY(1px)}
    .btn-cta{
      border-color: rgba(255,59,47,.55);
      background: linear-gradient(180deg, #ff2d2d 0%, #b10e0e 100%);
      box-shadow:
        0 16px 34px rgba(224,24,24,.25),
        0 10px 22px rgba(0,0,0,.45);
    }
    .btn-cta:hover{
      filter: brightness(1.05);
      box-shadow:
        0 18px 40px rgba(224,24,24,.28),
        0 10px 22px rgba(0,0,0,.5);
    }

    /* Hero */
    .hero{
      position:relative;
      border-bottom:1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(780px 480px at 25% 25%, rgba(255,255,255,.08), transparent 60%),
        radial-gradient(620px 420px at 70% 45%, rgba(255,255,255,.06), transparent 62%),
        linear-gradient(180deg, var(--bg-1) 0%, #08090a 60%, #08090a 100%);
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-120px -120px auto -120px;
      height:420px;
      background:
        radial-gradient(closest-side at 70% 40%, rgba(255,255,255,.10), transparent 70%),
        radial-gradient(closest-side at 35% 65%, rgba(224,24,24,.12), transparent 70%);
      filter: blur(0px);
      opacity:.9;
      pointer-events:none;
    }
    /* Banner strip: same width as main .container.content-card; carousel fills full height */
    .hero-banners{
      position:relative;
      z-index:1;
      padding:0;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      align-items:stretch;
    }
    .hero-carousel{
      flex:1 1 auto;
      align-self:stretch;
      position:relative;
      width:100%;
      min-height:220px;
      border-radius:inherit;
      overflow:hidden;
    }
    .hero-slide{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      opacity:0;
      transition: opacity .4s ease;
      pointer-events:none;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }
    .hero-slide.is-active{
      opacity:1;
      z-index:1;
    }
    .hero-nav{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      z-index:4;
      width:40px;
      height:40px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.22);
      background:rgba(10,15,20,.75);
      color:rgba(255,255,255,.95);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      line-height:1;
      padding:0;
      backdrop-filter:blur(6px);
      box-shadow:0 8px 18px rgba(0,0,0,.4);
      transition:background .2s ease, border-color .2s ease;
    }
    .hero-nav:hover{
      background:rgba(45,70,91,.65);
      border-color:rgba(255,255,255,.32);
    }
    .hero-nav:focus-visible{
      outline:2px solid rgba(255,59,47,.75);
      outline-offset:2px;
    }
    .hero-nav-prev{left:14px}
    .hero-nav-next{right:14px}
    .hero-left{
      position:relative;
      z-index:2;
      max-width: min(640px, 94%);
      padding: 38px 56px 32px 48px;
      margin-left: clamp(18px, 3.2vw, 40px);
      pointer-events:auto;
    }
    .kicker{
      color: rgba(232,238,246,.80);
      font-size: 14px;
      letter-spacing:.3px;
      margin-bottom: 8px;
    }
    .bonus{
      font-weight:900;
      line-height: 1.02;
      font-size: clamp(28px, 4.2vw, 48px);
      color: #f1f6ff;
      text-shadow: 0 14px 28px rgba(0,0,0,.60);
    }
    .bonus .accent{
      color: #ff6b6b;
      text-shadow: 0 12px 22px rgba(224,24,24,.16);
    }
    .subbonus{
      margin-top: 12px;
      color: var(--muted);
      max-width: 52ch;
      font-size: 15px;
      line-height: 1.6;
    }
    .hero-actions{
      margin-top: 18px;
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }

    /* Hex/metal CTA like screenshot */
    .cta-hex{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 12px 22px;
      font-weight:900;
      letter-spacing:.3px;
      border-radius: var(--radius-lg);
      color: #fff;
      background:
        linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)) padding-box,
        linear-gradient(180deg, #ff3b2f, #a40d0d) border-box;
      border: 2px solid transparent;
      box-shadow:
        0 22px 40px rgba(0,0,0,.55),
        0 12px 22px rgba(224,24,24,.20);
      position:relative;
      clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
      min-width: 190px;
    }
    .cta-hex:hover{filter:brightness(1.05)}
    .cta-hex:active{transform:translateY(1px)}
    .cta-note{
      font-size: 12.5px;
      color: rgba(232,238,246,.68);
    }

    /* Primary page content (slots showcase + guide) */
    main.mid-primary{
      display:block;
      margin:0;
      padding:0;
      background:transparent;
      border:none;
    }
    .content-card{
      background: linear-gradient(180deg, rgba(7,10,14,.10), rgba(7,10,14,0));
      border-radius: var(--radius-lg);
    }

    /* Unified vector backdrop: slots showcase + guide */
    .mid-wrap{
      position:relative;
      background-color:var(--bg-0);
      /* One shorthand per layer: size pairs with the correct image (honey on top). 22px tile = larger hexes, fewer repeats. */
      background:
        url("../bg-honeycomb.svg") center top / 22px auto repeat,
        url("../bg-mid-unified.svg") center top / cover no-repeat;
    }
    /* Soft 5px seam at hero → mid-wrap (hides subpixel / layer hairlines) */
    .mid-wrap::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:5px;
      z-index:1;
      pointer-events:none;
      background:transparent;
    }
    /* Same feather on inner section tops (replaces hard 1px borders) */
    .mid-wrap .guide-content,
    .mid-wrap .faq-section,
    .mid-wrap .trust-strip{
      position:relative;
      isolation:isolate;
    }
    .mid-wrap .guide-content::before,
    .mid-wrap .faq-section::before,
    .mid-wrap .trust-strip::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:5px;
      z-index:2;
      pointer-events:none;
      background:linear-gradient(
        to bottom,
        rgba(7,8,9,0.5) 0%,
        rgba(7,8,9,0) 100%
      );
    }
    .mid-wrap .guide-content{
      padding:26px 0 46px;
      background:transparent;
    }
    .mid-wrap .slots-showcase{
      padding:14px 0 6px;
      background:transparent;
    }
    .mid-wrap .slots-card,
    .mid-wrap .guide-content > .container.content-card{
      background:linear-gradient(180deg, rgba(6,9,12,.12), rgba(6,9,12,.04));
    }
    .mid-wrap .faq-section > .container.content-card{
      background:linear-gradient(180deg, rgba(6,9,12,.12), rgba(6,9,12,.04));
      padding:22px 16px 28px;
      border-radius:var(--radius-lg);
    }
    .mid-wrap .faq-section{
      padding:26px 0 36px;
      background:transparent;
    }
    .mid-wrap .trust-strip{
      padding:8px 0 44px;
      text-align:center;
    }
    .trust-payments{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:12px;
      margin:0 0 26px;
    }
    .pay-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:46px;
      padding:10px 20px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(180deg, rgba(30,34,44,.98), rgba(12,14,20,.94));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1),
        0 8px 20px rgba(0,0,0,.4);
    }
    .pay-badge--visa{
      padding-left:22px;
      padding-right:22px;
    }
    .pay-visa-text{
      font-weight:900;
      font-size:17px;
      letter-spacing:.28em;
      color:#fff;
      font-family:system-ui,sans-serif;
    }
    .pay-badge--mc{
      padding-left:16px;
      padding-right:18px;
    }
    .mc-circles{
      position:relative;
      width:36px;
      height:24px;
      flex-shrink:0;
    }
    .mc-c{
      position:absolute;
      top:0;
      width:24px;
      height:24px;
      border-radius:50%;
      border:1px solid rgba(0,0,0,.25);
    }
    .mc-c--l{
      left:0;
      background:#eb001b;
      z-index:1;
    }
    .mc-c--r{
      left:12px;
      background:#f79e1b;
      z-index:2;
      mix-blend-mode:normal;
    }
    .mc-word{
      font-size:11px;
      font-weight:700;
      letter-spacing:.02em;
      color:rgba(255,255,255,.92);
      text-transform:lowercase;
      font-family:system-ui,sans-serif;
    }
    .pay-badge--btc{
      padding-left:14px;
      padding-right:16px;
      gap:8px;
    }
    .btc-mark{
      width:24px;
      height:24px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:15px;
      line-height:1;
      color:#fff;
      background:#f7931a;
      border:1px solid rgba(0,0,0,.22);
      font-family:system-ui,sans-serif;
    }
    .btc-word{
      font-size:11px;
      font-weight:800;
      letter-spacing:.06em;
      color:rgba(255,255,255,.92);
      text-transform:uppercase;
      font-family:system-ui,sans-serif;
    }
    .pay-badge--usdt{
      padding-left:14px;
      padding-right:16px;
      gap:8px;
    }
    .usdt-mark{
      width:24px;
      height:24px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:12px;
      line-height:1;
      color:#fff;
      background:#26a17b;
      border:1px solid rgba(0,0,0,.22);
      letter-spacing:.03em;
      font-family:system-ui,sans-serif;
    }
    .usdt-word{
      font-size:11px;
      font-weight:800;
      letter-spacing:.04em;
      color:rgba(255,255,255,.92);
      text-transform:uppercase;
      font-family:system-ui,sans-serif;
      white-space:nowrap;
    }
    .trust-age-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:58px;
      height:58px;
      margin:0 auto 22px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.88);
      font-weight:900;
      font-size:18px;
      color:rgba(255,255,255,.95);
      letter-spacing:.02em;
      box-shadow:0 0 0 1px rgba(0,0,0,.2), 0 8px 22px rgba(0,0,0,.35);
    }
    .trust-disclaimer{
      margin:0 auto;
      max-width:min(52ch, 92vw);
      font-size:12.5px;
      line-height:1.65;
      color:rgba(232,238,246,.58);
    }
    .visually-hidden{
      position:absolute;
      width:1px;
      height:1px;
      padding:0;
      margin:-1px;
      overflow:hidden;
      clip:rect(0,0,0,0);
      white-space:nowrap;
      border:0;
    }
    .faq-section-heading{
      margin:0 0 10px;
      padding-left:12px;
      border-left:3px solid var(--accent);
      font-weight:900;
      font-size:clamp(17px, 2.1vw, 20px);
      letter-spacing:.2px;
      color:rgba(255,255,255,.94);
    }
    .faq-section-intro{
      margin:0 0 16px;
      color:rgba(232,238,246,.72);
      line-height:1.6;
      font-size:14px;
      max-width:62ch;
    }
    /* FAQ placeholder output: styles for native <details> markup */
    .faq-section .container.content-card > details{
      margin:10px 0;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.09);
      background:linear-gradient(180deg, rgba(30,35,44,.98), rgba(20,24,32,.94));
      box-shadow:0 4px 14px rgba(0,0,0,.35);
      overflow:hidden;
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .faq-section .container.content-card > details[open]{
      border-color:rgba(255,59,47,.32);
      box-shadow:
        0 0 0 1px rgba(255,59,47,.1),
        0 10px 28px rgba(0,0,0,.42),
        0 -3px 0 0 var(--accent2),
        0 -14px 28px rgba(224,24,24,.2);
      background:linear-gradient(180deg, rgba(34,40,50,.98), rgba(18,22,30,.95));
    }
    .faq-section .container.content-card > details > summary{
      list-style:none;
      cursor:pointer;
      margin:0;
      padding:14px 52px 14px 16px;
      font-weight:800;
      font-size:14px;
      letter-spacing:.02em;
      line-height:1.35;
      color:rgba(245,248,252,.92);
      position:relative;
      outline:none;
    }
    .faq-section .container.content-card > details > summary:hover,
    .faq-section .container.content-card > details > summary:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.04);
    }
    .faq-section .container.content-card > details > summary:focus-visible{
      box-shadow:inset 0 0 0 2px rgba(255,59,47,.4);
    }
    .faq-section .container.content-card > details > summary::-webkit-details-marker{
      display:none;
    }
    .faq-section .container.content-card > details > summary::before{
      content:"";
      position:absolute;
      right:14px;
      top:50%;
      width:22px;
      height:22px;
      margin-top:-11px;
      border-radius:var(--radius-sm);
      border:1px solid rgba(255,255,255,.12);
      background:rgba(8,10,14,.45);
    }
    .faq-section .container.content-card > details > summary::after{
      content:"";
      position:absolute;
      right:20px;
      top:50%;
      width:0;
      height:0;
      margin-top:-3px;
      border-left:5px solid transparent;
      border-right:5px solid transparent;
      border-top:6px solid rgba(255,255,255,.75);
      transition:transform .22s ease;
    }
    .faq-section .container.content-card > details[open] > summary::after{
      transform:rotate(180deg);
    }
    .faq-section .container.content-card > details > p{
      margin:0;
      padding:12px 16px 14px 18px;
      color:rgba(232,238,246,.72);
      font-size:14px;
      font-weight:500;
      line-height:1.7;
      border-top:1px solid rgba(255,255,255,.07);
      background:rgba(8,10,14,.78);
    }
    /* FAQ: accordion chrome (match footer-style reference) */
    .faq-section .site-accordion{
      display:flex;
      flex-direction:column;
      gap:6px;
      max-width:100%;
    }
    .faq-section .acc-item{
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.09);
      background:linear-gradient(180deg, rgba(30,35,44,.98), rgba(20,24,32,.94));
      box-shadow:0 4px 14px rgba(0,0,0,.35);
      overflow:hidden;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .faq-section .acc-item.is-open{
      border-color:rgba(255,59,47,.32);
      box-shadow:
        0 0 0 1px rgba(255,59,47,.1),
        0 10px 28px rgba(0,0,0,.42),
        0 -3px 0 0 var(--accent2),
        0 -14px 28px rgba(224,24,24,.2);
    }
    .faq-section .acc-trigger{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin:0;
      padding:14px 16px;
      border:none;
      background:transparent;
      cursor:pointer;
      text-align:left;
      font:inherit;
      font-weight:800;
      font-size:14px;
      letter-spacing:.02em;
      line-height:1.35;
      color:rgba(245,248,252,.92);
      outline:none;
    }
    .faq-section .acc-trigger:hover,
    .faq-section .acc-trigger:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.04);
    }
    .faq-section .acc-trigger:focus-visible{
      box-shadow:inset 0 0 0 2px rgba(255,59,47,.4);
    }
    .faq-section .acc-label{flex:1; min-width:0}
    .faq-section .acc-icon{
      flex-shrink:0;
      width:22px;
      height:22px;
      position:relative;
      border-radius:var(--radius-sm);
      border:1px solid rgba(255,255,255,.12);
      background:rgba(8,10,14,.45);
    }
    .faq-section .acc-icon::before{
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:0;
      height:0;
      margin:-3px 0 0 -5px;
      border-left:5px solid transparent;
      border-right:5px solid transparent;
      border-top:6px solid rgba(255,255,255,.75);
      transition:transform .22s ease;
    }
    .faq-section .acc-item.is-open .acc-icon::before{
      transform:rotate(180deg);
      margin-top:-4px;
    }
    .faq-section .acc-panel{
      display:none;
      border-top:1px solid rgba(255,255,255,.07);
      background:rgba(8,10,14,.78);
      padding:2px 0 4px;
    }
    .faq-section .acc-item.is-open .acc-panel{
      display:block;
    }
    .faq-section .acc-answer{
      margin:0;
      padding:12px 16px 14px 18px;
      color:rgba(232,238,246,.72);
      font-size:14px;
      font-weight:500;
      line-height:1.7;
    }

    .slots-card{
      padding: 18px 0 20px;
    }
    .slots-row + .slots-row{
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .slots-row-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom: 14px;
      flex-wrap:wrap;
    }
    .slots-row-title{
      margin:0;
      font-weight:900;
      font-size: clamp(17px, 2.1vw, 20px);
      letter-spacing:.2px;
      color: rgba(255,255,255,.94);
    }
    .slots-card > .slots-row:first-child .slots-row-title{
      border-left: 3px solid var(--accent);
      padding-left: 12px;
    }
    .slots-row-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .slots-scroll-btns{
      display:flex;
      gap:8px;
    }
    .slots-arrow{
      width:36px;
      height:36px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.16);
      background: rgba(10,15,20,.55);
      color: rgba(255,255,255,.92);
      font-size:18px;
      line-height:1;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0;
      transition: background .18s ease, border-color .18s ease;
    }
    .slots-arrow:hover{
      background: rgba(45,70,91,.5);
      border-color: rgba(255,255,255,.24);
    }
    .slots-arrow:focus-visible{
      outline:2px solid rgba(255,59,47,.65);
      outline-offset:2px;
    }
    .slots-track{
      display:flex;
      gap:12px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding: 4px 2px 10px;
      margin:0 -2px;
      scrollbar-width:thin;
      scrollbar-color: rgba(255,255,255,.2) transparent;
      -webkit-overflow-scrolling:touch;
    }
    .slots-track::-webkit-scrollbar{height:6px}
    .slots-track::-webkit-scrollbar-thumb{
      background: rgba(255,255,255,.18);
      border-radius:999px;
    }
    .slot-card{
      position:relative;
      flex:0 0 auto;
      width: clamp(118px, 16.5vw, 168px);
      aspect-ratio: 400 / 600;
      border-radius: var(--radius-lg);
      overflow:hidden;
      border: 3px solid rgb(39, 52, 65);
      box-shadow: 0 12px 28px rgba(0,0,0,.4);
      display:block;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .slot-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(0,0,0,.48);
    }
    .slot-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      display:block;
    }
    /* Rows 1–2: hover = action background + red glow + play / demo */
    .slot-card--games::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      background:url("../thumbnail-action-background-image-3x2.676692466a7b840d.webp") center / cover no-repeat;
      opacity:0;
      transition: opacity .4s ease;
      pointer-events:none;
    }
    .slot-card--games::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:2;
      background: linear-gradient(
        to top,
        rgba(210, 28, 38, 0.58) 0%,
        rgba(200, 35, 45, 0.28) 38%,
        rgba(180, 30, 40, 0.08) 58%,
        transparent 74%
      );
      opacity:0;
      transition: opacity .4s ease;
      pointer-events:none;
    }
    .slot-card--games img{
      position:relative;
      z-index:1;
      transition: opacity .4s ease;
    }
    .slot-card--games:hover::after,
    .slot-card--games:hover::before{
      opacity:1;
    }
    .slot-card--games:hover img{
      opacity:0;
    }
    .slot-card--games .slot-rank,
    .slot-card--games .slot-badge{
      z-index:5;
      transition: opacity .3s ease;
    }
    .slot-card--games:hover .slot-rank{
      opacity:0;
    }
    .slot-card-actions{
      position:absolute;
      left:0;
      right:0;
      top:50%;
      transform: translateY(-50%);
      z-index:4;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:7px;
      padding: 0 8px;
      opacity:0;
      visibility:hidden;
      transition: opacity .35s ease .06s, visibility 0s linear .5s;
      pointer-events:none;
    }
    .slot-card--games:hover .slot-card-actions{
      opacity:1;
      visibility:visible;
      transition: opacity .35s ease .06s, visibility 0s linear 0s;
    }
    .slot-card-play{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:min(86%, 132px);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      font-weight:900;
      font-size: clamp(12px, 2.4vw, 14px);
      letter-spacing:.12em;
      color:#fff;
      text-transform:uppercase;
      background: linear-gradient(180deg, #ff3b2f 0%, #b10e0e 100%);
      box-shadow:
        0 8px 18px rgba(0,0,0,.45),
        0 2px 0 rgba(255,255,255,.12) inset;
    }
    .slot-card-demo{
      font-weight:800;
      font-size: clamp(11px, 2.2vw, 13px);
      letter-spacing:.04em;
      color: rgba(255,255,255,.95);
      text-shadow: 0 2px 10px rgba(0,0,0,.55);
    }
    @media (prefers-reduced-motion: reduce){
      .slot-card--games img,
      .slot-card--games::after,
      .slot-card--games::before,
      .slot-card--games .slot-rank,
      .slot-card-actions,
      .slot-card--sport::before{
        transition-duration: .01ms !important;
      }
    }
    .slot-rank{
      position:absolute;
      left:6px;
      bottom:4px;
      font-weight:900;
      font-size: clamp(26px, 5vw, 34px);
      line-height:1;
      color: #e01818;
      text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 10px 22px rgba(0,0,0,.45);
      z-index:2;
      pointer-events:none;
    }
    .slot-badge{
      position:absolute;
      top:8px;
      left:8px;
      z-index:3;
      font-size:11px;
      font-weight:800;
      letter-spacing:.2px;
      padding: 4px 8px;
      border-radius: var(--radius-sm);
      text-transform:uppercase;
      pointer-events:none;
    }
    .slot-badge--new{
      background: linear-gradient(180deg, #ff3b2f, #b10e0e);
      color: #fff;
      box-shadow: 0 6px 14px rgba(224,24,24,.35);
    }
    .slot-badge--exclusive{
      background: linear-gradient(180deg, #4a5fc7, #2a3470);
      color: #eef0ff;
      box-shadow: 0 6px 14px rgba(0,0,0,.35);
    }
    /* Row 3 sport: red glow anchored to bottom edge; label sits in same zone on hover */
    .slot-card--sport::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      top:auto;
      height:min(58%, 132px);
      z-index:1;
      background: linear-gradient(
        to top,
        rgba(220, 35, 48, 0.78) 0%,
        rgba(200, 32, 42, 0.42) 38%,
        rgba(175, 28, 38, 0.14) 68%,
        transparent 100%
      );
      opacity:0;
      transition: opacity .35s ease;
      pointer-events:none;
    }
    .slot-card--sport img{
      position:relative;
      z-index:0;
    }
    .slot-card--sport:hover::before{
      opacity:1;
    }
    .slot-card--sport:hover{
      box-shadow:
        0 18px 36px rgba(0,0,0,.48),
        0 0 26px rgba(210, 40, 50, 0.32);
    }
    .slot-card--sport .slot-sport-label{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      padding: 10px 8px 8px;
      text-align:center;
      font-size: 12px;
      font-weight:800;
      letter-spacing:.15px;
      color: rgba(255,255,255,.94);
      background: linear-gradient(180deg, transparent, rgba(5,8,12,.88) 45%, rgba(5,8,12,.96));
      z-index:2;
      pointer-events:none;
      transition: background .35s ease, text-shadow .35s ease;
    }
    .slot-card--sport:hover .slot-sport-label{
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.08) 55%,
        transparent 100%
      );
      text-shadow:
        0 1px 2px rgba(0,0,0,.85),
        0 4px 14px rgba(0,0,0,.55);
    }

    .title-row{
      padding: 18px 0 8px;
    }
    /* Must look like H1 but not be an H1 tag */
    .title-like-h1{
      font-weight: 900;
      letter-spacing: .2px;
      margin: 0;
      font-size: clamp(28px, 4.3vw, 44px);
      line-height: 1.05;
      text-shadow: 0 14px 26px rgba(0,0,0,.35);
    }
    .lede{
      margin: 10px 0 0;
      color: rgba(232,238,246,.78);
      line-height: 1.75;
      font-size: 15.5px;
      max-width: 92ch;
    }

    .grid{
      display:grid;
      gap: 20px;
      align-items:start;
      margin-top: 18px;
    }
    .panel{
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(9,12,16,.28), rgba(9,12,16,.14));
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    .panel-inner{
      padding: 18px 18px;
      background: rgb(21, 29, 36);
    }
    .sidebox{
      position:sticky;
      top:78px;
    }
    .sidebox .panel-inner{
      padding: 16px 16px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      margin-bottom: 12px;
    }
    .badge .dot{
      width:10px; height:10px; border-radius:999px;
      background: radial-gradient(circle at 35% 35%, #ff7a7a, #d41010 65%);
      box-shadow: 0 10px 20px rgba(224,24,24,.22);
    }
    .badge .txt{font-weight:800; font-size:13px; color: rgba(255,255,255,.92)}
    .side-cta{
      margin-top: 10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mini{
      font-size:12.5px;
      color: rgba(232,238,246,.66);
      line-height:1.55;
    }

    /* Generic content styles (no h2-h6 used) */
    .content p{margin:0 0 12px; color: rgba(232,238,246,.80); line-height:1.8}
    .content ul{margin: 0 0 14px 18px; color: rgba(232,238,246,.80); line-height:1.8}
    .content li{margin: 6px 0}
    .content strong{color: rgba(255,255,255,.92)}
    .content a{color: #ff6b6b; text-decoration: underline; text-decoration-color: rgba(255,107,107,.45)}

    /* Table styling + responsiveness */
    .table-wrap{
      overflow-x:auto;
      -webkit-overflow-scrolling: touch;
      margin: 14px 0;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(10,15,20,.45), rgba(10,15,20,.25));
      box-shadow: var(--shadow-soft);
    }
    table{
      width:100%;
      border-collapse: collapse;
      min-width: 480px;
    }
    thead th{
      text-align:left;
      font-size: 13px;
      letter-spacing:.2px;
      padding: 12px 12px;
      color: rgba(255,255,255,.92);
      background: linear-gradient(180deg, rgba(45,70,91,.45), rgba(30,47,62,.35));
      border-bottom: 1px solid rgba(255,255,255,.10);
    }
    tbody td{
      padding: 12px 12px;
      color: rgba(232,238,246,.80);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    tbody tr:hover td{background: rgba(255,255,255,.04)}
    tbody tr:last-child td{border-bottom:none}

    @media (max-width:600px){
      table{min-width: 100%}
      thead{display:none}
      tr{
        display:block;
        margin-bottom: 1em;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: var(--radius-lg);
        overflow:hidden;
        background: rgba(10,15,20,.35);
      }
      tbody td{
        display:flex;
        justify-content:space-between;
        gap: 12px;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }
      tbody td::before{
        content: attr(data-label);
        font-weight: 900;
        color: rgba(255,255,255,.88);
      }
      tbody tr:last-child td:last-child{border-bottom:none}
      .table-wrap{border:none; background: transparent; box-shadow:none; padding:0}
    }

    /* Reviews */
    .reviews{margin-top: 18px;}
    .comment{
      background: linear-gradient(180deg, rgba(10,15,20,.50), rgba(10,15,20,.26));
      padding: 1em 1.2em;
      border-radius: var(--radius-lg);
      margin-bottom: 12px;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: 0 10px 24px rgba(0,0,0,.35);
    }
    .comment-author{
      font-weight: 900;
      font-size: 1.05em;
      color: rgba(255,107,107,.95);
    }
    .comment-date{
      margin-top: 3px;
      opacity: .6;
      font-size: .85em;
      color: rgba(232,238,246,.86);
    }
    .comment-text{
      margin-top: .5em;
      line-height: 1.6;
      color: rgba(232,238,246,.80);
    }

    .review-form{
      margin-top: 16px;
      background: linear-gradient(180deg, rgba(10,15,20,.50), rgba(10,15,20,.26));
      padding: 1em 1.2em;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: 0 10px 24px rgba(0,0,0,.35);
    }
    .review-form .form-title{
      font-weight: 900;
      font-size: 1.05em;
      color: rgba(255,255,255,.92);
      margin: 0 0 10px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-top: 10px;
    }
    textarea, input[type="text"]{
      width:100%;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(6,9,12,.45);
      color: rgba(255,255,255,.92);
      padding: 12px 12px;
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    textarea{min-height: 110px; resize: vertical}
    textarea:focus, input[type="text"]:focus{
      border-color: rgba(255,59,47,.65);
      box-shadow: 0 0 0 3px rgba(224,24,24,.18);
    }
    .submit-row{margin-top: 12px}
    .btn-submit{
      width: 100%;
      border: 1px solid rgba(255,59,47,.55);
      background: linear-gradient(180deg, #ff2d2d 0%, #b10e0e 100%);
      color:#fff;
      font-weight: 900;
      border-radius: var(--radius-lg);
      padding: 12px 16px;
      box-shadow:
        0 16px 34px rgba(224,24,24,.22),
        0 10px 22px rgba(0,0,0,.45);
      cursor:pointer;
    }
    .btn-submit:active{transform: translateY(1px)}

    /* Author */
    .author{
      margin-top: 18px;
      background: linear-gradient(180deg, rgba(10,15,20,.52), rgba(10,15,20,.26));
      border: 1px solid rgba(255,255,255,.10);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .avatar{
      flex: 0 0 56px;
      width:56px;
      height:56px;
      border-radius:999px;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), rgba(255,255,255,.06) 45%, rgba(255,255,255,.03) 60%),
        linear-gradient(180deg, rgba(45,70,91,.55), rgba(10,15,20,.30));
      border:1px solid rgba(255,255,255,.14);
      box-shadow: 0 10px 20px rgba(0,0,0,.35);
      position:relative;
    }
    .avatar::after{
      content:"";
      position:absolute;
      inset: 14px 18px 18px 18px;
      border-radius: var(--radius-sm) var(--radius-sm) var(--radius) var(--radius);
      background: rgba(255,255,255,.16);
      clip-path: polygon(50% 0%, 85% 25%, 100% 70%, 50% 100%, 0% 70%, 15% 25%);
      opacity:.55;
    }
    .author .name{
      font-weight: 900;
      font-size: 16px;
      color: rgba(255,255,255,.92);
      margin: 0;
    }
    .author .bio{
      margin: 6px 0 0;
      color: rgba(232,238,246,.76);
      line-height: 1.75;
      font-size: 14.5px;
    }

    /* Footer */
    footer{
      border-top: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(10,15,20,.92), rgba(5,7,10,.96));
      padding: 18px 0;
      color: rgba(232,238,246,.70);
    }
    .footer-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      font-size: 13px;
    }
    .foot-links{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }
    .foot-links a{
      padding: 6px 8px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }

    /* Responsive */
    @media (max-width: 1100px){
      .topbar{
        display:flex;
        flex-wrap:nowrap;
        align-items:center;
        justify-content:flex-start;
        gap:8px 10px;
        min-width:0;
      }
      .brand{
        grid-column:auto;
        flex:1 1 0;
        min-width:0;
        max-width:100%;
        overflow:hidden;
      }
      .brand img{
        height:auto;
        max-height:34px;
        max-width:clamp(80px, 42vw, 200px);
        width:auto;
      }
      .nav-toggle{
        display:inline-flex !important;
        order:2;
        justify-self:auto;
        flex-shrink:0;
      }
      .auth{
        grid-column:auto;
        order:3;
        flex:0 0 auto;
        flex-direction:row;
        flex-wrap:nowrap;
        justify-content:flex-end;
        gap:8px;
        margin-left:auto;
      }
      .auth .btn{
        padding:8px 12px;
        font-size:11.5px;
        letter-spacing:0;
        flex:0 0 auto;
      }
      .nav{
        position:fixed;
        top:0;
        left:0;
        bottom:0;
        width:min(300px, 86vw);
        grid-column:unset;
        justify-self:stretch;
        flex-direction:column;
        align-items:stretch;
        gap:2px;
        padding: calc(56px + 14px) 14px 20px;
        padding-bottom:max(20px, env(safe-area-inset-bottom, 0px));
        white-space:normal;
        background:rgba(11, 13, 17, 0.98);
        border-right:1px solid rgba(255,255,255,.12);
        box-shadow: 14px 0 36px rgba(0,0,0,.5);
        z-index:56;
        transform:translateX(-105%);
        visibility:hidden;
        transition: transform .28s ease, visibility .28s;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
      }
      .nav.is-open{
        transform:translateX(0);
        visibility:visible;
      }
      .nav a{
        padding:12px 10px;
        font-size:15px;
      }
      body.site-nav-open{
        overflow:hidden;
      }
      .container{
        padding-left:14px;
        padding-right:14px;
      }
    }
    @media (max-width: 500px){
      .topbar{
        flex-wrap:wrap;
        row-gap:10px;
        column-gap:10px;
      }
      .brand{
        flex:1 1 auto;
        max-width:calc(100% - 52px);
      }
      .brand img{
        max-width:min(220px, 100%);
      }
      .nav-toggle{
        margin-left:auto;
      }
      .auth{
        flex:1 1 100%;
        width:100%;
        margin-left:0;
        justify-content:center;
        gap:10px;
      }
      .auth .btn{
        padding:9px 14px;
        font-size:12px;
      }
    }
    .nav-toggle:focus-visible{
      outline:2px solid rgba(255,59,47,.75);
      outline-offset:2px;
    }
    @media (min-width: 1101px){
      .brand{min-width:min(180px, 22vw);}
      .nav-toggle{display:none !important;}
      .nav{
        position:static !important;
        transform:none !important;
        visibility:visible !important;
        width:auto;
        height:auto;
        inset:auto !important;
        left:auto !important;
        top:auto !important;
        right:auto !important;
        bottom:auto !important;
        flex-direction:row;
        align-items:center;
        padding:0;
        background:transparent;
        border:none;
        box-shadow:none;
        overflow:visible;
        grid-column:2;
        justify-self:center;
      }
      body.site-nav-open{overflow:visible;}
      body.site-nav-open .nav-backdrop{display:none !important;}
    }
    @media (max-width: 900px){
      .hero-left{padding: 28px 48px 26px 44px; max-width: 100%; margin-left: clamp(12px, 2.5vw, 28px)}
      .grid{grid-template-columns: 1fr}
      .sidebox{position:relative; top:auto}
    }
    @media (max-width: 520px){
      .brand{min-width:0}
      .auth .btn{padding:8px 12px; font-size:11px}
      .nav-toggle{width:38px; height:38px}
      .btn{padding:10px 12px}
      .hero-left{padding: 24px 44px 22px 44px; margin-left: clamp(10px, 2vw, 22px)}
      .cta-hex{width: 100%}
      .hero-actions{width: 100%}
      .author{flex-direction:column; align-items:stretch}
      .avatar{margin-bottom: 6px}
      .comment, .review-form{padding: 1em 1.05em}
      .container{padding-left:12px; padding-right:12px}
      .slots-row-title{font-size: clamp(15px, 4vw, 18px)}
    }
