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

  .gamesWrap {
    --accent-1: var(--color-1);
    --accent-2: var(--color-2);
    --ink: var(--color-9);
    --paper: var(--color-10);
    padding: var(--space-2) 0 var(--space-5);
    color: var(--ink);
  }

  .heroLm {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 3vw, 3rem);
    margin-bottom: var(--space-4);
    background: var(--grad-1, linear-gradient(135deg, #1a0b3d 0%, #4a1574 50%, #c41e6f 100%));
    border-radius: var(--radius-3, 24px);
    box-shadow: var(--shadow-2, 0 30px 60px rgba(0,0,0,.35));
    overflow: hidden;
    color: #fff;
  }
  .heroLm::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,215,0,.35), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
  }
  .heroLm h1 {
    position: relative;
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .heroLm h1 span {
    display: block;
    background: linear-gradient(90deg, #ffd700, #ff9ed5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .heroLm p {
    position: relative;
    max-width: 60ch;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: .92;
  }

  .heroStats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-top: var(--space-2);
  }
  .heroStat {
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-2, 14px);
    backdrop-filter: blur(8px);
  }
  .heroStat b {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffd700;
  }
  .heroStat span { font-size: .85rem; opacity: .85; }

  .heroCtaRow {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: var(--space-2);
  }
  .ctaMain {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a0b3d;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255,183,0,.45);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .ctaMain:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255,183,0,.6);
  }
  .trustPill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    font-size: .85rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
  }
  .trustPill::before {
    content: "";
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
  }

  .sectionTitle {
    margin: var(--space-4) 0 var(--space-2);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .sectionLead {
    max-width: 70ch;
    margin: 0 0 var(--space-3);
    font-size: 1.02rem;
    line-height: 1.65;
    opacity: .88;
  }

  .catGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-2);
  }
  .catCard {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius-2, 16px);
    box-shadow: var(--shadow-1, 0 10px 30px rgba(0,0,0,.08));
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
  }
  .catCard::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #c41e6f, #ffd700);
  }
  .catCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
  }
  .catCard h3 {
    margin: 0 0 .75rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a0b3d;
  }
  .catCard p {
    margin: 0 0 1rem;
    font-size: .95rem;
    line-height: 1.6;
    color: #444;
  }
  .catTag {
    display: inline-block;
    margin-top: auto;
    padding: .35rem .8rem;
    font-size: .78rem;
    font-weight: 600;
    color: #c41e6f;
    background: rgba(196,30,111,.08);
    border-radius: 999px;
    align-self: flex-start;
  }

  .whyBoxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
  }
  .whyItem {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.4rem;
    background: linear-gradient(135deg, #1a0b3d, #2d1456);
    color: #fff;
    border-radius: var(--radius-2, 14px);
    border: 1px solid rgba(255,215,0,.15);
    transition: border-color .3s ease;
  }
  .whyItem:hover { border-color: rgba(255,215,0,.5); }
  .whyNum {
    font-size: .8rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: .1em;
  }
  .whyItem b {
    font-size: 1.05rem;
    font-weight: 700;
  }
  .whyItem span {
    font-size: .9rem;
    line-height: 1.5;
    opacity: .8;
  }

  .mobileBlock {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    align-items: center;
    padding: clamp(1.75rem, 4vw, 3rem);
    background: linear-gradient(135deg, #fff 0%, #fef3f9 100%);
    border-radius: var(--radius-3, 20px);
    border: 1px solid rgba(196,30,111,.12);
    box-shadow: var(--shadow-1);
  }
  .mobileBlock h2 { margin-top: 0; color: #1a0b3d; }
  .mobileBlock p { color: #333; line-height: 1.65; }
  .platforms {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
  }
  .platform {
    padding: .5rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: #1a0b3d;
    border-radius: 8px;
  }

  .stepsList {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .stepsList li {
    counter-increment: step;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: #fff;
    border-radius: var(--radius-2, 14px);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    font-size: .95rem;
    line-height: 1.5;
    color: #333;
  }
  .stepsList li::before {
    content: counter(step);
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(135deg, #c41e6f, #ff6fb3);
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(196,30,111,.35);
  }

  .faqWrap { display: flex; flex-direction: column; gap: .7rem; }
  .faqItem {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-2, 12px);
    overflow: hidden;
    transition: box-shadow .25s ease;
  }
  .faqItem:hover { box-shadow: 0 10px 24px rgba(0,0,0,.08); }
  .faqItem summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1a0b3d;
    cursor: pointer;
    list-style: none;
  }
  .faqItem summary::-webkit-details-marker { display: none; }
  .faqItem summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #c41e6f;
    transition: transform .3s ease;
  }
  .faqItem[open] summary::after { transform: rotate(45deg); }
  .faqItem p {
    margin: 0;
    padding: 0 1.3rem 1.2rem;
    font-size: .95rem;
    line-height: 1.6;
    color: #444;
  }

  .closingCta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: var(--space-4);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    background: linear-gradient(135deg, #1a0b3d, #4a1574, #c41e6f);
    border-radius: var(--radius-3, 20px);
    color: #fff;
    box-shadow: var(--shadow-2);
  }
  .closingCta h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .closingCta p { margin: 0; opacity: .9; max-width: 50ch; }

  @media (max-width: 640px) {
    .heroStats { grid-template-columns: 1fr; }
    .heroStat { display: flex; align-items: baseline; gap: 1rem; }
  }