/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --bg-white: #ffffff;
  --bg-light: #f0f6fa;
  --bg-card: #f8f8f8;
  --brand-purple: #491c53;
  --text-black: #1b1b1b;
  --text-mid: #4a5565;
  --text-dark: #0f172b;
  --text-muted: #45556c;
  --green: #0baf0b;
  --bitcoin: #f7931a;
  --grad-cta: linear-gradient(0deg, #008ca6 0%, #28b4cd 50%, #2fd2d8 100%);
  --grad-hero: linear-gradient(90deg, #fe9a00 0%, #ff6900 50%, #e17100 100%);
  --grad-footer: linear-gradient(166deg, #491c53 0%, #561a63 50%, #491c53 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 1px 6px rgba(0, 0, 0, 0.2);
  --radius-card: 5px;
  --radius-cta: 3px;
  --content-max: 1200px;
}

/* ─── Reset ─────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-black);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
section a {
  color: blue;
  text-decoration: underline;
}
section button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}
ul,
ol {
  list-style: none;
}

/* ─── Container ─────────────────────────────────────── */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ─── Typography helpers ─────────────────────────────── */
.h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-black);
}
.h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-black);
}
.body-lg {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}
.body {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
.small {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.smaller {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.disclaimer {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}
.tc-note {
  font-size: 10px;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
}

/* ─── CTA Button ─────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  text-decoration: none;
  border-radius: var(--radius-cta);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-cta:hover {
  opacity: 0.92;
  color: #fff;
}
.btn-cta img {
  width: 13px;
  height: 18px;
  flex-shrink: 0;
}
.btn-cta img.arrow {
  width: 9px;
  height: 16px;
}

/* ─── Section padding helper ─────────────────────────── */
.section-pad {
  padding: 30px 0;
}

/* ══════════════════════════════════════════════════════
   1. HERO (section-1)
══════════════════════════════════════════════════════ */
.s1 {
  background: var(--bg-white);
  padding: 48px 0;
}
.s1 .btn-cta {
  max-width: 426px;
}
.s1 .wrap {
  display: flex;
  align-items: flex-start;
  gap: 155px;
}
.s1-text {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.s1-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  color: var(--text-black);
}
.s1-title .grad {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s1-body {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}
.s1-body p + p {
  margin-top: 10px;
}
.s1-image {
  flex: 0 0 525px;
  height: 520px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.s1-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s1-bonus-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  background: rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s1-bonus-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bitcoin);
  font-size: 18px;
  font-weight: 400;
}
.s1-bonus-label img {
  width: 27px;
  height: 27px;
}
.s1-bonus-headline {
  font-size: 42px;
  font-weight: 900;
  line-height: 0.7;
  color: #fff;
}
.s1-bonus-sub {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   3. STATS BAR (section-2)
══════════════════════════════════════════════════════ */
.s2 {
  background: var(--bg-light);
  padding: 24px 0;
}
.s2-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.s2-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s2-texts p {
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  padding: 0 12px;
}
.s2-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.s2-feature {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 120px;
  justify-content: center;
}
.s2-feature img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.s2-feature-label {
  text-align: center;
  font-size: 16px;
  line-height: 16px;
}
.s2-feature-label strong {
  display: block;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   4. BITCOIN BENEFITS (section-3a)
══════════════════════════════════════════════════════ */
.s3a {
  background: var(--bg-white);
  padding: 40px 0 30px;
}
.s3a-intro {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 32px;
}
.s3a-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s3a-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.s3a-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.s3a-card-icon {
  flex-shrink: 0;
  padding-top: 6px;
}
.s3a-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.s3a-card-body {
  flex: 1;
}
.s3a-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: var(--text-black);
  padding: 10px 0;
}
.s3a-card-desc {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s3a-full {
  grid-column: 1 / -1;
}
.s3a-disclaimer {
  margin-top: 4px;
}
.s3a-outro {
  font-size: 18px;
  line-height: 26px;
  margin-top: 32px;
}

/* ══════════════════════════════════════════════════════
   5. RIGHT FOR YOU (section-3B)
══════════════════════════════════════════════════════ */
.s3b {
  background: var(--bg-white);
  padding: 24px 0;
}
.s3b-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.s3b-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.s3b-bullet-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.s3b-card {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s3b-card img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.s3b-card p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   6. CRYPTO REWARDS & WELCOME OFFER (section-4)
══════════════════════════════════════════════════════ */
.s4 {
  background: var(--bg-light);
  padding: 30px 0;
}
.s4 .wrap {
  max-width: 816px;
}
.s4-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s4-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Image + Bonus Terms row */
.s4-promo-row {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.s4-promo-img {
  flex: 0 0 438px;
  height: 400px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.s4-promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s4-promo-img img:first-child {
  display: block;
}
.s4-promo-img img:nth-child(2) {
  display: none;
}
.s4-bonus-terms-card {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.s4-bonus-terms-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s4-bonus-terms-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}
.s4-bonus-terms-sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-mid);
}
.s4-bonus-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s4-bonus-stat-label {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-mid);
}
.s4-bonus-stat-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}

/* Bonus Details accordion */
.s4-bonus-details {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 20px 22px 30px;
}
.s4-bonus-details-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  padding: 16px 10px;
  border-bottom: 0.3px solid var(--text-black);
}
.s4-bd-item {
  border-bottom: 0.3px solid var(--text-black);
  overflow: hidden;
}
.s4-bd-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-black);
  text-align: left;
  gap: 10px;
}
.s4-bd-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.s4-bd-item.open .s4-bd-chevron {
  transform: rotate(180deg);
}
.s4-bd-body {
  display: none;
  padding: 10px 10px 10px;
  background: var(--bg-white);
  border-bottom: 0.3px solid var(--text-black);
}
.s4-bd-item.open .s4-bd-body {
  display: block;
}
.s4-bd-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-mid);
}

/* Bonus explanation card */
.s4-claim-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s4-claim-card > p {
  font-size: 20px;
  line-height: 34px;
}
.s4-circle-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s4-circle-step {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.s4-circle-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-mid);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s4-circle-step p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   7. CURRENT CRYPTO REWARDS (section-5)
══════════════════════════════════════════════════════ */
.s5 {
  background: var(--bg-white);
  padding: 54px 0;
}
.s5-header {
  margin-bottom: 20px;
}
.s5-header h2 {
  margin-bottom: 24px;
}
.s5-rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.s5-reward-card {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: var(--bg-white);
}
.s5-reward-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.s5-reward-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s5-reward-card-body {
  padding: 16px 20px;
}
.s5-reward-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.s5-reward-card-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-mid);
}
.s5-perks {
  margin-top: 10px;
}
.s5-perks h3 {
  margin-bottom: 16px;
}
.s5-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.s5-perk-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s5-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card);
}
.s5-perk-dot {
  width: 20px;
  height: 20px;
  background: var(--bitcoin);
  border-radius: 50%;
  flex-shrink: 0;
}
.s5-perk-item p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s5-mobile-tabs {
  display: none;
  margin-bottom: 30px;
}
.s5-tab-bar {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 10px;
  display: flex;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.s5-tab-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: var(--radius-card);
  font-size: 14px;
  line-height: 1.3;
  color: var(--brand-purple);
  cursor: pointer;
  text-align: center;
  background: var(--bg-white);
  border: none;
}
.s5-tab-btn.active {
  background: var(--brand-purple);
  color: #eee9f0;
}
.s5-tab-panel {
  display: none;
}
.s5-tab-panel.active {
  display: block;
}

/* ══════════════════════════════════════════════════════
   8. HOW IT WORKS (section-6)
══════════════════════════════════════════════════════ */
.s6 {
  background: var(--bg-light);
  padding: 42px 0 60px 0;
}
.s6-header {
  margin-bottom: 16px;
}
.s6-header h2 {
  margin-bottom: 8px;
}
.s6-body {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 24px;
}
.s6-tabs {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 12px;
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.s6-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-card);
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  color: var(--text-mid);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.s6-tab.active {
  background: var(--brand-purple);
  color: #fff;
}
.s6-tab-panel {
  display: none;
}
.s6-tab-panel.active {
  display: block;
}
.s6-tab-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 24px;
}
.s6-tab-intro {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.s6-steps-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.s6-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.s6-step-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-black);
  width: 16px;
  flex-shrink: 0;
  padding-top: 2px;
  line-height: 24px;
}
.s6-step p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s6-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.s6-acc-item {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.s6-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-black);
  text-align: left;
  gap: 10px;
  border: none;
  background: none;
  cursor: pointer;
}
.s6-acc-toggle .acc-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.s6-acc-toggle .acc-icon img {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}
.s6-acc-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.s6-acc-item.open .s6-acc-chevron {
  transform: rotate(180deg);
}
.s6-acc-body {
  display: none;
  padding: 16px 30px 20px;
  background: var(--bg-white);
  flex-direction: column;
  gap: 16px;
}
.s6-acc-item.open .s6-acc-body {
  display: flex;
}
.s6-acc-step {
  display: flex;
  gap: 2px;
  align-items: flex-start;
}
.s6-acc-step-num {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  width: 24px;
  flex-shrink: 0;
}
.s6-acc-step p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s6-footer-note {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s6-footer-note p + p {
  margin-top: 12px;
}
.s6-exchange-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.s6-exchange-card {
  flex: 1;
  background: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-card);
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.s6-exchange-card img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}
.s6-exchange-card span {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-black);
  white-space: nowrap;
}
.s6-circle-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.s6-circle-step {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card);
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 22px;
  min-height: 83px;
}
.s6-circle-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--text-mid);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.s6-circle-step p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s6-tab-bold {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-black);
  margin-bottom: 20px;
}
.s6-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.s6-bullet-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.s6-bullet-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45556c;
  flex-shrink: 0;
  margin-top: 10px;
}
.s6-bullet-item p {
  font-size: 18px;
  line-height: 26px;
  color: #45556c;
}

/* ══════════════════════════════════════════════════════
   9. FEES, LIMITS, TIMES (section-7)
══════════════════════════════════════════════════════ */
.s7 {
  background: var(--bg-white);
  padding: 50px 0;
}
.s7-header {
  margin-bottom: 20px;
}
.s7-header h2 {
  margin-bottom: 24px;
}
.s7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 30px;
}
.s7-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.s7-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s7-card-header img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.s7-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-dark);
}
.s7-card-content {
  display: flex;
  gap: 12px;
}
.s7-spacer {
  flex-shrink: 0;
  width: 40px;
}
.s7-bullets {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.s7-bullet {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.s7-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 8px;
}
.s7-bullet p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-muted);
}
.s7-tip {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-muted);
}
.s7-tip strong {
  font-weight: 700;
}
.s7-limits-table {
  flex: 1;
}
.s7-limit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.3px solid var(--text-mid);
  font-size: 16px;
  white-space: nowrap;
}
.s7-limit-row:last-child {
  border-bottom: none;
}
.s7-limit-label {
  font-weight: 400;
  color: var(--text-muted);
}
.s7-limit-value {
  font-weight: 700;
  color: var(--text-dark);
}
.s7-notes {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
  padding-top: 12px;
}
.s7-notes strong {
  font-weight: 700;
}
.s7-timing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}
.s7-timing-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s7-timing-head {
  display: flex;
  gap: 12px;
  align-items: center;
}
.s7-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s7-badge.green {
  background: linear-gradient(135deg, #d0fae5 0%, #f0fdf4 100%);
}
.s7-badge.orange {
  background: linear-gradient(135deg, #fef3c6 0%, #fff7ed 100%);
}
.s7-badge img {
  width: 16px;
  height: 16px;
}
.s7-timing-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.s7-timing-desc {
  display: flex;
  gap: 12px;
}
.s7-timing-indent {
  flex-shrink: 0;
  width: 81px;
}
.s7-timing-text {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-mid);
}
.s7-delays {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s7-delay {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.s7-delay p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
   10. GAMES & FEATURES (section-8)
══════════════════════════════════════════════════════ */
.s8 {
  background: var(--bg-light);
  padding: 50px 0 30px;
}
.s8.disclaimer {
  color: #000;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  font-style: normal;
  padding: 0;
  margin-top: 24px;
}
.s8-header {
  margin-bottom: 20px;
}
.s8-header h2 {
  margin-bottom: 24px;
}
.s8-popular-title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px; /* 170% */
  margin: 24px 0;
}
.s8-games-swiper {
  overflow: hidden;
  margin-bottom: 30px;
  padding: 18px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card);
  box-sizing: border-box;
}
.s8-note {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}
.s8-game {
  width: 100%;
}
.s8-game-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.s8-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s8-game-label {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.s8-what-play {
  margin-bottom: 8px;
}
.s8-what-play h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 24px;
}
.s8-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  margin-top: 24px;
}
.s8-cat-card {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: var(--bg-white);
}
.s8-cat-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  overflow: hidden;
}
.s8-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.s8-cat-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.s8-cat-content p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s8-users-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}
.s8-users-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
}
.s8-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card);
}
.s8-check-dot {
  width: 20px;
  height: 20px;
  background: var(--bitcoin);
  border-radius: 50%;
  flex-shrink: 0;
}
.s8-user-item p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}
.s8-recommended-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  margin: 40px 0 24px;
}
.s8-rec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.s8-rec-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--bg-white);
}
.s8-rec-img {
  border-radius: 4px;
  overflow: hidden;
}
.s8-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s8-rec-body {
  padding: 0;
}
.s8-rec-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 16px;
}
.s8-rec-body p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   11. PROS / CONS (section-9)
══════════════════════════════════════════════════════ */
.s9 {
  background: var(--bg-white);
  padding: 50px 0;
}
.s9-header {
  margin-bottom: 16px;
}
.s9-header h2 {
  margin-bottom: 16px;
}
.s9-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 16px 30px;
}
.s9-col {
  display: flex;
  flex-direction: column;
}
.s9-col-header {
  padding: 16px 94px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  border-radius: 5px 5px 0 0;
}
.s9-col.pros .s9-col-header {
  background: var(--brand-purple);
  color: #fff;
}
.s9-col.cons .s9-col-header {
  background: var(--bg-white);
  color: var(--text-black);
  border: 0.3px solid #969696;
}
.s9-col-body {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-radius: 0 0 5px 5px;
  padding: 24px 16px;
  flex: 1;
}
.s9-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.s9-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.s9-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.s9-item p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-black);
}

/* ══════════════════════════════════════════════════════
   12. SAFETY (section-10)
══════════════════════════════════════════════════════ */
.s10 {
  background: var(--bg-light);
  padding: 30px 0;
}
.s10-header {
  margin-bottom: 20px;
}
.s10-header h2 {
  margin-bottom: 24px;
}

/* Shared card styles */
.s10-card,
.s10-bottom-card,
.s10-kyc-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.s10-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s10-card-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.s10-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-dark);
}
.s10-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 50px;
}
.s10-bullet {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.s10-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 10px;
}
.s10-bullet p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-muted);
}
.s10-card-body-text {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
  padding-left: 50px;
}

/* Top 2-col grid */
.s10-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Bottom 2-col grid */
.s10-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Full-width KYC card */
.s10-kyc-card {
  margin-bottom: 0;
}
.s10-kyc-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s10-kyc-body p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-mid);
  padding-left: 50px;
}
.s10-bullet p {
  padding-left: 0;
}

/* ══════════════════════════════════════════════════════
   13. FAQ (section-11)
══════════════════════════════════════════════════════ */
.s11 {
  background: var(--bg-white);
  padding: 40px 0 60px;
}
.s11-header {
  margin-bottom: 24px;
}
.s11-faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--bg-white);
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--text-black);
  border-radius: 5px 5px 0 0;
  border: none;
  cursor: pointer;
}
.open .faq-toggle,
.faq-toggle:hover {
  background: #ead8ee;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-body {
  display: none;
  padding: 16px;
  background: var(--bg-white);
}
.faq-item.open .faq-body {
  display: block;
}
.faq-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   14. FOOTER CTA (section-12)
══════════════════════════════════════════════════════ */
.s12 {
  background: var(--bg-white);
  width: 100%;
}
.s12 .wrap {
  max-width: none;
  padding: 0;
}
.s12-inner {
  background: var(--grad-footer);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 415px;
}
/* decorative blur blobs */
.s12-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}
.s12-blob-1 {
  width: 904px;
  height: 724px;
  background: linear-gradient(
    141deg,
    rgba(255, 149, 0, 0.2) 0%,
    rgba(255, 176, 65, 0.2) 100%
  );
  right: -300px;
  top: -300px;
  transform: rotate(8.83deg);
}
.s12-blob-2 {
  width: 782px;
  height: 661px;
  background: linear-gradient(
    140deg,
    rgba(255, 149, 0, 0.2) 0%,
    rgba(255, 176, 65, 0.2) 100%
  );
  left: -250px;
  bottom: -200px;
  transform: rotate(12.96deg);
}
.s12-content {
  position: relative;
  z-index: 1;
  max-width: 1014px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.s12-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.s12-body {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  width: 100%;
}
.s12-body p + p {
  margin-top: 10px;
}
.s12-cta {
  width: 450px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--radius-cta);
  padding: 15px 22px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.2s;
}
.s12-cta:hover {
  opacity: 0.92;
  color: #fff;
}
.s12-cta img {
  width: 13px;
  height: 18px;
  flex-shrink: 0;
}
.s12-cta img.arrow {
  width: 9px;
  height: 16px;
}
.s12-disclaimer {
  font-size: 10px;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  text-align: center;
}

/* Mobile-only hero bonus card hidden by default on desktop */
.s1-bonus-card-mobile {
  display: none !important;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768–1199px)
══════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .wrap {
    padding: 0 18px;
  }
  .s1 .wrap {
    gap: 40px;
  }
  .s1-text {
    flex: 1;
  }
  .s1-image {
    flex: 0 0 420px;
    height: 420px;
  }
  .s7-grid {
    padding: 16px 0;
  }
  .s8-rec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .s4-promo-img {
    flex: 0 0 320px;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .s1-title {
    font-size: 34px;
    line-height: 44px;
  }
  .s1-bonus-headline {
    font-size: 32px;
  }
  .s5-rewards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile (<768px)
══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* ── Global type overrides ───────────────────────── */
  .body-lg {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Hero ────────────────────────────────────────── */
  .s1 .wrap {
    flex-direction: column;
    gap: 0;
  }
  .s1-text {
    flex: none;
    width: 100%;
    gap: 20px;
    padding-bottom: 24px;
  }
  .s1-image {
    display: none;
  }
  .s1-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .s1-body {
    font-size: 16px;
    line-height: 1.5;
  }
  .btn-cta {
    width: 100%;
    justify-content: space-between;
  }
  /* Show the mobile-only bonus card */
  .s1-bonus-card-mobile {
    display: flex !important;
    position: static;
    width: 100%;
    padding: 16px 20px;
    gap: 10px;
    border-radius: var(--radius-card);
  }
  .s1-bonus-card-mobile .s1-bonus-headline {
    font-size: 30px;
    line-height: 1.2;
  }
  .s1-bonus-sub {
    font-size: 16px;
  }

  /* ── Stats Bar ───────────────────────────────────── */
  .s2-card {
    padding: 16px;
    gap: 16px;
    border-radius: 0;
    box-shadow: none;
  }
  /* Keep 3 features in a row (do NOT collapse to 1 col) */
  .s2-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .s2-feature {
    min-height: 100px;
    padding: 8px 6px;
  }
  .s2-feature img {
    width: 50px;
    height: 50px;
  }
  .s2-feature-label {
    font-size: 16px;
    line-height: normal;
  }
  .s2-texts p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Benefits Cards ─────────────────────────────── */
  .s3a-row {
    grid-template-columns: 1fr;
  }
  .s3a-intro {
    font-size: 16px;
    line-height: 20px;
  }
  .s3a-card-title {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 0;
  }
  .s3a-card-desc {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Right For You ───────────────────────────────── */
  .s3b-bullets {
    grid-template-columns: 1fr;
  }
  .s3b .h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .s3b-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .s4-bonus-stat-label {
    font-size: 16px;
  }

  .s5-tab-btn {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Section 4 bonus layout ─────────────────────── */
  .s4-title {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .s4-claim-card {
    padding: 16px;
  }
  .s4-claim-card > p {
    font-size: 16px;
    line-height: 1.5;
  }
  .s4-bd-toggle {
    padding-left: 0;
  }

  .s4-bd-body {
    padding: 0 0 10px 0;
  }

  /* ── Crypto Rewards ──────────────────────────────── */
  .s5 {
    padding-top: 40px;
  }
  .s5-desktop-content {
    display: none;
  }
  .s5-mobile-tabs {
    display: block;
  }
  .s5-perks-grid {
    grid-template-columns: 1fr;
  }
  .h2 {
    font-size: 21px;
    line-height: 1.2;
  }
  .s5-reward-card-body {
    padding: 0;
  }
  .s5-reward-card-body h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 10px 20px 0;
  }
  .s5-reward-card-body p {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 20px;
  }
  .s5-perks h3 {
    font-size: 21px;
    line-height: 1.2;
  }
  .s5-perk-item {
    box-shadow: none;
    background: none;
    padding: 0;
    gap: 10px;
  }
  .s5-perk-dot {
    width: 18px;
    height: 18px;
    position: relative;
  }
  .s5-perk-dot::after {
    content: "\2713";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
  }
  .s5-perk-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-black);
  }

  /* ── How It Works tabs — keep in a single row ────── */
  .s6-tabs {
    flex-direction: row;
    gap: 4px;
    padding: 8px;
  }
  .s6-tab {
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 6px;
    flex: 1;
  }
  .s6-steps-card {
    padding: 20px;
  }
  .s6-exchange-row {
    flex-direction: column;
    gap: 10px;
  }
  .s6-circle-step {
    padding: 10px 16px;
  }
  .s6-circle-step p,
  .s6-bullet-item p {
    font-size: 16px;
    line-height: 1.5;
  }
  .s6-tab-bold {
    font-size: 16px;
  }
  .s6-acc-toggle {
    padding: 14px 20px;
  }
  .s6-acc-body {
    padding: 12px 20px 16px;
  }

  /* ── Fees, Limits ────────────────────────────────── */
  .s7-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .s7-card {
    padding: 16px;
  }

  /* ── Games ───────────────────────────────────────── */
  .s8-categories {
    grid-template-columns: 1fr;
  }
  .s8-rec-grid {
    grid-template-columns: 1fr;
  }
  .s8-rec-card {
    flex-direction: row;
  }
  .s8-rec-img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }
  .s8-rec-title {
    display: none;
  }
  .s8-rec-body p {
    font-size: 16px;
  }
  .s8-users-row {
    grid-template-columns: 1fr;
  }
  .s8-popular-title,
  .s8-users-title,
  .s8-recommended-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .s8 .h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Pros / Cons — tab layout ────────────────────── */
  .s9-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  /* Dissolve col wrappers so headers/bodies become direct grid children */
  .s9-col {
    display: contents;
  }

  /* Headers placed side-by-side in row 1 */
  .s9-col.pros .s9-col-header {
    grid-column: 1;
    grid-row: 1;
    border-radius: 5px 0 0 0;
    cursor: pointer;
    padding: 14px 20px;
  }
  .s9-col.cons .s9-col-header {
    grid-column: 2;
    grid-row: 1;
    border-radius: 0 5px 0 0;
    cursor: pointer;
    padding: 14px 20px;
  }

  /* Bodies both occupy row 2, full width — JS toggles visibility */
  .s9-col-body {
    grid-column: 1 / -1;
    grid-row: 2;
    border-radius: 0 0 5px 5px;
    display: none;
  }
  .s9-col.s9-active .s9-col-body {
    display: flex;
  }

  /* Active header = purple; inactive = white with border */
  .s9-col.pros:not(.s9-active) .s9-col-header {
    background: var(--bg-white);
    color: var(--text-black);
    border-bottom: 0.3px solid #969696;
  }
  .s9-col.cons.s9-active .s9-col-header {
    background: var(--brand-purple);
    color: #fff;
    border: none;
  }
  .s9-col.cons:not(.s9-active) .s9-col-header {
    background: var(--bg-white);
    color: var(--brand-purple);
    border-bottom: 0.3px solid #969696;
  }

  /* ── Pros / Cons body text ───────────────────────── */
  .s9-col-header {
    font-size: 16px;
    font-weight: 700;
  }
  .s9-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-black);
  }

  /* ── Safety ──────────────────────────────────────── */
  .s10-grid {
    grid-template-columns: 1fr;
  }
  .s10-bottom {
    grid-template-columns: 1fr;
  }
  .s10-card h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .s10-bullet p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* ── Section 4 ───────────────────────────────────── */
  .s4-promo-row {
    flex-direction: column;
    padding: 16px;
  }
  .s4-promo-img {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 305/133;
  }
  .s4-promo-img img:first-child {
    display: none;
  }
  .s4-promo-img img:nth-child(2) {
    display: block;
  }
  .s4-bonus-terms-card {
    padding: 16px;
  }
  .s4-circle-step {
    gap: 12px;
    padding: 10px 14px;
  }

  /* ── FAQ ─────────────────────────────────────────── */
  .faq-toggle {
    font-size: 16px;
    line-height: 22px;
  }

  /* ── Footer CTA ──────────────────────────────────── */
  .s12-inner {
    padding: 30px 20px;
    border-radius: 0;
  }
  .s12-cta {
    width: 100%;
  }
  .s12-content {
    gap: 16px;
  }
  .s12-body {
    font-size: 16px;
    line-height: 26px;
  }
  .s12-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .s1 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .s2 {
    padding: 0;
  }
  .s2 .wrap {
    padding: 0;
  }
  .s2-card {
    padding-top: 0;
    padding-bottom: 38px;
  }
  .s3b-inner {
    gap: 18px;
  }
  .s3b-inner .body {
    font-size: 16px;
  }
  .s3a-disclaimer {
    font-size: 16px;
  }
  .s3a-outro {
    font-size: 16px;
  }
  .s2-features {
    gap: 6px;
  }
  .s4-bonus-terms-card {
    padding: 0;
    box-shadow: none;
    width: 100%;
    gap: 16px;
  }
  .s4-bd-toggle {
    font-size: 16px;
  }
  .s4-bonus-details-title {
    display: none;
  }
  .s2-feature img {
    width: 44px;
    height: 44px;
  }
  .s2-feature-label {
    font-size: 16px;
  }
  .s4-circle-step {
    padding: 10px 22px;
    gap: 20px;
  }
  .s4-circle-step p {
    font-size: 16px;
  }
  .s5-header h2 {
    margin-bottom: 20px;
  }
  .s5-reward-card-body h3 {
    padding-top: 18px;
  }
  .s6-tab {
    font-size: 16px;
    padding: 8px 4px;
  }
  .s6-body {
    display: none;
  }
  .s6-tab-subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .s6-tab-intro {
    font-size: 16px;
    line-height: 21px;
  }
  .s6-step p,
  .s6-step-num {
    font-size: 16px;
    line-height: 21px;
  }
  .s6-step-num {
    gap: 12px;
  }
  .s6-footer-note {
    font-size: 16px;
    line-height: 21px;
  }
  .s7-timing-indent {
    width: 83px;
  }
  .s7-timing-text,
  .s7-limit-row,
  .s7-bullet p,
  .s7-tip,
  .s7-delay p,
  .s8-note,
  .s7-notes,
  .s8-game-label {
    font-size: 16px;
    line-height: 21px;
  }
  z .s7-card-header img {
    width: 40px;
    height: 40px;
  }
  .s8-what-play h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .s8-what-play body {
    font-size: 16px;
    line-height: 24px;
  }
  .s8-cat-content h3 {
    font-size: 21px;
  }
  .s8.disclaimer {
    font-size: 16px;
    line-height: 150%;
  }
  .s10-card-list {
    padding-left: 50px;
  }
  .s10-card-body-text,
  .s10-kyc-body p {
    padding-left: 50px;
    font-size: 16px;
  }
  .s12-disclaimer {
    font-size: 16px;
    line-height: normal;
  }
  .s10-bullet p {
    padding-left: 0;
  }
  .s11 {
    padding-top: 25px;
  }
}

/* ══════════════════════════════════════════════════════
   DEPOSIT FLOAT + SCROLL TO TOP BUTTON
══════════════════════════════════════════════════════ */
.btc-deposit-float {
  position: fixed;
  bottom: 79px;
  right: 2px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  width: 97px;
}
.btc-deposit-coin-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.btc-deposit-badge {
  display: block;
  width: 97px;
  background: #fff;
  color: #28b4cd;
  font-size: 14px;
  font-weight: 900;
  line-height: 22px;
  border-radius: var(--radius-card);
  text-align: center;
  letter-spacing: 0.5px;
  border: 1px solid #28b4cd;
}

.btc-deposit-float:hover .btc-deposit-badge {
  background: var(--grad-cta);
  color: #fff;
  border: 1px solid transparent;
}

/* ══════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════════════════════ */
.btc-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-card);
  background: var(--bg-white);
  border: 1px solid #1b1b1b;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--text-black);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btc-scroll-top--visible {
  display: flex;
}
.btc-scroll-top--visible span {
  line-height: 20px;
}
.btc-scroll-top:hover {
  background: #ead8ee;
  border-color: #ead8ee;
}

@media (max-width: 767px) {
  .btc-deposit-coin-img {
    width: 55px;
    height: 55px;
  }
  .btc-deposit-badge {
    width: 75px;
    font-size: 12px;
    line-height: 18px;
  }
  .btc-scroll-top--visible span {
    display: none;
  }
  .btc-scroll-top--visible {
    border: none;
    padding: 10px 12px;
  }
  .btc-deposit-float {
    width: 75px;
    bottom: 79px;
    right: 5px;
  }
  .btc-scroll-top {
    bottom: 167px;
    right: 31px;
    border-radius: 50%;
  }
}
