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

  :root {
    --accent: var(--acc);
    --accent2: var(--acc2);
    --surface: var(--bg2);
    --surface2: var(--bg3);
    --text-primary: var(--fg);
    --text-secondary: var(--fg2);
    --border-subtle: rgba(255,255,255,0.08);
    --radius: var(--rad);
    --radius2: var(--rad2);
  }

  .vb-info-page {
    padding: var(--sp4) 0 var(--sp6);
    color: var(--text-primary);
  }

  /* ── HERO INTRO ── */
  .vb-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp5) var(--sp4);
    margin-bottom: var(--sp5);
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 60%, var(--bg) 100%);
    border-radius: var(--radius2);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow2), var(--glow);
    overflow: hidden;
  }

  .vb-intro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(var(--acc),0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .vb-intro__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    margin-bottom: var(--sp2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 99px;
  }

  .vb-intro__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 var(--sp2);
    background: linear-gradient(90deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vb-intro__desc {
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--sp3);
  }

  /* ── SECTION LABEL ── */
  .vb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px 4px 10px;
    margin-bottom: var(--sp3);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
  }

  .vb-section-label::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
  }

  /* ── WELCOME BONUS CARDS ── */
  .vb-welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3);
    margin-bottom: var(--sp5);
  }

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

  .vb-bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--sp4);
    background: linear-gradient(145deg, var(--surface) 0%, var(--bg) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
  }

  .vb-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow2), var(--glow);
    border-color: var(--accent);
  }

  .vb-bonus-card--gold {
    border-top: 3px solid var(--gold);
  }

  .vb-bonus-card--crypto {
    border-top: 3px solid var(--accent2);
  }

  .vb-bonus-card__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 3px 12px;
    margin-bottom: var(--sp2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 99px;
  }

  .vb-bonus-card__badge--gold {
    color: #1a1200;
    background: linear-gradient(90deg, var(--gold), #ffdd44);
  }

  .vb-bonus-card__badge--crypto {
    color: #fff;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
  }

  .vb-bonus-card__headline {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 4px;
    color: var(--gold);
  }

  .vb-bonus-card__headline--crypto {
    color: var(--accent2);
  }

  .vb-bonus-card__subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp3);
  }

  .vb-bonus-card__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--sp3);
    font-size: 0.88rem;
  }

  .vb-bonus-card__table th,
  .vb-bonus-card__table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
  }

  .vb-bonus-card__table th {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.03);
  }

  .vb-bonus-card__table td {
    color: var(--text-primary);
    font-weight: 500;
  }

  .vb-bonus-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--sp3);
  }

  .vb-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 0.83rem;
  }

  .vb-meta-row__key {
    color: var(--text-secondary);
    font-weight: 500;
  }

  .vb-meta-row__val {
    color: var(--text-primary);
    font-weight: 700;
  }

  /* ── DIVIDER ── */
  .vb-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: var(--sp4) 0;
    opacity: 0.35;
  }

  /* ── NO DEPOSIT SPINS: HIGHLIGHT BOXES ── */
  .vb-spins-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3);
    margin-bottom: var(--sp5);
  }

  @media (min-width: 768px) {
    .vb-spins-wrapper { grid-template-columns: 1fr 1fr; }
  }

  .vb-spin-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp4);
    background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .vb-spin-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow2), 0 0 20px rgba(255,215,0,0.1);
  }

  .vb-spin-box__code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: var(--sp2);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(255,215,0,0.1);
    border: 1px dashed rgba(255,215,0,0.35);
    border-radius: 6px;
    font-family: monospace;
  }

  .vb-spin-box__count {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .vb-spin-box__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--sp2);
  }

  .vb-spin-box__game {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .vb-spin-box__note {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 700;
  }

  /* ── RELOAD SECTION: ICON GRID STYLE ── */
  .vb-reload-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp3);
    margin-bottom: var(--sp5);
  }

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

  .vb-reload-card {
    display: flex;
    flex-direction: column;
    padding: var(--sp3) var(--sp3);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .vb-reload-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
  }

  .vb-reload-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp2);
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .vb-reload-card__value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2px;
  }

  .vb-reload-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .vb-reload-card__detail {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  /* ── SPORTS: TIMELINE STYLE ── */
  .vb-sports-timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--sp5);
  }

  .vb-sports-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2), transparent);
    border-radius: 2px;
  }

  .vb-timeline-item {
    position: relative;
    padding: var(--sp3) var(--sp3);
    margin-bottom: var(--sp3);
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .vb-timeline-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
  }

  .vb-timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg);
    box-shadow: 0 0 10px var(--accent);
  }

  .vb-timeline-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp1);
  }

  .vb-timeline-item__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .vb-stat-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
  }

  .vb-timeline-item__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* ── MARATHON: FEATURE BLOCK ── */
  .vb-marathon {
    display: flex;
    flex-direction: column;
    padding: var(--sp5) var(--sp4);
    margin-bottom: var(--sp5);
    background: linear-gradient(135deg, var(--c1) 0%, var(--c3) 50%, var(--bg) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    box-shadow: var(--shadow2), var(--glow2);
    position: relative;
    overflow: hidden;
  }

  .vb-marathon__title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--sp2);
  }

  .vb-marathon__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp4);
    max-width: 580px;
    line-height: 1.7;
  }

  .vb-marathon__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp3);
    margin-bottom: var(--sp4);
  }

  @media (min-width: 768px) {
    .vb-marathon__stats { grid-template-columns: repeat(4, 1fr); }
  }

  .vb-marathon__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--sp2) var(--sp2);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    text-align: center;
    transition: background 0.25s ease;
  }

  .vb-marathon__stat:hover {
    background: rgba(255,255,255,0.1);
  }

  .vb-marathon__stat-val {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2px;
  }

  .vb-marathon__stat-key {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  .vb-marathon__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
  }

  /* ── FAQ ACCORDION ── */
  .vb-faq {
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
    margin-bottom: var(--sp5);
  }

  .vb-faq__item {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius2);
    overflow: hidden;
    transition: border-color 0.25s ease;
  }

  .vb-faq__item:hover {
    border-color: rgba(255,255,255,0.16);
  }

  .vb-faq__item.vb-faq__item--open {
    border-color: var(--accent);
  }

  .vb-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--sp3) var(--sp3);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    gap: var(--sp2);
  }

  .vb-faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 900;
    transition: transform 0.3s ease;
  }

  .vb-faq__item--open .vb-faq__icon {
    transform: rotate(45deg);
  }

  .vb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 var(--sp3);
  }

  .vb-faq__item--open .vb-faq__answer {
    max-height: 260px;
    padding: 0 var(--sp3) var(--sp3);
  }

  .vb-faq__answer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }

  .vb-faq__answer a:hover {
    text-decoration: underline;
  }

  /* ── CTA BLOCK ── */
  .vb-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp5) var(--sp4);
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    border-radius: var(--radius2);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow2), var(--glow);
  }

  .vb-cta-block__title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--sp2);
  }

  .vb-cta-block__sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp4);
    max-width: 480px;
  }

  /* ── ANIMATIONS ── */
  @keyframes vb-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .vb-animate {
    opacity: 0;
    animation: vb-fadeUp 0.55s ease forwards;
  }

  .vb-animate--d1 { animation-delay: 0.05s; }
  .vb-animate--d2 { animation-delay: 0.12s; }
  .vb-animate--d3 { animation-delay: 0.2s; }
  .vb-animate--d4 { animation-delay: 0.28s; }
  .vb-animate--d5 { animation-delay: 0.36s; }