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

  .page-hero {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 50%, var(--color-3) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-6) var(--space-4);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-3);
  }

  .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,200,50,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .page-hero .section-label {
    margin-bottom: var(--space-2);
  }

  .page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-7);
    margin-bottom: var(--space-3);
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }

  .page-hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #dce8f5;
    max-width: 640px;
    margin: 0 auto var(--space-4);
  }

  .hero-badge-row {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
  }

  .hero-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-7);
    border-radius: var(--radius-3);
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
  }

  /* Games Grid */
  .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }

  .game-card {
    background: linear-gradient(160deg, var(--color-2) 0%, var(--color-1) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-4);
    box-shadow: var(--shadow-2);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

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

  .game-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-2);
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  }

  .game-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-7);
    margin-bottom: var(--space-2);
  }

  .game-card p {
    font-size: 0.92rem;
    color: #c8d8ee;
    line-height: 1.6;
  }

  /* Mobile section */
  .mobile-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: center;
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-5) var(--space-4);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-2);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .mobile-feature-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-7);
    margin-bottom: var(--space-3);
  }

  .mobile-feature-text p {
    color: #c8d8ee;
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: var(--space-3);
  }

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

  .phone-mockup {
    width: 140px;
    height: 240px;
    background: linear-gradient(180deg, var(--color-3) 0%, var(--color-2) 100%);
    border-radius: 24px;
    border: 3px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
  }

  .phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
  }

  /* Bonus highlight */
  .bonus-highlight {
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-5) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-5) var(--space-4);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-3);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .bonus-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 65%);
    pointer-events: none;
  }

  .bonus-highlight h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }

  .bonus-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-4);
  }

  .bonus-item {
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-2);
    padding: var(--space-3) var(--space-4);
    min-width: 200px;
    backdrop-filter: blur(4px);
  }

  .bonus-item-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    margin-bottom: 0.3rem;
  }

  .bonus-item-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
  }

  .bonus-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-top: var(--space-2);
  }

  /* Steps timeline */
  .steps-section {
    margin-bottom: var(--space-5);
  }

  .steps-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-7);
    margin-bottom: var(--space-4);
    text-align: center;
  }

  .steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    position: relative;
  }

  .steps-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-4), var(--color-5));
    border-radius: 2px;
  }

  .step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 1;
  }

  .step-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-2);
  }

  .step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  }

  .step-content p {
    color: #c8d8ee;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
  }

  .step-content strong {
    color: var(--color-7);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
  }

  /* FAQ accordion */
  .faq-section {
    margin-bottom: var(--space-5);
  }

  .faq-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-7);
    margin-bottom: var(--space-4);
    text-align: center;
  }

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

  .faq-item {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 100%);
    border-radius: var(--radius-2);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-1);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-3) var(--space-4);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-7);
    font-weight: 600;
    font-size: 0.97rem;
    transition: background 0.2s ease;
  }

  .faq-question:hover {
    background: rgba(255,255,255,0.04);
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
  }

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

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-4) var(--space-3);
  }

  .faq-answer p {
    color: #c8d8ee;
    line-height: 1.7;
    font-size: 0.93rem;
    margin: 0;
  }

  .section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-4);
    color: #c8d8ee;
    line-height: 1.7;
    font-size: 0.97rem;
  }

  .glow-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-4), var(--color-5), transparent);
    margin: var(--space-5) 0;
    opacity: 0.5;
  }

  @media (max-width: 768px) {
    .mobile-feature {
      grid-template-columns: 1fr;
    }
    .mobile-feature-visual {
      display: none;
    }
    .steps-list::before {
      left: 20px;
    }
    .bonus-item {
      min-width: 160px;
    }
  }

  @media (max-width: 480px) {
    .games-grid {
      grid-template-columns: 1fr;
    }
    .hero-badge-row {
      gap: var(--space-1);
    }
  }