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

  .bonus-page {
    --accent-gold: #f5c542;
    --accent-purple: #6b3fd4;
    --deep-dark: #0d0a1f;
    --card-dark: #1a1530;
    --card-glow: rgba(107, 63, 212, 0.25);
    color: var(--fg);
    padding: var(--sp2) 0;
  }

  .hero-bonus {
    position: relative;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
    border-radius: var(--rad);
    background: linear-gradient(135deg, #1a0b3d 0%, #3d1574 50%, #6b3fd4 100%);
    overflow: hidden;
    margin-bottom: var(--sp2);
    box-shadow: 0 25px 60px rgba(107, 63, 212, 0.4);
  }

  .hero-bonus::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.35), transparent 70%);
    pointer-events: none;
  }

  .hero-bonus h1 {
    position: relative;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 800;
  }

  .hero-bonus h1 span {
    background: linear-gradient(90deg, #f5c542, #ffe27a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-bonus p {
    position: relative;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 720px;
    margin: 0 0 1.75rem;
    line-height: 1.6;
  }

  .hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat-item {
    padding: 1.1rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: var(--rad-sm);
    backdrop-filter: blur(10px);
  }

  .stat-value {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #f5c542;
    line-height: 1;
  }

  .stat-item span:last-child {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.4rem;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #f5c542, #ff9d3d);
    color: #1a0b3d;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.45);
    transition: all 0.3s ease;
    position: relative;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(245, 197, 66, 0.6);
  }

  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: var(--sp2) 0 1.5rem;
    color: var(--fg);
    font-weight: 800;
    position: relative;
    padding-left: 1.1rem;
  }

  .section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 70%;
    background: linear-gradient(180deg, #f5c542, #6b3fd4);
    border-radius: 4px;
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--sp2);
  }

  .offer-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, #1a1530 0%, #2a1f4d 100%);
    border: 1px solid rgba(107, 63, 212, 0.4);
    border-radius: var(--rad);
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(107, 63, 212, 0.5);
  }

  .offer-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #f5c542, #6b3fd4, #f5c542);
  }

  .offer-card h3 {
    font-size: 1.35rem;
    color: #f5c542;
    margin: 0 0 1rem;
    font-weight: 800;
  }

  .offer-amount {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
  }

  .offer-card li {
    padding: 0.55rem 0 0.55rem 1.6rem;
    position: relative;
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }

  .offer-card li:last-child { border-bottom: none; }

  .offer-card li::before {
    content: '◆';
    position: absolute;
    left: 0; top: 0.55rem;
    color: #f5c542;
    font-size: 0.85rem;
  }

  .offer-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
  }

  .no-deposit-box {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #f5c542 0%, #ff9d3d 100%);
    border-radius: var(--rad);
    color: #1a0b3d;
    margin-bottom: var(--sp2);
    box-shadow: 0 18px 40px rgba(245, 197, 66, 0.35);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
  }

  .no-deposit-box h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
  }

  .no-deposit-box p {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
  }

  .no-deposit-cta {
    padding: 0.95rem 2rem;
    background: #1a0b3d;
    color: #f5c542;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .no-deposit-cta:hover {
    background: #0d0520;
    transform: scale(1.05);
  }

  .timeline-steps {
    display: grid;
    gap: 1rem;
    margin-bottom: var(--sp2);
  }

  .step-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
    background: var(--card);
    border-left: 4px solid #6b3fd4;
    border-radius: var(--rad-sm);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .step-row:hover {
    transform: translateX(6px);
    border-left-color: #f5c542;
  }

  .step-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #6b3fd4;
    line-height: 1;
    text-align: center;
  }

  .step-row p {
    margin: 0;
    color: var(--fg);
    line-height: 1.55;
  }

  .table-responsive {
    overflow-x: auto;
    margin-bottom: var(--sp2);
    border-radius: var(--rad);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  }

  .bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 600px;
  }

  .bonus-table thead {
    background: linear-gradient(135deg, #1a0b3d, #6b3fd4);
  }

  .bonus-table th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    color: #f5c542;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .bonus-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
  }

  .bonus-table tr:last-child td { border-bottom: none; }

  .bonus-table tbody tr:hover {
    background: rgba(107, 63, 212, 0.06);
  }

  .bonus-table td:first-child {
    font-weight: 700;
    color: #6b3fd4;
  }

  .faq-list {
    display: grid;
    gap: 0.8rem;
    margin-bottom: var(--sp2);
  }

  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 8px 25px rgba(107, 63, 212, 0.15);
  }

  .faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--fg);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .faq-item summary::-webkit-details-marker { display: none; }

  .faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #6b3fd4;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }

  .faq-item[open] summary {
    border-bottom: 1px solid var(--border);
    color: #6b3fd4;
  }

  .faq-item p {
    padding: 1.1rem 1.5rem 1.3rem;
    margin: 0;
    color: var(--fg);
    line-height: 1.65;
  }

  .responsible-note {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(107, 63, 212, 0.08), rgba(245, 197, 66, 0.08));
    border: 1px dashed rgba(107, 63, 212, 0.4);
    border-radius: var(--rad-sm);
    text-align: center;
    font-weight: 600;
    color: var(--fg);
  }

  .intro-text {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: var(--sp2);
    color: var(--fg);
    max-width: 900px;
  }

  .featured-card {
    position: relative;
  }

  .featured-card::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 1rem; right: -2rem;
    background: #f5c542;
    color: #1a0b3d;
    padding: 0.3rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 900;
    transform: rotate(35deg);
    letter-spacing: 1px;
    z-index: 2;
  }

  @media (max-width: 768px) {
    .no-deposit-box {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .step-row {
      grid-template-columns: 50px 1fr;
      gap: 1rem;
      padding: 1.1rem;
    }
    .step-num { font-size: 2rem; }
    .hero-bonus { padding: 2rem 1.5rem; }
  }