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

.bonus-page {
  --accent-hot: #ff2e7e;
  --accent-gold: #ffcc33;
  --accent-violet: #6b3df5;
  --accent-cyan: #00e0ff;
  --surface-1: #14081f;
  --surface-2: #1f1030;
  --surface-3: #2a1740;
  --ink: #fff5ff;
  --ink-mute: #bca8d4;
  --grad-hero: linear-gradient(135deg, #6b3df5 0%, #ff2e7e 55%, #ffcc33 110%);
  --grad-card: linear-gradient(160deg, #2a1740 0%, #1f1030 100%);
  --grad-gold: linear-gradient(135deg, #ffcc33 0%, #ff8a00 100%);
  --shdw-deep: 0 30px 60px -20px rgba(107, 61, 245, 0.6), 0 12px 24px -10px rgba(255, 46, 126, 0.35);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.bonus-page * { box-sizing: border-box; }

.hero-wrap {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 32px;
  background: var(--grad-hero);
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  box-shadow: var(--shdw-deep);
}

.hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 204, 51, 0.35), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0, 224, 255, 0.25), transparent 45%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 8, 31, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-pill span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.bonus-page h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 245, 255, 0.92);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hero-stat {
  background: rgba(20, 8, 31, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 0.4rem;
  display: block;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface-1);
  color: var(--accent-gold);
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--accent-gold);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 30px -10px rgba(255, 204, 51, 0.6);
}

.cta-primary:hover {
  transform: translateY(-3px);
  background: var(--grad-gold);
  color: var(--surface-1);
  box-shadow: 0 20px 40px -10px rgba(255, 204, 51, 0.8);
}

.cta-primary::after { content: "→"; transition: transform 0.3s; }
.cta-primary:hover::after { transform: translateX(4px); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.8rem;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.92;
}

.trust-row strong { color: var(--accent-gold); }

.bonus-page h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin: 0 0 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 1.2rem;
}

.bonus-page h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.2em;
  width: 5px; height: 0.85em;
  background: var(--grad-gold);
  border-radius: 4px;
}

.bonus-page h3 {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.bonus-page p { line-height: 1.7; color: var(--ink-mute); margin: 0 0 1rem; }
.bonus-page p strong { color: var(--ink); }

.section-block { margin-bottom: clamp(3rem, 5vw, 4.5rem); padding: 0; }

.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

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

.welcome-feature-list {
  background: var(--grad-card);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 204, 51, 0.15);
  list-style: none;
  margin: 0;
}

.welcome-feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(188, 168, 212, 0.18);
  font-size: 0.98rem;
}

.welcome-feature-list li:last-child { border-bottom: none; }
.welcome-feature-list li span:first-child { color: var(--ink-mute); }
.welcome-feature-list li span:last-child { color: var(--accent-gold); font-weight: 700; text-align: right; }

.example-card {
  background: var(--grad-hero);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.example-card::before {
  content: "EXAMPLE";
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  background: rgba(20, 8, 31, 0.5);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.example-flow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.flow-box {
  background: rgba(20, 8, 31, 0.5);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.flow-arrow { font-size: 1.4rem; color: var(--accent-gold); }

.example-result {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 1.3rem;
}

.nodeposit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.nd-card {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: 22px;
  background: var(--grad-card);
  border: 1px solid rgba(0, 224, 255, 0.2);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
  overflow: hidden;
}

.nd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0, 224, 255, 0.35);
}

.nd-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-hot));
}

.nd-big {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nd-label { font-size: 0.95rem; color: var(--ink-mute); }

.table-responsive {
  overflow-x: auto;
  border-radius: 20px;
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.bonus-page table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.bonus-page thead th {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-hot));
  color: #fff;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-page tbody td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.97rem;
  color: var(--ink);
}

.bonus-page tbody tr:last-child td { border-bottom: none; }
.bonus-page tbody tr:hover { background: rgba(255, 204, 51, 0.05); }
.bonus-page tbody td:first-child { font-weight: 600; }
.bonus-page tbody td:last-child { color: var(--accent-gold); font-weight: 600; }

.vip-tier-table tbody td:first-child {
  background: linear-gradient(90deg, rgba(255, 204, 51, 0.12), transparent);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.term-item {
  background: var(--grad-card);
  border-left: 4px solid var(--accent-hot);
  padding: 1.3rem 1.5rem;
  border-radius: 0 16px 16px 0;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.6;
  transition: border-color 0.3s, transform 0.3s;
}

.term-item:hover { border-left-color: var(--accent-gold); transform: translateX(4px); }
.term-item strong { color: var(--accent-gold); }

.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: var(--grad-hero);
  border-radius: 28px;
  margin: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 204, 51, 0.3), transparent 50%);
}

.cta-band-inner { position: relative; z-index: 2; }

.cta-band h2 {
  color: #fff;
  padding-left: 0;
  margin-bottom: 0.8rem;
}

.cta-band h2::before { display: none; }

.cta-band p { color: rgba(255, 245, 255, 0.95); margin-bottom: 1.8rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover { border-color: rgba(255, 204, 51, 0.3); }
.faq-item[open] { border-color: rgba(255, 204, 51, 0.4); box-shadow: 0 12px 30px -15px rgba(255, 46, 126, 0.4); }

.faq-item summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  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: var(--accent-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--ink-mute);
}

.bonus-page a { color: var(--accent-gold); text-decoration: underline; text-underline-offset: 3px; }
.bonus-page a:hover { color: var(--accent-hot); }

@media (max-width: 480px) {
  .hero-wrap { border-radius: 22px; }
  .welcome-feature-list li { flex-direction: column; gap: 0.2rem; }
  .welcome-feature-list li span:last-child { text-align: left; }
}