html, body { max-width: 100vw; overflow-x: hidden; }
  
  :root {
    --bonusGrad: linear-gradient(135deg, #ff2e93 0%, #7c3aed 50%, #2563eb 100%);
    --bonusGrad2: linear-gradient(135deg, #fbbf24 0%, #ff2e93 100%);
    --darkBg: #0a0418;
    --darkBg2: #150826;
    --cardBg: rgba(255, 255, 255, 0.04);
    --cardBorder: rgba(255, 255, 255, 0.08);
    --textBright: #ffffff;
    --textSoft: #c4b8d8;
    --accent1: #ff2e93;
    --accent2: #fbbf24;
    --accent3: #7c3aed;
  }

  .bonusWrap {
    background: radial-gradient(ellipse at top, #1a0a35 0%, var(--darkBg) 60%);
    border-radius: 32px;
    color: var(--textBright);
    margin: 2rem 0;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 3vw, 3rem);
    position: relative;
  }

  .bonusWrap::before {
    background: radial-gradient(circle, rgba(255, 46, 147, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    content: '';
    filter: blur(80px);
    height: 400px;
    pointer-events: none;
    position: absolute;
    right: -5%;
    top: -5%;
    width: 400px;
    z-index: 0;
  }

  .bonusWrap::after {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -5%;
    content: '';
    filter: blur(80px);
    height: 350px;
    left: -5%;
    pointer-events: none;
    position: absolute;
    width: 350px;
    z-index: 0;
  }

  .bonusWrap > * { position: relative; z-index: 1; }

  .heroBonus {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  @media (min-width: 1024px) {
    .heroBonus { grid-template-columns: 1.2fr 1fr; }
  }

  .heroTag {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 100px;
    color: var(--accent2);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.2rem;
    text-transform: uppercase;
  }

  .bonusH1 {
    background: linear-gradient(135deg, #ffffff 0%, #ff2e93 70%, #fbbf24 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .heroLead {
    color: var(--textSoft);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .heroStats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem;
  }

  .statBox {
    background: var(--cardBg);
    border: 1px solid var(--cardBorder);
    border-radius: 16px;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
  }

  .statBox:hover {
    border-color: rgba(255, 46, 147, 0.4);
    transform: translateY(-3px);
  }

  .statNum {
    background: var(--bonusGrad2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1;
  }

  .statLbl {
    color: var(--textSoft);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    text-transform: uppercase;
  }

  .ctaPrimary {
    background: var(--bonusGrad);
    border: none;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(255, 46, 147, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    color: white;
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }

  .ctaPrimary:hover {
    box-shadow: 0 20px 50px rgba(255, 46, 147, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: white;
    transform: translateY(-3px) scale(1.02);
  }

  .heroOffer {
    background: linear-gradient(155deg, rgba(255, 46, 147, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 1px solid rgba(255, 46, 147, 0.25);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
  }

  .offerPill {
    background: var(--accent2);
    border-radius: 100px;
    color: #1a0a35;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    text-transform: uppercase;
  }

  .offerBig {
    background: var(--bonusGrad2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .offerSub {
    color: var(--textBright);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0 1.5rem;
  }

  .offerPlus {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    color: var(--textSoft);
    font-size: 0.95rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
  }

  .offerPlus strong { color: var(--accent2); }

  .sectionTitle {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 3rem 0 1.5rem;
    position: relative;
  }

  .sectionTitle::before {
    background: var(--bonusGrad);
    border-radius: 4px;
    content: '';
    display: block;
    height: 4px;
    margin-bottom: 1rem;
    width: 60px;
  }

  .subTitle {
    color: var(--textBright);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
  }

  .bonusWrap p {
    color: var(--textSoft);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .promoGrid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
  }

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

  .promoCard {
    background: var(--cardBg);
    border: 1px solid var(--cardBorder);
    border-radius: 22px;
    overflow: hidden;
    padding: 2rem 1.7rem;
    position: relative;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }

  .promoCard::before {
    background: var(--bonusGrad);
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .promoCard:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 46, 147, 0.3);
    transform: translateY(-6px);
  }

  .promoCard:hover::before { transform: scaleX(1); }

  .promoIcon {
    align-items: center;
    background: var(--bonusGrad);
    border-radius: 14px;
    display: flex;
    font-size: 1.5rem;
    font-weight: 800;
    height: 50px;
    justify-content: center;
    margin-bottom: 1.2rem;
    width: 50px;
  }

  .promoCard h3 {
    color: var(--textBright);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .promoCard p {
    color: var(--textSoft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .promoCard .promoTag {
    background: rgba(251, 191, 36, 0.12);
    border-radius: 100px;
    color: var(--accent2);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
  }

  .vipBox {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(37, 99, 235, 0.12) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 2rem;
  }

  .vipList {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
  }

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

  .vipList li {
    align-items: flex-start;
    color: var(--textBright);
    display: flex;
    font-size: 0.98rem;
    gap: 0.8rem;
    padding: 0.6rem 0;
  }

  .vipList li::before {
    background: var(--bonusGrad2);
    border-radius: 6px;
    color: #1a0a35;
    content: '✓';
    flex-shrink: 0;
    font-weight: 800;
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 24px;
  }

  .stepsTimeline {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
  }

  .stepRow {
    align-items: center;
    background: var(--cardBg);
    border: 1px solid var(--cardBorder);
    border-radius: 18px;
    display: grid;
    gap: 1.3rem;
    grid-template-columns: auto 1fr;
    padding: 1.3rem 1.5rem;
    transition: all 0.3s ease;
  }

  .stepRow:hover {
    border-color: rgba(255, 46, 147, 0.3);
    transform: translateX(6px);
  }

  .stepCircle {
    align-items: center;
    background: var(--bonusGrad);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(255, 46, 147, 0.3);
    color: white;
    display: flex;
    font-size: 1.2rem;
    font-weight: 800;
    height: 50px;
    justify-content: center;
    width: 50px;
  }

  .stepRow p {
    color: var(--textBright);
    margin: 0;
  }

  .table-responsive {
    background: var(--cardBg);
    border: 1px solid var(--cardBorder);
    border-radius: 20px;
    margin: 2rem 0;
    overflow-x: auto;
    padding: 0.5rem;
  }

  .bonusTable {
    border-collapse: collapse;
    color: var(--textBright);
    min-width: 600px;
    width: 100%;
  }

  .bonusTable thead th {
    background: var(--bonusGrad);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1rem;
    text-align: left;
    text-transform: uppercase;
  }

  .bonusTable thead th:first-child { border-radius: 14px 0 0 14px; }
  .bonusTable thead th:last-child { border-radius: 0 14px 14px 0; }

  .bonusTable tbody td {
    border-bottom: 1px solid var(--cardBorder);
    color: var(--textSoft);
    font-size: 0.95rem;
    padding: 1rem;
  }

  .bonusTable tbody tr:last-child td { border-bottom: none; }

  .bonusTable tbody tr:hover td { background: rgba(255, 46, 147, 0.05); color: var(--textBright); }

  .bonusTable tbody td:first-child { color: var(--textBright); font-weight: 600; }

  .responsibleBox {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 22px;
    margin: 2rem 0;
    padding: 1.8rem 2rem;
  }

  .faqWrap {
    display: grid;
    gap: 0.8rem;
    margin: 2rem 0;
  }

  .faqItem {
    background: var(--cardBg);
    border: 1px solid var(--cardBorder);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faqItem[open] {
    background: rgba(255, 46, 147, 0.05);
    border-color: rgba(255, 46, 147, 0.25);
  }

  .faqItem summary {
    color: var(--textBright);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    list-style: none;
    padding: 1.2rem 1.5rem;
    position: relative;
    user-select: none;
  }

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

  .faqItem summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .faqItem[open] summary::after { transform: translateY(-50%) rotate(45deg); }

  .faqItem p {
    color: var(--textSoft);
    margin: 0;
    padding: 0 1.5rem 1.3rem;
  }

  .finalCta {
    background: linear-gradient(135deg, rgba(255, 46, 147, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(255, 46, 147, 0.25);
    border-radius: 24px;
    margin: 3rem 0 0;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .finalCta h3 {
    color: var(--textBright);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .finalCta p {
    color: var(--textSoft);
    margin: 0 auto 1.5rem;
    max-width: 500px;
  }