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

  #slot-game-page {
    position: relative;
    width: 100%;
    color: var(--text-primary);
  }

  #slot-game-page .bg-dark {
    background: linear-gradient(160deg, var(--surface) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
  }

  #slot-game-page .bg-light {
    background: linear-gradient(160deg, var(--surface-light) 0%, var(--surface) 100%);
    color: var(--text-primary);
  }

  /* HERO */
  #hero-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.18), transparent 55%),
                linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
    box-shadow: var(--shadow-deep);
  }

  #hero-section .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 0 1.2rem 0;
  }

  #hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--bg-primary);
    background: linear-gradient(120deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
  }

  #hero-section .hero-title {
    margin: 0 0 1rem 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }

  #hero-section .hero-title span {
    background: linear-gradient(120deg, var(--accent-gold-bright), var(--accent-red-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  #hero-section .hero-lead {
    max-width: 620px;
    margin: 0 0 1.8rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  #hero-section .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.8rem 0;
  }

  #hero-section .hero-stat {
    min-width: 140px;
    padding: 0.9rem 1.2rem;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
  }

  #hero-section .hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold-bright);
  }

  #hero-section .hero-stat span {
    font-size: 0.78rem;
    color: var(--text-secondary);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--bg-primary);
    text-decoration: none;
    background: linear-gradient(120deg, var(--accent-red-bright), var(--accent-red));
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(196,30,58,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .cta-button:hover {
    color: var(--bg-primary);
    box-shadow: 0 14px 38px rgba(196,30,58,0.55);
    transform: translateY(-3px) scale(1.02);
  }

  /* INTRO */
  #intro-section {
    padding: 2.5rem 0;
  }

  #intro-section p {
    max-width: 900px;
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
  }

  /* SECTION HEADINGS */
  .section-heading {
    position: relative;
    margin-bottom: 2.2rem;
    padding-left: 1.1rem;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-gold-bright);
  }

  /* CARDS GRID */
  #why-section {
    padding: 3rem 0;
  }

  #themes-section,
  #features-section,
  #providers-section {
    padding: 3rem 0;
  }

  #why-section .row {
    row-gap: 1.6rem;
  }

  .card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .card:hover {
    box-shadow: 0 22px 46px rgba(0,0,0,0.45);
    transform: translateY(-8px);
  }

  .card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-primary);
    background: linear-gradient(120deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: var(--radius-md);
  }

  .card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  /* TIMELINE / STEPS */
  #steps-section {
    padding: 3.5rem 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--surface) 0%, var(--bg-secondary) 100%);
  }

  .timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold-bright), transparent);
  }

  .timeline-item {
    position: relative;
    display: flex;
    gap: 1.4rem;
    padding-bottom: 2.2rem;
    padding-left: 0;
  }

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-number {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-primary);
    background: linear-gradient(120deg, var(--accent-red-bright), var(--accent-gold-bright));
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(212,175,55,0.35);
  }

  .timeline-content h3 {
    margin: 0.3rem 0 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  /* HIGHLIGHT BOX */
  .highlight-box {
    padding: 1.6rem 1.8rem;
    margin: 2.5rem 0;
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-md);
    background: rgba(212,175,55,0.08);
  }

  .highlight-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
  }

  /* ACCORDION FAQ */
  #faq-section {
    padding: 3rem 0;
  }

  .accordion-item {
    margin-bottom: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--surface);
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.4rem;
    font-size: 1.02rem;
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .accordion-header::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-gold-bright);
    transition: transform 0.3s ease;
  }

  .accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
  }

  .accordion-body {
    max-height: 0;
    padding: 0 1.4rem;
    overflow: hidden;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .accordion-item.active .accordion-body {
    max-height: 240px;
    padding: 0 1.4rem 1.3rem 1.4rem;
  }

  /* FINAL CTA */
  #final-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    margin: 3rem 0 1rem 0;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-secondary), var(--surface));
    box-shadow: var(--shadow-deep);
  }

  #final-cta-section h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
  }

  #final-cta-section p {
    max-width: 560px;
    margin-bottom: 1.6rem;
    font-size: 1rem;
    color: var(--text-secondary);
  }

  @media (max-width: 768px) {
    #hero-section { text-align: left; padding: 2rem 1rem; }
    .timeline::before { left: 22px; }
    .timeline-number { width: 44px; height: 44px; font-size: 1.1rem; }
  }

  @media (max-width: 320px) {
    #hero-section .hero-title { font-size: 1.6rem; }
  }