:root {
      --color-primary: #7d2ae8;
      --color-primary-dark: #3a0c5e;
      --color-accent: #f5b800;
      --color-bg: #15052b;
      --color-bg-2: #210839;
      --color-text: #ffffff;
      --color-muted: #b9a3d6;
      --color-cta: #f5b800;
      --color-cta-hover: #ffce3a;
      --color-cta-text: #15052b;
      --color-border: rgba(125, 42, 232, 0.35);
      --max-w: 1200px;
      --gap: 24px;
      --r-sm: 8px;
      --r-md: 14px;
      --r-lg: 22px;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--color-accent); text-decoration: none; }
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 3px;
      border-radius: 4px;
    }
    img { max-width: 100%; height: auto; display: block; }
    ul, ol { list-style: none; }
    @media (prefers-reduced-motion: no-preference) {
      html { scroll-behavior: smooth; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

    .skip {
      position: absolute; top: -100px; left: 16px; padding: 8px 16px;
      background: var(--color-accent); color: var(--color-cta-text);
      border-radius: 4px; z-index: 999; font-weight: 700;
    }
    .skip:focus { top: 16px; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

    
    .site-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(21, 5, 43, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--color-border);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; gap: 16px;
    }
    .brand {
      display: inline-flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 22px; color: var(--color-text);
    }
    .brand svg { width: 36px; height: 36px; }
    .nav-links { display: none; gap: 24px; flex: 1; justify-content: center; }
    .nav-links a { color: var(--color-text); font-weight: 500; font-size: 15px; }
    .nav-links a:hover { color: var(--color-accent); }
    @media (min-width: 768px) { .nav-links { display: flex; } }

    .btn {
      display: inline-block; padding: 11px 22px; border-radius: var(--r-md);
      font-weight: 700; font-size: 15px; cursor: pointer;
      transition: transform 0.15s ease, background-color 0.15s ease;
      border: none; text-align: center;
    }
    .btn-primary {
      background: var(--color-cta); color: var(--color-cta-text);
    }
    .btn-primary:hover { background: var(--color-cta-hover); transform: translateY(-1px); }
    .btn-secondary {
      background: transparent; color: var(--color-text);
      border: 1.5px solid var(--color-border);
    }
    .btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
    .btn-block { display: block; width: 100%; }
    .btn-lg { padding: 14px 28px; font-size: 17px; }

    
    .hero {
      padding: 80px 0 64px;
      background:
        radial-gradient(1100px 600px at 50% 0%, rgba(125, 42, 232, 0.28), transparent 60%),
        linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg) 100%);
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(36px, 6vw, 64px); font-weight: 800;
      line-height: 1.1; margin-bottom: 18px;
      color: var(--color-text);
    }
    .hero h1 .accent {
      color: var(--color-accent);
      display: inline-block;
    }
    .hero .lede {
      color: var(--color-muted); font-size: 18px; max-width: 720px;
      margin: 0 auto 28px;
    }
    .bonus-badge {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 22px; margin-bottom: 28px;
      border: 1.5px solid var(--color-accent);
      border-radius: 100px;
      background: rgba(245, 184, 0, 0.08);
      font-weight: 700; color: var(--color-accent); font-size: 15px;
    }
    .hero-ctas {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .trust-bar {
      display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
      color: var(--color-muted); font-size: 14px;
    }
    .trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
    .trust-bar strong { color: var(--color-text); font-weight: 600; }

    
    section { padding: 64px 0; }
    section h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800; margin-bottom: 12px;
      text-align: center; color: var(--color-text);
    }
    section .sub {
      text-align: center; color: var(--color-muted);
      max-width: 700px; margin: 0 auto 40px;
    }
    section p { color: var(--color-muted); margin-bottom: 14px; }
    section ul.list { color: var(--color-muted); }
    section ul.list li {
      padding: 8px 0 8px 28px; position: relative;
    }
    section ul.list li::before {
      content: "✓"; color: var(--color-accent); position: absolute;
      left: 0; top: 8px; font-weight: 700;
    }

    
    .bonus-wrap {
      background: linear-gradient(135deg, rgba(125, 42, 232, 0.18), rgba(245, 184, 0, 0.06));
      border: 1px solid var(--color-border);
      border-radius: var(--r-lg);
      padding: 40px 28px;
    }
    .bonus-steps {
      display: grid; grid-template-columns: 1fr; gap: 18px;
      margin: 28px 0;
    }
    @media (min-width: 768px) {
      .bonus-steps { grid-template-columns: repeat(3, 1fr); }
    }
    .bonus-step {
      background: rgba(21, 5, 43, 0.5);
      padding: 22px; border-radius: var(--r-md);
      text-align: center;
    }
    .bonus-step .num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--color-accent); color: var(--color-cta-text);
      font-weight: 800; font-size: 18px; margin-bottom: 12px;
    }
    .bonus-step h3 { color: var(--color-text); font-size: 17px; margin-bottom: 6px; }
    .bonus-step p { color: var(--color-muted); font-size: 14px; margin: 0; }

    table.data {
      width: 100%; border-collapse: collapse;
      background: rgba(21, 5, 43, 0.5);
      border-radius: var(--r-md); overflow: hidden;
      margin: 24px 0;
    }
    table.data caption {
      caption-side: top; text-align: left;
      color: var(--color-muted); padding: 0 0 12px;
      font-size: 14px; font-weight: 600;
    }
    table.data th, table.data td {
      padding: 12px 14px; text-align: left;
      border-bottom: 1px solid var(--color-border);
    }
    table.data th {
      background: rgba(125, 42, 232, 0.18);
      color: var(--color-text); font-weight: 700;
      font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
    }
    table.data td { color: var(--color-muted); font-size: 15px; }
    table.data tr:last-child td { border-bottom: none; }

    
    .games-grid {
      display: grid; gap: 14px;
      grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 600px) {
      .games-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 900px) {
      .games-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .game-card {
      aspect-ratio: 4 / 3;
      border-radius: var(--r-md);
      padding: 14px;
      display: flex; align-items: flex-end;
      font-weight: 700; color: var(--color-text);
      box-shadow: 0 4px 18px rgba(0,0,0,0.4);
      position: relative; overflow: hidden;
    }
    .game-card .label {
      position: relative; z-index: 2;
      font-size: 14px; line-height: 1.25;
    }
    .game-card .provider {
      font-size: 11px; font-weight: 500; opacity: 0.85;
      display: block; margin-top: 4px;
    }
    .game-card::before {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
    }
    .gc-1 { background: linear-gradient(135deg, #ff6b9d, #ff2e63); }
    .gc-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
    .gc-3 { background: linear-gradient(135deg, #fa709a, #fee140); }
    .gc-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
    .gc-5 { background: linear-gradient(135deg, #fcb045, #fd1d1d); }
    .gc-6 { background: linear-gradient(135deg, #667eea, #764ba2); }
    .gc-7 { background: linear-gradient(135deg, #f093fb, #f5576c); }
    .gc-8 { background: linear-gradient(135deg, #30cfd0, #330867); }

    .providers-bar {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center; margin-top: 32px;
    }
    .provider-pill {
      padding: 8px 16px; border-radius: 100px;
      background: rgba(125, 42, 232, 0.18);
      border: 1px solid var(--color-border);
      color: var(--color-text); font-size: 13px; font-weight: 600;
    }

    
    .pay-grid {
      display: grid; gap: 12px;
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 24px;
    }
    @media (min-width: 600px) { .pay-grid { grid-template-columns: repeat(4, 1fr); } }
    .pay-card {
      padding: 18px 14px; border-radius: var(--r-md);
      background: rgba(21, 5, 43, 0.5);
      border: 1px solid var(--color-border);
      text-align: center;
    }
    .pay-card .name {
      font-weight: 700; color: var(--color-text); font-size: 16px;
    }
    .pay-card .speed { color: var(--color-muted); font-size: 13px; margin-top: 4px; }

    
    .features-grid {
      display: grid; gap: 16px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
    .feature {
      padding: 24px; border-radius: var(--r-md);
      background: rgba(21, 5, 43, 0.5);
      border: 1px solid var(--color-border);
    }
    .feature .ico {
      display: inline-flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(245, 184, 0, 0.14);
      font-size: 22px; margin-bottom: 14px;
    }
    .feature h3 { color: var(--color-text); font-size: 18px; margin-bottom: 6px; }
    .feature p { color: var(--color-muted); margin: 0; font-size: 14.5px; }

    
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--color-border);
      background: transparent;
    }
    .faq-item summary {
      padding: 18px 0; cursor: pointer; list-style: none;
      font-weight: 700; color: var(--color-text);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "+"; font-size: 22px; color: var(--color-accent);
      transition: transform 0.2s;
    }
    .faq-item[open] summary::after { content: "−"; }
    .faq-item .a { padding: 0 0 18px; color: var(--color-muted); font-size: 15px; }

    
    .cta-strip {
      background: linear-gradient(135deg, #7d2ae8, #f5b800);
      padding: 48px 0; text-align: center;
      border-radius: var(--r-lg); margin: 0 0 0;
    }
    .cta-strip h2 { color: #fff; margin-bottom: 10px; }
    .cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 24px; }
    .cta-strip .btn-primary {
      background: #15052b; color: #fff;
    }

    
    .site-footer {
      padding: 56px 0 24px;
      background: var(--color-bg-2);
      border-top: 1px solid var(--color-border);
      font-size: 14px;
    }
    .footer-grid {
      display: grid; gap: 32px;
      grid-template-columns: 1fr;
      margin-bottom: 32px;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
    .footer-col h4 {
      color: var(--color-text); font-size: 15px;
      margin-bottom: 14px; font-weight: 700;
    }
    .footer-col p, .footer-col a {
      color: var(--color-muted); font-size: 14px; line-height: 1.7;
    }
    .footer-col a { display: block; }
    .footer-col a:hover { color: var(--color-accent); }

    .footer-pay {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 24px;
    }
    .footer-pay span {
      padding: 6px 12px; border-radius: 6px;
      background: rgba(125, 42, 232, 0.18);
      color: var(--color-text); font-size: 12px; font-weight: 600;
    }

    .footer-bottom {
      padding-top: 24px; border-top: 1px solid var(--color-border);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      color: var(--color-muted); font-size: 13px;
    }
    .age-notice {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px; background: rgba(245, 184, 0, 0.12);
      border-radius: 6px; color: var(--color-accent); font-weight: 600;
    }

    /* ── Mobile overflow & responsive guards ───────────────────────────── */
    html, body {
      overflow-x: clip;
      max-width: 100vw;
    }
    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 24px 0;
      border-radius: var(--r-md);
      border: 1px solid var(--color-border);
    }
    .table-wrap > table.data {
      margin: 0;
      min-width: 520px;
      border-radius: 0;
      border: none;
    }
    .table-wrap > table.data caption {
      padding: 12px 14px;
    }

    @media (max-width: 600px) {
      .container { padding: 0 14px; }

      .nav { gap: 10px; padding: 12px 0; }
      .nav > .btn { padding: 9px 14px; font-size: 13px; }
      .brand { font-size: 18px; gap: 8px; }
      .brand svg { width: 30px; height: 30px; }

      .hero { padding: 52px 0 40px; }
      .hero h1 { font-size: clamp(26px, 8vw, 40px); line-height: 1.15; margin-bottom: 14px; }
      .hero .lede { font-size: 15.5px; margin-bottom: 22px; }
      .bonus-badge { font-size: 12px; padding: 9px 14px; margin-bottom: 20px; gap: 6px; }
      .hero-ctas { gap: 10px; margin-bottom: 26px; flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { width: 100%; }
      .btn-lg { padding: 13px 22px; font-size: 15px; }
      .trust-bar { gap: 12px 20px; font-size: 12.5px; }

      section { padding: 40px 0; }
      section h2 { font-size: clamp(22px, 6.5vw, 30px); line-height: 1.2; }
      section .sub { font-size: 14.5px; margin-bottom: 28px; }

      .bonus-wrap { padding: 22px 14px; }
      .bonus-headline { font-size: clamp(20px, 5.5vw, 28px); }
      .bonus-step { padding: 18px 14px; }
      .bonus-step h3 { font-size: 16px; }

      .games-grid { gap: 10px; }
      .game-card { padding: 10px; }
      .game-card .label { font-size: 12.5px; }
      .game-card .provider { font-size: 10px; }

      .pay-grid { gap: 10px; }
      .pay-card { padding: 14px 10px; }
      .pay-card .name { font-size: 14px; }
      .pay-card .speed { font-size: 12px; }

      .feature { padding: 20px 16px; }
      .feature h3 { font-size: 16.5px; }
      .feature .ico { width: 44px; height: 44px; font-size: 20px; }

      .providers-bar { gap: 8px; }
      .provider-pill { padding: 6px 12px; font-size: 12px; }

      .vip-tier { padding: 18px 10px; }
      .vip-tier .badge { font-size: 24px; }
      .vip-tier h4 { font-size: 12.5px; }

      .tour-card { padding: 22px 18px; }
      .tour-card .prize { font-size: clamp(24px, 7vw, 34px); }

      .faq-item summary { font-size: 15px; padding: 16px 0; gap: 12px; }
      .faq-item summary::after { font-size: 22px; }
      .faq-item .a { font-size: 14.5px; }

      .cta-strip { padding: 36px 18px; border-radius: 14px; }
      .cta-strip h2 { font-size: clamp(20px, 5.5vw, 28px); }
      .cta-strip p { font-size: 14.5px; }

      .footer-grid { gap: 26px; }
      .footer-col h4 { font-size: 13px; }
      .footer-col p, .footer-col a { font-size: 13.5px; }
      .footer-pay span { font-size: 11px; padding: 5px 10px; }
      .footer-bottom { font-size: 12px; gap: 10px; }
      .age-notice { font-size: 12px; padding: 6px 10px; }
    }

    @media (max-width: 380px) {
      .nav > .btn { padding: 8px 10px; font-size: 12px; letter-spacing: 0.02em; }
      .brand { font-size: 16px; }
      .brand svg { width: 26px; height: 26px; }
      .container { padding: 0 12px; }
      .hero h1 { font-size: clamp(24px, 7.5vw, 32px); }
    }
