@charset "UTF-8";

/* =========================
   1) FONTS & BASE
   ========================= */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.woff2") format("woff2"),
    url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: #0b0c10;
  color: #f2f3f5;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   2) HEADER
   ========================= */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 160px;
  background: #121215;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f2f3f5;
}
.brand-logo {
  width: 106px;
  height: 34px;
  display: block;
}
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 4px;
  line-height: 1;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}
.btn-ghost {
  background: #1c1d20;
  color: #e8eaed;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-gold {
  color: #141414;
  background: linear-gradient(356deg, #ecae74 0%, #ffe0a3 49.12%, #fff2cc 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 10px rgba(245, 210, 131, 0.35);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-gold:hover {
  box-shadow: 0 6px 14px rgba(245, 210, 131, 0.42);
}
.btn:focus {
  outline: 2px solid rgba(245, 210, 131, 0.55);
  outline-offset: 2px;
}

/* =========================
   3) PAGE BACKGROUND (BLUR)
   ========================= */
.main {
  position: relative;
  z-index: 1;
}
.main-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0b0c10;
}
.main-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.png");
  background-size: cover;
  background-position: center top;
  filter: blur(22px) brightness(0.45) saturate(0.9);
  transform: scale(1.05);
}
.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(11, 12, 16, 0.95) 90%
  );
  pointer-events: none;
}

/* =========================
   4) HERO
   ========================= */
.hero {
  max-width: 1180px;
  margin: 70px auto 48px;
  padding: 0 20px;
}
.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(0, 0, 0, 0.35);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      70% 120% at 26% 50%,
      rgba(0, 0, 0, 0.65),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
  display: none;
}
.hero-copy {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 540px;
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  font-weight: 700;
  letter-spacing: 1.6px;
  font-size: 20px;
  padding-bottom: 20px;
  color: #fff;
  opacity: 0.96;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1;
  font-size: 48px;
  background: linear-gradient(355deg, #ecae74 0%, #ffe3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-num {
  font-size: 50px;
  line-height: 1em;
}
.hero-sub {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 1em;
  color: #ffe7b6;
  background: linear-gradient(355deg, #ecae74 0%, #ffe3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta {
  padding: 12px 18px;
  font-weight: 700;
  font-size: 25px;
}

/* =========================
   5) LEAD + STEPS
   ========================= */
.bl-lead {
  max-width: 1180px;
  margin: 54px auto 10px;
  padding: 0 20px;
  text-align: center;
}
.bl-lead-title {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(355deg, #ecae74 0%, #ffe3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bl-lead-sub {
  margin: 8px 0 24px;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.bl-steps-wrap {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 0 20px;
}
.bl-steps-heading {
  margin: 0 0 14px;
  text-align: center;
  color: #e9e9ea;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.bl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bl-step {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.35);
}
.bl-step::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  opacity: 0.45;
}
.step-badge {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(356deg, #ecae74 0%, #ffe0a3 49.12%, #fff2cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.step-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(180deg, #ffe7a8 0%, #d9b769 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@supports not (-webkit-mask-composite: xor) {
  .step-badge {
    border: 2px solid #e9ca88;
  }
}
.bl-step h5 {
  margin: 16px 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.bl-step p {
  margin: 0;
  font-size: 14px;
  color: #9aa0a6;
}

/* =========================
   6) BONUS TABLE
   ========================= */
.bonus {
  max-width: 1180px;
  margin: 56px auto;
  padding: 0 20px;
  text-align: center;
}
.bonus-title {
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
}

.bonus-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bonus-table {
  width: 70%;
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 16px;
}
.bonus-table .col-left {
  width: 33%;
}
.bonus-table .col-mid {
  width: 33%;
}
.bonus-table .col-right {
  width: 33%;
}

.bonus-table thead th {
  padding: 0 24px 8px;
  text-align: center;
  font: 700 14px/1 "DM Sans", sans-serif;
  color: #cfd2d6;
}
.bonus-table thead .th-right {
  text-align: right;
  padding-right: 28px;
}

.bonus-table tbody tr {
  background: #252525;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.bonus-table tbody td {
  border: 0;
  padding: 20px 24px;
  font-size: 18px;
  color: #e9e9ea;
}
.bonus-table tbody td:first-child {
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}
.bonus-table tbody td:last-child {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.cell-title {
  font-weight: 700;
  color: #fff;
}
.cell-right {
  text-align: right;
  padding-right: 28px;
  font-weight: 800;
  color: #f5f6f7;
}

.bonus-total-row {
  width: 70%;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 45% 35% 20%;
  align-items: center;
  padding-right: 28px;
}
.bt-label {
  grid-column: 2/3;
  justify-self: end;
  color: #cfd2d6;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.bt-value {
  grid-column: 3/3;
  justify-self: end;
  color: #f5f6f7;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.bonus-tc {
  margin: 16px 0 0;
  font-size: 13px;
  color: #9aa0a6;
}
.bonus-tc a {
  color: #ffe7a8;
  text-decoration: none;
}

/* =========================
   7) FOOTER
   ========================= */
/* ---------- Карточки оплаты ---------- */
.footer-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 24px 0;
}
.footer-cards img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-cards img:hover {
  opacity: 1;
}

/* ---------- Ссылки-политики ---------- */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 16px 0;
  text-align: center;
}
.footer-links a {
  color: rgb(115, 207, 230);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ---------- Нижний блок ---------- */
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  color: #bdbdbd;
}
.footer-copy {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---------- Иконки 18+, Joc, ONJN ---------- */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-icons img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-icons img[alt="18+"] {
  max-height: 36px;
}

/* ---------- Лицензионный текст ---------- */
.footer-license {
  font-size: 12px;
  color: #bdbdbd;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.footer-license a {
  color: #7cc0ff;
  text-decoration: none;
}
.footer-license a:hover {
  text-decoration: underline;
}
/* опционально — общий предел по ширине */
/* ===== PROVIDERS SECTION (логотипы казино) ===== */
.footer-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ссылки-логотипы */
.footer-providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  max-width: 160px;
  flex: 0 0 auto;
}
.footer-providers img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}
.footer-providers img:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.footer-providers img[alt="Million"] {
  height: 28px;
  margin-top: -4px;
}

.footer-providers img[alt="Bgaming"],
.footer-providers img[alt="Amusnet"] {
  height: 30px;
}
/* адаптив */
@media (max-width: 768px) {
  .footer-providers {
    gap: 24px;
    padding: 24px 0 12px;
  }
  .footer-providers a {
    height: 28px;
  }
}

/* Ряд логотипов */
.footer-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 0 56px;
}

.footer-providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(26px, 3.6vw, 36px);
  width: clamp(100px, 12vw, 160px);
  flex: 0 0 auto;
}

.footer-providers img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-providers img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .footer-providers {
    gap: 22px;
    padding: 20px 0 40px;
  }
  .footer-providers a {
    height: 28px;
    width: clamp(90px, 22vw, 140px);
  }
}

/* ---------- Разделительная линия ---------- */
.footer-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 28px 0;
}

/* =========================
   8) MEDIA QUERIES
   ========================= */
@media (max-width: 1024px) {
  .header {
    padding: 10px 24px;
  }
  .hero {
    margin: 24px auto 36px;
  }
  .hero-frame {
    min-height: 460px;
  }
  .hero-copy {
    left: 24px;
    padding: 20px;
    max-width: 520px;
  }
  .hero-h2 {
    font-size: 52px;
  }
  .hero-sub {
    font-size: 34px;
  }
  .bl-lead-sub {
    font-size: 44px;
  }
  .bl-steps {
    grid-template-columns: 1fr;
  }
  .bonus-table,
  .bonus-total-row {
    width: 90%;
  }
}
@media (max-width: 720px) {
  .hero-frame {
    min-height: 420px;
  }
  .hero-copy {
    left: 18px;
    right: 18px;
    padding: 18px;
    max-width: none;
  }
  .hero-h2 {
    font-size: 44px;
  }
  .hero-sub {
    font-size: 28px;
  }
  .btn {
    padding: 10px 14px;
  }

  .bonus-table thead {
    display: none;
  }
  .bonus-table {
    width: 100%;
    border-spacing: 0 12px;
  }
  .bonus-table tbody td {
    display: block;
    padding: 14px 16px;
    text-align: left;
  }
  .cell-right {
    text-align: left;
    padding-right: 16px;
  }
  .bonus-total-row {
    width: 100%;
    grid-template-columns: 1fr;
    padding-right: 0;
    row-gap: 6px;
    justify-items: end;
    margin-top: 10px;
  }
  .bt-label {
    grid-column: auto;
    justify-self: start;
  }
}

/* ===== MOBILE CARDS FOR BONUS TABLE ===== */
@media (max-width: 720px) {
  .bonus-table thead {
    display: none;
  }

  .bonus-table {
    width: 100%;
    border-spacing: 0 12px;
    table-layout: fixed;
  }

  .bonus-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "mid"
      "right";
    row-gap: 8px;

    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    padding: 16px;
  }

  .bonus-table tbody td {
    background: transparent !important;
    border: none !important;
    padding: 0;
    color: #e9e9ea;
  }

  .bonus-table .cell-title {
    grid-area: title;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 2px;
  }

  .bonus-table .cell-mid {
    grid-area: mid;
    font-size: 16px;
    color: #d6d6d6;
  }

  .bonus-table .cell-right {
    grid-area: right;
    justify-self: end;
    text-align: right;
    font-weight: 800;
    font-size: 18px;
    margin-top: 6px;
    color: #f5f6f7;
  }

  .bonus-table tbody tr td:first-child,
  .bonus-table tbody tr td:last-child {
    border-radius: 0 !important;
  }

  .bonus-total-row {
    width: 100%;
    margin: 10px 0 0;
    padding: 0 4px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 8px;
  }
  .bt-label {
    grid-column: 1/2;
    justify-self: start;
    font-weight: 800;
    color: #cfd2d6;
  }
  .bt-value {
    grid-column: 2/3;
    justify-self: end;
    font-weight: 800;
    color: #f5f6f7;
  }
}
/* ===== MOBILE FIX ===== */
@media (max-width: 720px) {
  .bonus-table-wrap {
    width: 100% !important;
    padding: 0 14px;
  }
  .bonus-table {
    width: 100% !important;
    margin: 0 !important;
    border-spacing: 0;
    table-layout: auto !important;
  }

  .bonus-table thead {
    display: none !important;
  }
  .bonus-table .col-left,
  .bonus-table .col-mid,
  .bonus-table .col-right,
  .bonus-table th,
  .bonus-table td {
    width: auto !important;
  }

  .bonus-table tbody {
    display: block;
  }
  .bonus-table tbody tr {
    display: block;
    width: 100%;
    margin: 12px 0;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  }
  .bonus-table tbody td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .bonus-table .cell-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 6px;
  }
  .bonus-table .cell-mid {
    font-size: 16px;
    color: #d6d6d6;
  }
  .bonus-table .cell-right {
    font-size: 18px;
    font-weight: 800;
    color: #f5f6f7;
    text-align: right;
    margin-top: 8px;
  }

  .bonus-table tbody tr td:first-child,
  .bonus-table tbody tr td:last-child {
    border-radius: 0 !important;
  }

  .bonus-total-row {
    width: 100% !important;
    margin: 10px 0 0;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 8px;
  }
  .bt-label {
    justify-self: start;
    font-weight: 800;
    color: #cfd2d6;
  }
  .bt-value {
    justify-self: end;
    font-weight: 800;
    color: #f5f6f7;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== MOBILE LAYOUT FOR BONUS TABLE ===== */
@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .bonus-table-wrap {
    width: 100% !important;
    padding: 0 14px;
  }

  .bonus-table {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    table-layout: auto !important;
  }

  .bonus-table thead {
    display: none !important;
  }

  .bonus-table tbody {
    display: block;
  }
  .bonus-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title right"
      "mid   right";
    align-items: center;
    column-gap: 14px;
    row-gap: 8px;

    padding: 16px;
    margin: 12px 0;
    border: 0 !important;
    border-radius: 16px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }

  .bonus-table tbody td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .bonus-table .cell-title {
    margin: 0;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
  }
  .bonus-table .cell-mid {
    font-size: 16px;
    color: #d6d6d6;
  }
  .bonus-table .cell-right {
    justify-self: end;
    text-align: right;
    font-size: 18px;
    font-weight: 800;
    color: #f5f6f7;
    padding-left: 12px;
  }

  .bonus-total-row {
    width: 100% !important;
    margin: 10px 0 0;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 8px;
  }
  .bt-label {
    justify-self: start;
    font-weight: 800;
    color: #cfd2d6;
  }
  .bt-value {
    justify-self: end;
    font-weight: 800;
    color: #f5f6f7;
  }
}
@media (max-width: 720px) {
  .bonus-table .col-left,
  .bonus-table .col-mid,
  .bonus-table .col-right {
    width: auto !important;
  }
}
/* ============ MOBILE HEADER + HERO TUNING ============ */
@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
    gap: 10px;
  }
  .brand-logo {
    width: 86px;
    height: 28px;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .actions .btn {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    line-height: 1;
  }
  .actions .btn-gold {
    box-shadow: 0 3px 10px rgba(245, 210, 131, 0.32);
  }
  .actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.12);
  }

  .hero {
    margin: 14px auto 24px;
    padding: 0 12px;
  }
  .hero-frame {
    min-height: 440px;
    border-radius: 18px;
  }
  .hero-copy {
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 14px;
    transform: translateY(-50%);
  }

  /* надпись «BONUS DE BUN VENIT» */
  .hero-eyebrow {
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.95;
  }

  /* главное число и «RON» — адаптивно и без переполнения */
  .hero-h2 {
    margin: 4px 0 2px;
    line-height: 1;
    font-weight: 800;
    font-size: clamp(28px, 8vw, 44px);
  }
  .hero-h2 .hero-num {
    font-size: clamp(44px, 15vw, 72px);
    letter-spacing: 0.5px;
  }

  /* +800 RG */
  .hero-sub {
    margin-top: 6px;
    font-size: clamp(22px, 7.5vw, 36px);
    line-height: 1;
  }
  .hero-sub .hero-num {
    font-size: clamp(32px, 12vw, 56px);
  }

  .hero-cta {
    margin-top: 12px;
    width: max-content;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* ===== Cashback Section ===== */
.cashback-section {
  padding: 0 0 20px;
  color: #f5f5f7;
  font-family: "DM Sans", sans-serif;
}

/* — Hero block — */
.cashback-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.cashback-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cashback-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}

.cashback-eyebrow {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #f3d68b;
  margin: 0 0 12px;
}

.cashback-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}

.cashback-title span {
  color: #ffcb70;
}

.cashback-btn {
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.cashback-btn:hover {
  background: linear-gradient(90deg, #ffe29f, #ffb347);
  transform: translateY(-2px);
}

/* — Article text — */
.cashback-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  color: #e6e6ea;
  font-size: 16px;
  line-height: 1.6;
}

.cashback-article p {
  margin-bottom: 18px;
}

.cashback-subtitle {
  color: #f7d08a;
  font-weight: 700;
  margin-bottom: 12px;
}

.cashback-formula {
  color: #ffcb70;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.cashback-link {
  color: #ffb347;
  text-decoration: none;
  transition: 0.2s;
}

.cashback-link:hover {
  text-decoration: underline;
}

/* — Divider — */
.cashback-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 28px 0;
}

/* — Mobile — */
@media (max-width: 768px) {
  .cashback-img {
    height: 240px;
  }
  .cashback-hero-content {
    padding: 30px 20px;
    align-items: flex-start;
  }
  .cashback-title {
    font-size: 32px;
  }
}

/* ===== Cashback extra info ===== */

.cashback-list {
  list-style: disc;
  margin: 12px 0 28px 20px;
  color: #e6e6ea;
  line-height: 1.6;
}

.cashback-sublist {
  list-style: circle;
  margin: 8px 0 8px 24px;
  color: #b9b9c3;
}

.cashback-subtitle {
  font-weight: 700;
  color: #f7d08a;
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 17px;
}

.cashback-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 28px 0;
}

/* Начальное состояние */
.cb-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Когда элемент в зоне видимости */
.cb-anim.cb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Verify Bonus Section (hero + article) ===== */
.verify-hero-section {
  background: transparent;
  padding: 60px 0 10px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Hero */
.verify-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 50px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.verify-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.verify-hero-content {
  position: absolute;
  inset: 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}
.verify-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: #f3d68b;
  margin: 0 0 10px;
}
.verify-title {
  margin: 0 0 20px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
.verify-title span {
  color: #ffcb70;
}
.verify-btn {
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9);
  transition: 0.25s;
}
.verify-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
}

/* Article */
.verify-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.verify-subtitle {
  color: #f7d08a;
  font-weight: 700;
  margin: 24px 0 10px;
  font-size: 17px;
}
.verify-article p {
  color: #e6e6ea;
  line-height: 1.6;
  margin: 0 0 16px;
}
.verify-list {
  list-style: disc;
  margin: 8px 0 18px 20px;
  color: #e6e6ea;
  line-height: 1.6;
}
.verify-article hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 22px 0;
}

/* Fade-up animation (reuses cashback anim style) */
.cb-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.cb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .verify-hero-img {
    height: 240px;
  }
  .verify-hero-content {
    padding: 30px 20px;
    align-items: flex-start;
  }
  .verify-title {
    font-size: 28px;
  }
}

.seo-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
  color: #ddd;
  font-family: "Rubik", Arial, sans-serif;
  line-height: 1.6;
}

.seo-section h1,
.seo-section h2 {
  color: #f7d791; /* soft gold */
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.seo-section h1 {
  font-size: 32px;
  margin-top: 0;
}

.seo-section h2 {
  font-size: 24px;
  margin-top: 40px;
}

.seo-section p {
  margin-bottom: 16px;
  font-size: 16px;
}

.seo-section ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .seo-section h1 {
    font-size: 26px;
  }
  .seo-section h2 {
    font-size: 20px;
  }
  .seo-section p,
  .seo-section li {
    font-size: 15px;
  }
}
