html, body { overflow-x: hidden; max-width: 100vw; }

  .games-hero {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
    border-radius: var(--rad);
    background: var(--grad);
    color: #fff;
    overflow: hidden;
    margin-bottom: var(--sp3);
    box-shadow: var(--shadow);
  }
  .games-hero::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--acc) 0%, transparent 70%);
    opacity: 0.35;
    filter: blur(60px);
    pointer-events: none;
  }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .games-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
  }
  .hero-intro {
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 720px;
    opacity: 0.95;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }
  .hero-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--rad-s);
    padding: 1.25rem;
    text-align: center;
  }
  .stat-figure {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--acc);
    display: block;
    line-height: 1;
  }
  .stat-caption {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--acc);
    color: #111;
    padding: 1rem 2rem;
    border-radius: var(--rad-s);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.35); color: #111; }

  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--fg);
  }
  .section-subtitle {
    color: var(--mute);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
  }
  .block { margin-bottom: var(--sp3); }

  /* Category cards */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
  }
  .category-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 1.75rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
  }
  .category-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad);
    opacity: 0.8;
  }
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--acc);
  }
  .category-card h3 {
    color: var(--fg);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
  }
  .category-card p {
    color: var(--mute);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  .cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--acc);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  /* Live casino tabs-style */
  .live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  .live-card {
    padding: 1.75rem;
    border-radius: var(--rad);
    background: linear-gradient(145deg, var(--bg2) 0%, var(--bg) 100%);
    border-left: 4px solid var(--acc);
    box-shadow: var(--shadow);
    transition: transform .3s ease;
  }
  .live-card:hover { transform: translateY(-4px); }
  .live-card h3 {
    margin: 0 0 0.75rem;
    color: var(--fg);
    font-size: 1.15rem;
  }
  .live-card p {
    color: var(--mute);
    margin: 0;
    line-height: 1.6;
  }

  /* Themes pill list */
  .themes-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .theme-pill {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--fg);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .25s ease;
  }
  .theme-pill:hover {
    border-color: var(--acc);
    background: var(--acc);
    color: #111;
    transform: translateY(-2px);
  }

  /* Highlight box */
  .highlight-box {
    background: var(--grad-2);
    color: #fff;
    border-radius: var(--rad);
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .highlight-box h2 { color: #fff; margin-top: 0; }
  .highlight-box p { color: rgba(255,255,255,0.92); line-height: 1.65; font-size: 1.05rem; }
  .inline-cta {
    display: inline-block;
    margin-top: 1.25rem;
    background: #fff;
    color: #111;
    padding: 0.85rem 1.75rem;
    border-radius: var(--rad-s);
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease;
  }
  .inline-cta:hover { transform: translateY(-3px); color: #111; }

  /* Table */
  .feature-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg2);
    border-radius: var(--rad);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .feature-table thead {
    background: var(--grad);
  }
  .feature-table th {
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  .feature-table td {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    color: var(--fg);
    line-height: 1.55;
  }
  .feature-table tr:hover td { background: rgba(255,255,255,0.02); }

  /* Bonus + mobile two-col */
  .split-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .split-row { grid-template-columns: 1fr 1fr; }
  }
  .info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 2rem;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .info-card h3 {
    margin-top: 0;
    color: var(--fg);
    font-size: 1.35rem;
  }
  .info-card p { color: var(--mute); line-height: 1.65; }

  /* FAQ accordion */
  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
  .faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--rad-s);
    overflow: hidden;
    transition: border-color .25s ease;
  }
  .faq-item:hover { border-color: var(--acc); }
  .faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--fg);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--acc);
    transition: transform .3s ease;
    flex-shrink: 0;
  }
  .faq-item.is-open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.5rem;
    color: var(--mute);
    line-height: 1.65;
  }
  .faq-item.is-open .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
  }