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

  :root {
    --accent-blitz: var(--accent, #e63946);
    --gold-blitz: var(--gold, #f4d03f);
    --surface-card: var(--card-bg, #1a1a2e);
    --border-subtle: var(--card-border, rgba(255,255,255,0.08));
    --text-primary: var(--fg, #ffffff);
    --text-secondary: rgba(255,255,255,0.65);
    --radius-card: var(--rad2, 16px);
    --transition-smooth: var(--trans, all 0.3s ease);
  }

  .blitz-bonus { padding: var(--sp4, 2rem) 0; }

  /* ── HERO INTRO ── */
  .blitz-intro {
    background: linear-gradient(135deg, rgba(230,57,70,0.18) 0%, rgba(244,208,63,0.10) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad2, 16px);
    padding: var(--sp5, 2.5rem) var(--sp4, 2rem);
    margin-bottom: var(--sp5, 2.5rem);
    position: relative;
    overflow: hidden;
  }

  .blitz-intro::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(244,208,63,0.10) 0%, transparent 70%);
    pointer-events: none;
  }

  .blitz-intro__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 0 0 var(--sp3, 1rem);
  }

  .blitz-intro__title span {
    background: linear-gradient(90deg, var(--gold-blitz), var(--accent-blitz));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .blitz-intro__lead {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 var(--sp4, 2rem);
  }

  /* ── SECTION HEADINGS ── */
  .blitz-section { margin-bottom: var(--sp6, 3.5rem); }

  .blitz-section__title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--sp2, 0.75rem);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .blitz-section__title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--gold-blitz), var(--accent-blitz));
    border-radius: 3px;
    flex-shrink: 0;
  }

  .blitz-section__lead {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 var(--sp4, 2rem);
    max-width: 720px;
  }

  /* ── BONUS CARDS GRID (no-deposit) ── */
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3, 1rem);
    margin-bottom: var(--sp5, 2.5rem);
  }

  @media (min-width: 600px) {
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 1024px) {
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .bonus-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: var(--sp4, 2rem) var(--sp3, 1rem);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }

  .bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-blitz);
    box-shadow: 0 16px 48px rgba(244,208,63,0.15), var(--shadow, 0 4px 20px rgba(0,0,0,0.4));
  }

  .bonus-card__code {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-blitz), #c0392b);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.3em 0.9em;
    border-radius: 999px;
    margin-bottom: var(--sp2, 0.75rem);
    text-transform: uppercase;
  }

  .bonus-card__value {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--gold-blitz);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .bonus-card__label {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: var(--sp3, 1rem);
  }

  .bonus-card__meta {
    display: flex;
    justify-content: center;
    gap: var(--sp2, 0.75rem);
    flex-wrap: wrap;
  }

  .bonus-card__badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 0.25em 0.75em;
    font-size: 0.78rem;
    color: var(--text-secondary);
  }

  /* ── CHIPS TABLE ── */
  .table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--sp5, 2.5rem);
  }

  .blitz-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }

  .blitz-table thead th {
    background: linear-gradient(90deg, rgba(230,57,70,0.25), rgba(244,208,63,0.15));
    color: var(--gold-blitz);
    font-weight: 700;
    padding: 1rem 1.2rem;
    text-align: left;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .blitz-table tbody tr {
    border-top: 1px solid var(--border-subtle);
    transition: background 0.2s;
  }

  .blitz-table tbody tr:hover { background: rgba(255,255,255,0.04); }

  .blitz-table tbody td {
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    vertical-align: middle;
  }

  .blitz-table tbody td:first-child {
    font-weight: 700;
    color: var(--accent-blitz);
    font-family: monospace;
    font-size: 1rem;
  }

  /* ── WELCOME BONUS HIGHLIGHT ── */
  .welcome-highlight {
    background: linear-gradient(135deg, rgba(244,208,63,0.10) 0%, rgba(230,57,70,0.12) 100%);
    border: 1px solid rgba(244,208,63,0.3);
    border-radius: var(--radius-card);
    padding: var(--sp5, 2.5rem);
    margin-bottom: var(--sp5, 2.5rem);
    position: relative;
  }

  .welcome-highlight__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp3, 1rem);
    margin-bottom: var(--sp4, 2rem);
  }

  .welcome-stat {
    flex: 1 1 140px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad, 10px);
    padding: var(--sp3, 1rem);
    text-align: center;
  }

  .welcome-stat__val {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--gold-blitz);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .welcome-stat__desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
  }

  .welcome-highlight__points {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp4, 2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  @media (min-width: 640px) {
    .welcome-highlight__points { grid-template-columns: 1fr 1fr; }
  }

  .welcome-highlight__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .welcome-highlight__points li::before {
    content: '✓';
    color: var(--gold-blitz);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
  }

  .welcome-highlight__points li strong { color: var(--text-primary); }

  /* ── STEPS TIMELINE ── */
  .steps-timeline {
    position: relative;
    padding-left: 0;
    list-style: none;
    margin: 0 0 var(--sp5, 2.5rem);
  }

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

  .steps-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp3, 1rem) var(--sp2, 0.75rem);
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    transition: var(--transition-smooth);
    margin-bottom: var(--sp2, 0.75rem);
  }

  @media (min-width: 768px) { .steps-timeline__item { margin-bottom: 0; } }

  .steps-timeline__item:hover {
    border-color: var(--accent-blitz);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(230,57,70,0.15);
  }

  .steps-timeline__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blitz), #c0392b);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp2, 0.75rem);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(230,57,70,0.35);
  }

  .steps-timeline__text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .steps-timeline__text a {
    color: var(--gold-blitz);
    text-decoration: none;
    font-weight: 700;
  }

  /* ── FAQ ACCORDION ── */
  .faq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp5, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--sp2, 0.75rem);
  }

  .faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.25s;
  }

  .faq-item--open,
  .faq-item:focus-within { border-color: rgba(244,208,63,0.35); }

  .faq-item__trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem var(--sp4, 2rem) 1.2rem var(--sp3, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp2, 0.75rem);
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .faq-item__trigger:hover { color: var(--gold-blitz); }

  .faq-item__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s, background 0.3s;
    color: var(--gold-blitz);
  }

  .faq-item--open .faq-item__icon {
    transform: rotate(45deg);
    background: rgba(244,208,63,0.15);
  }

  .faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 var(--sp3, 1rem);
  }

  .faq-item--open .faq-item__body {
    max-height: 300px;
    padding: 0 var(--sp3, 1rem) 1.2rem;
  }

  .faq-item__answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
  }

  .faq-item__answer a {
    color: var(--gold-blitz);
    text-decoration: none;
    font-weight: 600;
  }

  /* ── NOTICE BOX ── */
  .notice-box {
    background: rgba(230,57,70,0.10);
    border-left: 4px solid var(--accent-blitz);
    border-radius: 0 var(--rad, 10px) var(--rad, 10px) 0;
    padding: var(--sp3, 1rem) var(--sp4, 2rem);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--sp5, 2.5rem);
  }

  .notice-box strong { color: var(--text-primary); }

  /* ── CTA BANNER ── */
  .blitz-cta-banner {
    background: linear-gradient(135deg, rgba(230,57,70,0.22) 0%, rgba(244,208,63,0.15) 100%);
    border: 1px solid rgba(244,208,63,0.25);
    border-radius: var(--rad2, 16px);
    padding: var(--sp5, 2.5rem) var(--sp4, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .blitz-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .blitz-cta-banner__title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 var(--sp2, 0.75rem);
  }

  .blitz-cta-banner__sub {
    color: var(--text-secondary);
    margin: 0 0 var(--sp4, 2rem);
    font-size: 1rem;
  }

  .blitz-cta-banner__sub a {
    color: var(--gold-blitz);
    text-decoration: none;
    font-weight: 600;
  }

  /* subsection label */
  .blitz-sublabel {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blitz);
    margin-bottom: var(--sp2, 0.75rem);
    display: block;
  }