    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }

    html {
      scroll-behavior: smooth;
    }

    :root {
      --bg-color: #fbfcfa;
      --text-dark: #13392e;
      --text-light: #536b61;
      --brand-mint: #9df1b8;
      --brand-accent: #38c878;
      --card-bg: #ffffff;
      --line-color: rgba(19, 57, 46, 0.1);
      --mint-soft: rgba(157, 241, 184, 0.28);
      --warn-bg: #fff6ea;
      --warn-line: #f0d9ad;
      --warn-icon: #c9762e;
      --font-family: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      background-color: var(--bg-color);
      font-family: var(--font-family);
      color: var(--text-dark);
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    section#games, section#faq {
      scroll-margin-top: 24px;
    }
    .step-row {
      scroll-margin-top: 24px;
    }

    /* HEADER */
    header {
      width: 100%;
      padding: 24px 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--bg-color);
      box-shadow: 0 1px 0 var(--line-color);
    }

    .logo {
      display: flex;
      align-items: baseline;
      font-size: 24px;
      font-weight: 800;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: -0.6px;
    }

    .logo img {
      height: 34px;
      width: auto;
      display: block;
    }

    .logo-accent {
      color: var(--brand-accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #3b4e45;
      font-size: 14.5px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links li a:hover {
      color: var(--text-dark);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      flex-shrink: 0;
    }

    .hamburger-btn span {
      width: 22px;
      height: 2.2px;
      background-color: var(--text-dark);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7.2px) rotate(45deg);
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7.2px) rotate(-45deg);
    }

    .whatsapp-btn {
      text-decoration: none;
      background-color: var(--brand-mint);
      color: #0c3327;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.15s;
    }

    .whatsapp-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    /* HERO SECTION */
    .hero-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 10px 20px 70px 20px;
      text-align: center;
      overflow: hidden;
    }

    /* TYPOGRAPHY & PHONE WRAPPER */
    .hero-main-wrapper {
      position: relative;
      width: 100%;
      max-width: 870px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .massive-title {
      font-size: 83px;
      line-height: 1.05;
      font-weight: 900;
      color: var(--text-dark);
      letter-spacing: -2.5px;
      width: 100%;
      user-select: none;
    }

    .title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .title-row.bottom {
      margin-top: 6px;
      justify-content: center;
    }

    /* MOBILE PHONE IMAGE */
    .phone-img-wrapper {
      position: absolute;
      top: 38%;
      left: 52%;
      transform: translate(-50%, -50%) rotate(-5.8deg);
      width: 195px;
      z-index: 20;
      filter: drop-shadow(0 25px 40px rgba(19, 57, 46, 0.35));
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
      cursor: pointer;
    }

    .phone-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      user-select: none;
      pointer-events: none;
    }

    /* TAGLINE, SUBTITLE & CTA */
    .hero-tagline {
      max-width: 560px;
      font-size: 14px;
      font-style: italic;
      font-weight: 700;
      color: var(--brand-accent);
      margin-top: 28px;
      position: relative;
      z-index: 10;
    }

    .hero-subtitle {
      max-width: 630px;
      font-size: 13px;
      line-height: 1.55;
      color: var(--text-light);
      font-weight: 500;
      margin-top: 16px;
      margin-bottom: 30px;
      position: relative;
      z-index: 10;
    }

    .cta-container {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .explore-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: var(--text-dark);
      color: #ffffff;
      text-decoration: none;
      padding: 6px 6px 6px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: transform 0.2s, background-color 0.2s;
    }

    .explore-pill:hover {
      background-color: #0c2820;
      transform: translateY(-2px);
    }

    .explore-pill.outline {
      background-color: transparent;
      color: var(--text-dark);
      border: 1.5px solid var(--line-color);
    }

    .explore-pill.outline .explore-circle {
      background-color: var(--text-dark);
    }

    .explore-pill.outline:hover {
      background-color: rgba(19, 57, 46, 0.05);
      transform: translateY(-2px);
    }

    .explore-pill.whatsapp {
      background-color: #25d366;
      color: #ffffff;
    }

    .explore-pill.whatsapp .explore-circle {
      background-color: #128c7e;
    }

    .explore-pill.whatsapp:hover {
      background-color: #1ebe5b;
    }

    .explore-pill.outline.telegram {
      background-color: #229ed9;
      color: #ffffff;
      border-color: transparent;
    }

    .explore-pill.outline.telegram .explore-circle {
      background-color: #1a7fb0;
    }

    .explore-pill.outline.telegram:hover {
      background-color: #1c8bc4;
    }

    .explore-pill.light {
      background-color: var(--brand-mint);
      color: #0c3327;
    }

    .explore-pill.light .explore-circle {
      background-color: #0c3327;
    }

    .explore-circle {
      width: 38px;
      height: 38px;
      background-color: #1d4d3f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .arrow-icon {
      width: 14px;
      height: 14px;
      stroke: #ffffff;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    /* SHARED SECTION LAYOUT */
    .section {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 90px 20px;
      text-align: center;
    }

    .section-kicker {
      display: inline-block;
      background: var(--mint-soft);
      color: #0c3327;
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 7px 16px;
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .section-kicker.light {
      background: rgba(255, 255, 255, 0.14);
      color: var(--brand-mint);
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .section-lead {
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-light);
      font-weight: 500;
    }

    /* SUBPAGE HERO TITLE */
    .page-title {
      font-size: 58px;
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.08;
      max-width: 820px;
      margin: 0 auto;
      color: var(--text-dark);
    }

    /* FEATURE CARDS */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
      text-align: left;
    }

    .feature-grid.feature-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--line-color);
      border-radius: 28px;
      padding: 34px 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(19, 57, 46, 0.08);
    }

    .feature-num {
      font-size: 13px;
      font-weight: 800;
      color: var(--brand-accent);
      letter-spacing: 1px;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.3px;
    }

    .feature-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-light);
      font-weight: 500;
      margin-bottom: 4px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
    }

    .card-link span {
      transition: transform 0.2s;
    }

    .card-link:hover span {
      transform: translateX(3px);
    }

    /* STEPS SECTION */
    .steps-section {
      display: flex;
      flex-direction: column;
      gap: 60px;
      text-align: left;
    }

    .step-row {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      border-top: 1px solid var(--line-color);
      padding-top: 40px;
    }

    .step-row.device-guide {
      display: none;
    }

    .step-row.device-guide.active {
      display: flex;
    }

    .step-num {
      font-size: 46px;
      font-weight: 900;
      color: var(--brand-mint);
      -webkit-text-stroke: 1.5px var(--text-dark);
      line-height: 1;
      flex-shrink: 0;
      width: 90px;
    }

    .step-content h2,
    .step-content h3 {
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }

    .step-content p {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--text-light);
      font-weight: 500;
      max-width: 680px;
      margin-bottom: 12px;
    }

    .step-content h4,
    .step-content h3.step-subheading {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.2px;
      margin: 26px 0 10px;
    }

    /* INFO / CHECKLIST / STEPS LISTS */
    .info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 680px;
      margin: 16px 0;
      padding: 18px 22px;
      background: var(--card-bg);
      border: 1px solid var(--line-color);
      border-radius: 16px;
    }

    .info-list li {
      font-size: 14px;
      color: var(--text-light);
      font-weight: 500;
    }

    .info-list li strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    .info-list code {
      background: var(--mint-soft);
      padding: 2px 7px;
      border-radius: 6px;
      font-size: 12.5px;
      color: #0c3327;
      font-family: 'Courier New', monospace;
    }

    .checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 680px;
      margin: 14px 0 20px;
    }

    .checklist li {
      position: relative;
      padding-left: 28px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .checklist li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--brand-accent);
      font-size: 13px;
      font-weight: 800;
    }

    .checklist.center {
      max-width: 460px;
      margin: 34px auto 34px;
      text-align: left;
    }

    .steps-list {
      list-style: none;
      counter-reset: step;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 680px;
      margin: 14px 0 20px;
    }

    .steps-list li {
      counter-increment: step;
      position: relative;
      padding-left: 36px;
      font-size: 14.5px;
      line-height: 1.6;
      color: var(--text-light);
      font-weight: 500;
    }

    .steps-list li strong {
      color: var(--text-dark);
    }

    .steps-list li::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--mint-soft);
      color: #0c3327;
      font-size: 12px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .troubleshoot-heading {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.2px;
      margin: 46px 0 8px;
      text-align: center;
    }

    .troubleshoot-heading:first-of-type {
      margin-top: 10px;
    }

    .trouble-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 28px auto 0;
      text-align: left;
    }

    .trouble-card {
      background: var(--card-bg);
      border: 1px solid var(--line-color);
      border-radius: 20px;
      padding: 26px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .trouble-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(19, 57, 46, 0.08);
    }

    .trouble-card h3,
    .trouble-card h4 {
      font-size: 15.5px;
      font-weight: 800;
      letter-spacing: -0.2px;
      margin-bottom: 8px;
    }

    .trouble-card p {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text-light);
      font-weight: 500;
    }

    .caution-line {
      margin-top: 22px;
      font-style: italic;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--warn-icon);
    }

    .pill-link {
      display: inline-block;
      margin-top: 10px;
      background-color: var(--text-dark);
      color: #ffffff;
      text-decoration: none;
      padding: 12px 26px;
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      transition: transform 0.2s, background-color 0.2s;
    }

    .pill-link:hover {
      background-color: #0c2820;
      transform: translateY(-2px);
    }

    /* GAMES 3D SLIDER */
    .games-slider {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      height: 320px;
      margin-top: 50px;
      perspective: 1400px;
      overflow: hidden;
    }

    .slider-track {
      position: relative;
      width: 100%;
      max-width: 900px;
      height: 100%;
      transform-style: preserve-3d;
    }

    .slide {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300px;
      aspect-ratio: 16 / 9;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 45px rgba(19, 57, 46, 0.22);
      cursor: pointer;
      transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.55s ease;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
      user-select: none;
    }

    .slider-arrow {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--card-bg);
      border: 1px solid var(--line-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 30;
      transition: background 0.2s, transform 0.15s;
    }

    .slider-arrow:hover {
      background: var(--mint-soft);
      transform: translateY(-2px);
    }

    .slider-arrow svg {
      width: 18px;
      height: 18px;
      stroke: var(--text-dark);
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .slider-info {
      max-width: 480px;
      margin: 34px auto 0;
      text-align: center;
    }

    .slider-info h3 {
      font-size: 19px;
      font-weight: 800;
      letter-spacing: -0.2px;
      margin-bottom: 8px;
    }

    .slider-info p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--text-light);
      font-weight: 500;
    }

    .games-note {
      margin-top: 34px;
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
      font-style: italic;
    }

    /* SUPPORT CTA BANNER */
    .cta-banner {
      background: var(--text-dark);
      color: #ffffff;
      border-radius: 32px;
      padding: 70px 60px;
    }

    .cta-banner h2 {
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .cta-banner p {
      max-width: 620px;
      margin: 0 auto 14px;
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
    }

    .cta-banner-actions {
      margin-top: 30px;
      display: flex;
      justify-content: center;
    }

    /* WARNING CARD */
    .warning-card {
      background: var(--warn-bg);
      border: 1px solid var(--warn-line);
      border-radius: 28px;
      padding: 50px 60px;
      text-align: left;
    }

    .warning-card h2 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.6px;
      margin-bottom: 18px;
      text-align: center;
    }

    .warning-card > p {
      font-size: 15px;
      color: var(--text-light);
      font-weight: 500;
      text-align: center;
      max-width: 560px;
      margin: 0 auto 24px;
    }

    .warning-list {
      list-style: none;
      max-width: 460px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .warning-list li {
      position: relative;
      padding-left: 30px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .warning-list li::before {
      content: '\2715';
      position: absolute;
      left: 0;
      top: 0;
      width: 20px;
      height: 20px;
      color: var(--warn-icon);
      font-size: 13px;
      font-weight: 800;
    }

    .warning-footnote {
      text-align: center;
      margin-top: 26px !important;
      font-style: italic;
      font-size: 13.5px !important;
    }

    /* FAQ */
    .faq-list {
      max-width: 760px;
      margin: 50px auto 0;
      text-align: left;
    }

    .faq-item {
      border-bottom: 1px solid var(--line-color);
      padding: 22px 4px;
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.2px;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-toggle {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--mint-soft);
      position: relative;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: '';
      position: absolute;
      background: #0c3327;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-toggle::before {
      width: 12px;
      height: 2px;
    }

    .faq-toggle::after {
      width: 2px;
      height: 12px;
      transition: transform 0.2s;
    }

    .faq-item[open] .faq-toggle::after {
      transform: translate(-50%, -50%) rotate(90deg) scale(0);
    }

    .faq-item p {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-light);
      font-weight: 500;
      padding-right: 50px;
    }

    .disclaimer {
      max-width: 800px;
      margin: 60px auto 0;
      font-size: 12.5px;
      line-height: 1.6;
      color: var(--text-light);
      font-weight: 500;
    }

    /* FOOTER */
    footer {
      background: var(--text-dark);
      color: rgba(255, 255, 255, 0.85);
      padding: 70px 70px 30px;
    }

    .footer-top {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-brand {
      max-width: 320px;
    }

    .footer-brand .logo {
      color: #ffffff;
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    .footer-links {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col h5 {
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--brand-mint);
      margin-bottom: 6px;
    }

    .footer-col a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      max-width: 1140px;
      margin: 50px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.55);
    }

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 1024px) {
      .massive-title {
        font-size: 62px;
        letter-spacing: -1.5px;
      }
      .page-title {
        font-size: 44px;
        letter-spacing: -1.5px;
      }
      .feature-grid.feature-grid-2 {
        max-width: 100%;
      }
      .phone-img-wrapper {
        width: 200px;
      }
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .games-slider {
        height: 260px;
      }
      .slide {
        width: 220px;
      }
      .cta-banner {
        padding: 56px 36px;
      }
      .warning-card {
        padding: 40px 34px;
      }
    }

    @media (max-width: 768px) {
      header { padding: 20px; gap: 16px; }
      .hamburger-btn { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: var(--card-bg);
        border-bottom: 1px solid var(--line-color);
        padding: 12px 20px 20px;
        box-shadow: 0 20px 30px rgba(19, 57, 46, 0.1);
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links li a { display: block; padding: 12px 0; width: 100%; }
      .massive-title {
        font-size: 38px;
        letter-spacing: -1px;
      }
      .page-title {
        font-size: 30px;
        letter-spacing: -1px;
      }
      .hero-main-wrapper { flex-direction: column; }
      .phone-img-wrapper {
        position: static;
        transform: rotate(0deg);
        margin: 24px auto 0;
        width: 220px;
      }
      .title-row { display: inline; }
      .title-row span { display: inline; margin: 0 5px 0 0; }
      .title-row.bottom { margin-top: 0; }
      .hero-main-wrapper { order: 1; }
      .cta-container { order: 2; margin-top: 12px; }
      .hero-tagline { order: 3; }
      .hero-subtitle { order: 4; }
      .section { padding: 60px 20px; }
      .section-title { font-size: 30px; }
      .feature-grid,
      .feature-grid.feature-grid-2 { grid-template-columns: 1fr; }
      .trouble-grid { grid-template-columns: 1fr; }
      .games-slider { height: 200px; gap: 8px; }
      .slide { width: 150px; }
      .slider-arrow { width: 36px; height: 36px; }
      .step-row { flex-direction: column; gap: 14px; }
      .cta-banner { padding: 44px 24px; }
      .cta-banner h2 { font-size: 28px; }
      .warning-card { padding: 32px 22px; }
      .warning-card h2 { font-size: 26px; }
      footer { padding: 50px 20px 24px; }
      .footer-top { flex-direction: column; gap: 40px; }
      .footer-links { gap: 40px; }
    }

    @media (max-width: 480px) {
      .games-slider { height: 170px; margin-top: 34px; gap: 6px; }
      .slider-track { max-width: 100%; }
      .slide { width: 130px; border-radius: 16px; }
      .slider-arrow { width: 32px; height: 32px; }
      .slider-arrow svg { width: 15px; height: 15px; }
      .slider-info { max-width: 280px; margin: 24px auto 0; }
      .slider-info h3 { font-size: 16px; }
      .slider-info p { font-size: 13px; line-height: 1.5; }
      .games-note { margin-top: 24px; font-size: 12px; padding: 0 12px; }
    }

    @media (max-width: 380px) {
      .games-slider { height: 150px; }
      .slide { width: 108px; border-radius: 14px; }
      .slider-arrow { width: 28px; height: 28px; }
      .slider-arrow svg { width: 13px; height: 13px; }
    }
