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

  :root {
    --c1: var(--color-brand-primary);
    --c2: var(--color-brand-secondary);
    --ca: var(--color-brand-accent);
    --cab: var(--color-brand-accent-bright);
    --bg: var(--color-neutral-900);
    --bg2: var(--color-neutral-800);
    --fg: var(--color-text-primary);
    --fg2: var(--color-text-secondary);
    --brd: var(--color-border);
    --brdb: var(--color-border-bright);
    --rad: var(--radius-md);
    --rad2: var(--radius-lg);
    --sp1: var(--spacing-sm);
    --sp2: var(--spacing-md);
    --sp3: var(--spacing-lg);
    --sp4: var(--spacing-xl);
    --tr: var(--transition-smooth);
  }

  /* ── PAGE WRAPPER ── */
  .bonus-page {
    color: var(--fg);
    font-family: var(--font-primary);
    padding-bottom: var(--sp4);
  }

  /* ── HERO ── */
  .bonus-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 60%, var(--color-brand-primary) 140%);
    border-radius: var(--rad2);
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: var(--sp4);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-glow);
  }
  .bonus-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,200,60,.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .bonus-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--ca), var(--cab));
    color: var(--color-neutral-900);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
  }
  .bonus-hero h1 {
    font-family: var(--font-secondary, var(--font-primary));
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #fff 30%, var(--cab));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .bonus-hero .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--fg2);
    max-width: 52ch;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  .bonus-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .hero-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--brdb);
    border-radius: var(--rad);
    padding: .85rem 1.5rem;
    min-width: 120px;
    backdrop-filter: blur(8px);
  }
  .hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cab);
    line-height: 1;
  }
  .hero-stat span {
    font-size: .78rem;
    color: var(--fg2);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .bonus-hero .btnPrimary {
    font-size: 1.05rem;
    padding: .9rem 2.5rem;
    box-shadow: var(--shadow-accent);
  }

  /* ── SECTION SHARED ── */
  .bonus-section {
    margin-bottom: var(--sp4);
  }
  .section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ca);
    margin-bottom: .6rem;
  }
  .section-title {
    font-family: var(--font-secondary, var(--font-primary));
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 var(--sp2);
    color: var(--fg);
  }

  /* ── WELCOME TABLE ── */
  .welcome-section .section-intro {
    color: var(--fg2);
    line-height: 1.7;
    margin-bottom: var(--sp2);
    max-width: 68ch;
  }
  .table-responsive {
    overflow-x: auto;
    border-radius: var(--rad2);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--sp2);
  }
  .bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface-card);
    font-size: .95rem;
  }
  .bonus-table thead tr {
    background: linear-gradient(90deg, var(--c1), var(--c2));
  }
  .bonus-table thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .bonus-table tbody tr {
    border-bottom: 1px solid var(--brd);
    transition: background var(--tr);
  }
  .bonus-table tbody tr:last-child { border-bottom: none; }
  .bonus-table tbody tr:hover { background: rgba(255,255,255,.04); }
  .bonus-table td {
    padding: 1rem 1.25rem;
    color: var(--fg);
    vertical-align: middle;
  }
  .bonus-table td:first-child { font-weight: 700; color: var(--cab); }
  .deposit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ca), var(--cab));
    color: var(--color-neutral-900);
    font-weight: 900;
    font-size: .85rem;
    margin-right: .5rem;
    flex-shrink: 0;
  }
  .td-deposit { display: flex; align-items: center; }
  .bonus-amount {
    font-weight: 700;
    color: var(--fg);
  }
  .bonus-extra {
    font-size: .82rem;
    color: var(--ca);
    display: block;
    margin-top: .15rem;
  }

  /* Conditions box */
  .conditions-box {
    background: var(--color-surface-elevated);
    border: 1px solid var(--brdb);
    border-left: 4px solid var(--ca);
    border-radius: var(--rad);
    padding: var(--sp2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp1);
  }
  .cond-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: var(--fg2);
    line-height: 1.5;
  }
  .cond-item::before {
    content: '✓';
    flex-shrink: 0;
    width: 1.25rem; height: 1.25rem;
    background: rgba(255,200,60,.15);
    color: var(--cab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 900;
    margin-top: .05rem;
  }

  /* ── PROMOS GRID (Timeline-ish) ── */
  .promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp2);
  }
  .promo-card {
    background: var(--color-surface-card);
    border: 1px solid var(--brd);
    border-radius: var(--rad2);
    padding: var(--sp2) var(--sp2);
    box-shadow: var(--shadow-card);
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
    position: relative;
    overflow: hidden;
  }
  .promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--brdb);
  }
  .promo-card .card-accent-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ca), var(--cab));
  }
  .promo-card .card-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    display: block;
  }
  .promo-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 .6rem;
    color: var(--fg);
  }
  .promo-card p {
    font-size: .9rem;
    color: var(--fg2);
    line-height: 1.65;
    margin: 0 0 var(--sp1);
  }
  .spins-tiers {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-top: .6rem;
  }
  .spin-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-sm);
    padding: .4rem .75rem;
    font-size: .85rem;
  }
  .spin-tier .tier-dep { color: var(--fg2); }
  .spin-tier .tier-val { font-weight: 800; color: var(--cab); }
  .promo-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .7rem;
    border-radius: 2rem;
    background: rgba(255,200,60,.12);
    color: var(--cab);
    margin-bottom: .6rem;
  }

  /* ── NO DEPOSIT HIGHLIGHT ── */
  .nodeposit-highlight {
    background: linear-gradient(135deg, var(--color-neutral-800) 0%, var(--color-neutral-900) 100%);
    border: 1px solid var(--brdb);
    border-radius: var(--rad2);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-glow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp3);
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .nodeposit-highlight::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--ca), transparent 60%);
    border-radius: inherit;
    z-index: 0;
    opacity: .25;
    pointer-events: none;
  }
  .nodeposit-content { position: relative; z-index: 1; }
  .nodeposit-highlight h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    margin: 0 0 .75rem;
    color: var(--fg);
  }
  .nodeposit-highlight p {
    color: var(--fg2);
    line-height: 1.7;
    margin: 0 0 var(--sp2);
    font-size: .95rem;
  }
  .nodeposit-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
  }
  .big-spins-counter {
    width: clamp(130px, 18vw, 180px);
    height: clamp(130px, 18vw, 180px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 0 40px rgba(255,200,60,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse-ring 2.5s ease-in-out infinite;
  }
  @keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 30px rgba(255,200,60,.25); }
    50% { box-shadow: 0 0 60px rgba(255,200,60,.5); }
  }
  .big-spins-counter .count-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  .big-spins-counter .count-label {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .nodeposit-slot-name {
    font-size: .82rem;
    color: var(--ca);
    font-weight: 600;
    text-align: center;
  }
  @media (max-width: 640px) {
    .nodeposit-highlight { grid-template-columns: 1fr; text-align: center; }
    .nodeposit-visual { order: -1; }
  }

  /* ── LOYALTY ── */
  .loyalty-section .loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: var(--sp2);
    margin-top: var(--sp2);
  }
  .loyalty-item {
    background: var(--color-surface-card);
    border: 1px solid var(--brd);
    border-radius: var(--rad2);
    padding: var(--sp2);
    text-align: center;
    transition: transform var(--tr), border-color var(--tr);
    box-shadow: var(--shadow-card);
  }
  .loyalty-item:hover {
    transform: translateY(-3px);
    border-color: var(--brdb);
  }
  .loyalty-icon {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto .85rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
  }
  .loyalty-item h3 {
    font-size: .95rem;
    font-weight: 800;
    margin: 0 0 .4rem;
    color: var(--fg);
  }
  .loyalty-item p {
    font-size: .84rem;
    color: var(--fg2);
    margin: 0;
    line-height: 1.5;
  }
  .loyalty-cta-row {
    margin-top: var(--sp2);
    text-align: center;
  }

  /* ── FAQ ACCORDION ── */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: var(--sp2);
  }
  .faq-item {
    background: var(--color-surface-card);
    border: 1px solid var(--brd);
    border-radius: var(--rad);
    overflow: hidden;
    transition: border-color var(--tr);
  }
  .faq-item.is-open { border-color: var(--brdb); }
  .faq-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem var(--sp2);
    cursor: pointer;
    text-align: left;
    color: var(--fg);
    font-family: var(--font-primary);
    font-size: .95rem;
    font-weight: 700;
    transition: color var(--tr);
  }
  .faq-trigger:hover { color: var(--cab); }
  .faq-trigger .faq-icon {
    flex-shrink: 0;
    width: 1.5rem; height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: transform var(--tr), background var(--tr);
    color: var(--ca);
  }
  .faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255,200,60,.15);
  }
  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .faq-item.is-open .faq-body { max-height: 300px; }
  .faq-body-inner {
    padding: 0 var(--sp2) 1.1rem;
    color: var(--fg2);
    font-size: .9rem;
    line-height: 1.7;
  }

  /* ── DIVIDER ── */
  .fancy-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brdb), transparent);
    margin: var(--sp3) 0;
    border: none;
  }