@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;
  text-decoration: 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;
}
.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  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;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
}
.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));
}
.hero-copy {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 540px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fff;
  opacity: 0.96;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-h2 {
  letter-spacing: 0.02em;
  margin: 10px;
  font-weight: 800;
  line-height: 1;
  font-size: 64px;
  background: linear-gradient(354deg, #ecae74 0%, #ffd7a3 49.12%, #fff2cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-num {
  font-size: 64px;
}
.hero-sub {
  line-height: 1.3em;
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 1em;
  color: #ffe7b6;
  background: linear-gradient(354deg, #ecae74 0%, #ffd7a3 49.12%, #fff2cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.hero-cta {
  padding: 18px 18px;
  font-weight: 700;
  font-size: 29px;
  text-transform: uppercase;
}

/* ===== Welcome Bonus Section ===== */

.welcome-bonus {
  padding: 5px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.wb-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */

.wb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.wb-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 215, 128, 0.9)
  );
}

.wb-line:last-child {
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgba(255, 215, 128, 0.9)
  );
}

.wb-diamond {
  width: 32px;
  height: 27px;
}

.wb-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  background: linear-gradient(354deg, #ecae74 0%, #ffd7a3 49.12%, #fff2cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wb-subtitle {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 13px;
  line-height: 1.7;
  color: #a7abb8;
}

/* Labels & main text */

.wb-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b6bac8;
  margin-bottom: 4px;
}

.wb-main-text {
  font-size: 14px;
  color: #f1f1f5;
  margin: 0 0 26px;
}

/* Cards */

.wb-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.wb-card {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.96)
  );
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.wb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 215, 128, 0.4);
}

.wb-card-img-wrap {
  background: #111217;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wb-card-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wb-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 4px;
}

.wb-card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #c5c8d5;
  margin: 0;
}

/* CTA */

.wb-cta-wrap {
  display: flex;
  justify-content: center;
}

.wb-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.wb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 1);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
}

/* Responsive */

@media (max-width: 992px) {
  .wb-cards {
    grid-template-columns: repeat(3, 60vw);
    overflow: scroll;
    margin: 0 auto 30px;
  }

  .welcome-bonus {
    padding: 60px 16px 50px;
  }

  .wb-title {
    font-size: 24px;
  }

  .wb-main-text {
    font-size: 13px;
  }
}

/* ===== Verification Bonus Section (with 2 diamonds) ===== */

.verify-bonus {
  padding: 16px 16px 100px;
  position: relative;
  overflow: hidden;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.verify-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */

.verify-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  background: linear-gradient(354deg, #ecae74 0%, #ffd7a3 49.12%, #fff2cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 6px;
}

.verify-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 13px;
  line-height: 1.7;
  color: #a7abb8;
}

/* Card */

.verify-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
  position: relative;
  z-index: 3;
}

.verify-img-wrap {
  background: #14151a;
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.verify-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

.verify-content {
  text-align: left;
}

.verify-heading {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #ffe0a3;
}

.verify-heading span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #f5f5f7;
}

.verify-text {
  font-size: 12px;
  color: #c5c8d5;
  margin: 0 0 10px;
}

.verify-req-title {
  font-size: 12px;
  font-weight: 600;
  color: #f5f5f7;
  margin: 4px 0 4px;
}

.verify-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: #c5c8d5;
}

.verify-list li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}

.verify-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 14px;
  color: #ffd27a;
}

/* Diamonds */

.verify-diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.diamond {
  position: absolute;
  opacity: 0.9;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.3s ease;
}

.diamond-left {
  bottom: -60px;
  left: 240px;
  width: 120px;
  transform: rotate(-15deg);
}

.diamond-right {
  top: 60px;
  right: 80px;
  width: 120px;
  transform: rotate(25deg);
}

/* Responsive */

@media (max-width: 900px) {
  .verify-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .verify-content {
    text-align: left;
  }

  .verify-img-wrap {
    margin: 0 auto;
  }

  .diamond-left {
    width: 120px;
    bottom: -30px;
    left: 16px;
  }

  .diamond-right {
    width: 90px;
    top: 90px;
    right: 30px;
  }
}

/* ===== Second Deposit Section ===== */

.second-deposit {
  padding: 16px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  position: relative;
}

.sd-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

/* Label & main line */

.sd-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b6bac8;
  margin-bottom: 4px;
}

.sd-main-text {
  font-size: 14px;
  color: #f1f1f5;
  margin: 0 0 26px;
}

/* Cards */

.sd-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.sd-card {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.96)
  );
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.sd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 215, 128, 0.4);
}

.sd-card-img-wrap {
  background: #14151a;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sd-card-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sd-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 4px;
}

.sd-card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #c5c8d5;
  margin: 0;
}

/* CTA */

.sd-cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.sd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.sd-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 1);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
}

/* Diamond */

/* ===== Diamond (glow + animation) ===== */

.sd-diamond-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.sd-diamond-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 215, 128, 0.3),
    rgba(255, 215, 128, 0)
  );
}

/* Бриллиант с ореолом и анимацией */
.sd-diamond {
  width: 65px;
  margin-top: -6px;
  filter: drop-shadow(0 0 14px rgba(255, 215, 128, 0.4))
    drop-shadow(0 0 40px rgba(255, 215, 128, 0.25))
    drop-shadow(0 0 80px rgba(255, 215, 128, 0.1));
  animation: diamondGlow 3.5s ease-in-out infinite;
  transform-origin: center;
  opacity: 0.95;
}

/* Плавное "дыхание" свечения */
@keyframes diamondGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 128, 0.4))
      drop-shadow(0 0 35px rgba(255, 215, 128, 0.25))
      drop-shadow(0 0 70px rgba(255, 215, 128, 0.1));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 215, 128, 0.5))
      drop-shadow(0 0 50px rgba(255, 215, 128, 0.35))
      drop-shadow(0 0 100px rgba(255, 215, 128, 0.15));
    transform: scale(1.02);
  }
}

/* Responsive */

@media (max-width: 992px) {
  .sd-diamond {
    width: 70px;
  }
  .sd-cards {
    grid-template-columns: repeat(3, 60vw);
    overflow: scroll;
  }
}

/* ===== VIP Section ===== */

.vip-section {
  padding: 0 16px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-inner {
  margin: 10px auto;
}

.vip-title {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  background: linear-gradient(354deg, #ecae74 0%, #ffd7a3 49.12%, #fff2cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.vip-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 215, 128, 0.12) 0%,
    transparent 70%
  );
  z-index: -1;
}

.vip-text {
  color: #b6bac8;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 700px;
}

/* VIP Card */

.vip-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 4px 30px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.vip-card-text {
  flex: 1;
  font-size: 14px;
  color: #d3d6e0;
  line-height: 1.6;
  margin: 0;
}

/* Button */

.vip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vip-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 1);
}

.vip-btn-icon {
  font-size: 15px;
}

/* Glow under the card */



/* Responsive */

@media (max-width: 700px) {
  .vip-card {
    flex-direction: column;
    text-align: center;
  }

  .vip-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Third Deposit Section ===== */

.third-deposit {
  padding: 16px;
  color: #f5f5f7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  position: relative;
}

.td-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

/* Label & main text */

.td-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b6bac8;
  margin-bottom: 4px;
}

.td-main-text {
  font-size: 14px;
  color: #f1f1f5;
  margin: 0 0 26px;
}

/* Cards */

.td-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.td-card {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.96)
  );
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.td-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 215, 128, 0.4);
}

.td-card-img-wrap {
  background: #14151a;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.td-card-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.td-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 4px;
}

.td-card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #c5c8d5;
  margin: 0;
}

/* CTA */

.td-cta-wrap {
  display: flex;
  justify-content: center;
}

.td-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffd27a, #ffb347);
  color: #171717;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.td-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 1);
  background: linear-gradient(90deg, #ffe29f, #ffb347);
}

/* Responsive */

@media (max-width: 992px) {
  .third-deposit {
    padding: 60px 16px 70px;
  }

  .td-cards {
    grid-template-columns: repeat(3, 60vw);
    overflow: scroll;
    margin: 0 auto 34px;
  }

  .td-main-text {
    font-size: 13px;
  }
}

/* =========================
   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: #7cc0ff;
  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 {
    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: 100vh;
    border-radius: 18px;
  }
  .hero-copy {
    top: 50%;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 14px;
    transform: translateY(-50%);
  }

  /* надпись «BONUS DE BUN VENIT» */
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    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: 20px;
    border-radius: 10px;
  }
}

/* Общий фон с фото для мобилки */
@media (max-width: 576px) {
  .main-bg {
    position: fixed;
    inset: 0;
    background: url("./img/hero.png") 35% top / cover no-repeat #050607;
    z-index: -1;
  }
  .main-bg::before {
    filter: none;
    background-position: 35% top;
  }
}
/* ===== HERO MOBILE: фон из main-bg, текст снизу ===== */
@media (max-width: 576px) {
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-end;
  }

  .hero-frame {
    width: 100%;
    padding: 0 16px 32px;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .hero-frame::before {
    box-shadow: none;
  }

  /* Картинка в hero не нужна — фон уже в main-bg */
  .hero-img {
    display: none;
  }

  /* Оверлей с оффером снизу поверх фото */
  .hero-copy {
    padding: 24px 18px 18px;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
  }

  .hero-eyebrow {
    font-size: 12px;
    margin: 0 0 6px;
    opacity: 0.95;
  }

  .hero-h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffd9a0;
  }

  .hero-h2 .hero-num {
    color: #ffd9a0;
  }

  .hero-sub {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    color: #ffd9a0;
  }

  .hero-sub .hero-num {
    color: #ffd9a0;
  }
}
.welcome-bonus,
.second-deposit,
.third-deposit,
.verify-bonus,
.vip-section,
.footer {
  background: #161517;
}

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

.seo-section h1,
.seo-section h2 {
  color: #f7d791; /* золото под стиль Bilion */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.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;
}

.seo-section ul li {
  font-size: 16px;
}

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

/* ===== Cashback Section ===== */
.cashback-section {
  padding: 40px 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;
  align-items: self-start;
  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);
}