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

  :root {
    --c1: var(--color-1);
    --c2: var(--color-2);
    --c3: var(--color-3);
    --c4: var(--color-4);
    --c5: var(--color-5);
    --bg: var(--color-11);
    --fg: var(--color-12);
    --sp1: var(--space-1);
    --sp2: var(--space-2);
    --sp3: var(--space-3);
    --sp4: var(--space-4);
    --sp5: var(--space-5);
    --rad: var(--radius-2);
  }

  .page-intro {
    padding: var(--sp4) 0 var(--sp3);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }

  .page-intro h1 {
    font-family: var(--font-1);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--sp2);
    background: linear-gradient(135deg, var(--color-4), var(--color-7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .page-intro p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: .85;
    line-height: 1.7;
  }

  .section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c1), transparent);
    margin: var(--sp4) 0;
    opacity: .4;
  }

  /* --- GAMES CARDS GRID --- */
  .games-section { padding: var(--sp3) 0; }

  .games-section h2 {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--sp1);
  }

  .games-section .section-sub {
    opacity: .75;
    margin-bottom: var(--sp3);
    font-size: 1rem;
    line-height: 1.6;
  }

  .game-cards-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3);
  }

  @media (min-width: 768px) {
    .game-cards-wrap { grid-template-columns: 1fr 1fr; }
  }

  .game-card {
    border-radius: var(--rad);
    background: linear-gradient(145deg, var(--color-9), var(--color-10));
    box-shadow: var(--shadow-3);
    padding: var(--sp4) var(--sp3);
    border: 1px solid rgba(255,255,255,.08);
    transition: var(--transition-1);
    position: relative;
    overflow: hidden;
  }

  .game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1) 0%, transparent 60%);
    opacity: .07;
    pointer-events: none;
  }

  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-4);
  }

  .game-card-icon {
    font-size: 2.8rem;
    margin-bottom: var(--sp2);
    display: block;
    filter: drop-shadow(0 2px 8px var(--c1));
  }

  .game-card h3 {
    font-family: var(--font-1);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--sp1);
    color: var(--color-4);
  }

  .game-card p {
    line-height: 1.7;
    opacity: .85;
    font-size: .97rem;
  }

  /* --- TABLET HIGHLIGHT BOX --- */
  .tablet-section { padding: var(--sp3) 0; }

  .tablet-highlight {
    border-radius: var(--rad);
    background: linear-gradient(120deg, var(--color-9) 0%, var(--color-10) 100%);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-3);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3);
    align-items: center;
    padding: var(--sp4);
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .tablet-highlight { grid-template-columns: 1fr 1fr; }
  }

  .tablet-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(90deg, var(--c1), var(--c2));
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 999px;
    margin-bottom: var(--sp2);
  }

  .tablet-highlight h2 {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--sp2);
  }

  .tablet-highlight p {
    line-height: 1.75;
    opacity: .85;
    font-size: .97rem;
  }

  .tablet-feature-list {
    list-style: none;
    padding: 0;
    margin: var(--sp2) 0 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .tablet-feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    opacity: .9;
  }

  .feature-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .75rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
  }

  .tablet-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tablet-visual-inner {
    width: 200px;
    height: 260px;
    border-radius: 18px;
    border: 3px solid rgba(255,255,255,.15);
    background: linear-gradient(160deg, var(--color-8), var(--color-9));
    box-shadow: var(--shadow-4), 0 0 40px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--sp1);
    position: relative;
  }

  .tablet-screen-icon { font-size: 3.5rem; }

  .tablet-screen-label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .7;
  }

  /* --- STEPS TIMELINE --- */
  .steps-section { padding: var(--sp3) 0; }

  .steps-section h2 {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--sp3);
  }

  .steps-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp2);
    position: relative;
  }

  @media (min-width: 768px) {
    .steps-timeline { grid-template-columns: repeat(4, 1fr); gap: var(--sp2); }
  }

  .step-item {
    border-radius: var(--rad);
    background: linear-gradient(145deg, var(--color-9), var(--color-10));
    border: 1px solid rgba(255,255,255,.08);
    padding: var(--sp3) var(--sp2);
    text-align: center;
    box-shadow: var(--shadow-2);
    transition: var(--transition-1);
    position: relative;
  }

  .step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 auto var(--sp2);
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
  }

  .step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--color-4);
  }

  .step-item p {
    font-size: .88rem;
    opacity: .8;
    line-height: 1.5;
  }

  .steps-cta-wrap { text-align: center; margin-top: var(--sp3); }

  /* --- FAQ ACCORDION --- */
  .faq-section { padding: var(--sp3) 0 var(--sp4); }

  .faq-section h2 {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--sp3);
    text-align: center;
  }

  .faq-list { display: flex; flex-direction: column; gap: var(--sp1); }

  .faq-item {
    border-radius: var(--rad);
    background: linear-gradient(145deg, var(--color-9), var(--color-10));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    transition: var(--transition-1);
  }

  .faq-item:hover { box-shadow: var(--shadow-2); }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--sp2) var(--sp3);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp2);
    transition: var(--transition-1);
    color: inherit;
    font-family: var(--font-1);
  }

  .faq-question:hover { color: var(--color-4); }

  .faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: .8rem;
    transition: var(--transition-1);
    font-weight: 700;
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 var(--sp3);
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 var(--sp3) var(--sp2);
  }

  .faq-answer p {
    opacity: .82;
    font-size: .95rem;
    line-height: 1.7;
  }

  .faq-answer a { color: var(--color-4); text-decoration: underline; }

  /* --- CTA STRIP --- */
  .cta-strip {
    border-radius: var(--rad);
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    padding: var(--sp4) var(--sp3);
    text-align: center;
    box-shadow: var(--shadow-4);
    margin: var(--sp3) 0 var(--sp4);
  }

  .cta-strip h2 {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--sp1);
  }

  .cta-strip p { color: rgba(255,255,255,.88); margin-bottom: var(--sp2); font-size: 1rem; }