@charset "UTF-8";

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #080403;
  --surface: #120806;
  --surface-soft: #1a0d09;
  --cream: #fff8eb;
  --muted: #bcaea4;
  --gold: #f6c26e;
  --gold-light: #ffedb5;
  --red: #b41f13;
  --line: rgba(255, 231, 186, 0.12);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 20%, rgba(132, 23, 12, 0.12), transparent 30%),
    var(--black);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(7, 3, 2, 0.88), rgba(7, 3, 2, 0));
}

.header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--gold-light);
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(255, 245, 214, 0.42);
  border-radius: 3px;
  color: #1b0a04;
  background: linear-gradient(135deg, #fff0bd 0%, #e5a848 48%, #ffd989 100%);
  box-shadow:
    0 14px 34px rgba(193, 87, 14, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow:
    0 18px 40px rgba(193, 87, 14, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.button--small {
  min-height: 40px;
  padding: 0 19px;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #100504;
}

.hero__background {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("../img/verification-bonus-hero.png");
  background-position: center;
  background-size: cover;
  animation: backgroundBreath 10s ease-in-out infinite alternate;
}

.hero__glow {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 3, 2, 0.98) 0%, rgba(8, 3, 2, 0.86) 37%, rgba(8, 3, 2, 0.12) 67%, rgba(8, 3, 2, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 3, 2, 0.18) 50%, #080403 100%);
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 82px;
}

.hero__content {
  width: min(640px, 58%);
}

.hero__badges {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
}

.hero__title {
  max-width: 680px;
  margin: 0;
  color: #fffaf0;
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero__title span {
  display: block;
  color: transparent;
  background: linear-gradient(120deg, #fff1bf 15%, #d99a3f 65%, #ffe4a0);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 850;
}

.hero__lead {
  max-width: 555px;
  margin: 24px 0 0;
  color: #d9c9b9;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
}

.hero__lead strong {
  color: #fff6dd;
  font-weight: 650;
}

.hero__cta {
  margin-top: 38px;
}

.hero__cta p {
  margin: 15px 0 0;
  color: #7f7169;
  font-size: 11px;
}

.hero__cta p span {
  margin-right: 7px;
  color: var(--cream);
  font-weight: 800;
}

.hero__game-note {
  position: absolute;
  right: 0;
  bottom: 78px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(20, 7, 3, 0.48);
  backdrop-filter: blur(12px);
}

.hero__game-note img {
  width: 58px;
  max-height: 25px;
}

.hero__game-note span {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay);
}

.hero__particles i {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffc465;
  box-shadow: 0 0 10px #e65d20;
  opacity: 0;
  animation: ember 7s linear infinite;
}

.hero__particles i:nth-child(1) { left: 54%; bottom: 10%; animation-delay: 0s; }
.hero__particles i:nth-child(2) { left: 67%; bottom: 4%; animation-delay: 1.4s; }
.hero__particles i:nth-child(3) { left: 83%; bottom: 16%; animation-delay: 2.8s; }
.hero__particles i:nth-child(4) { left: 91%; bottom: 8%; animation-delay: 4.2s; }
.hero__particles i:nth-child(5) { left: 74%; bottom: 23%; animation-delay: 5.2s; }
.hero__particles i:nth-child(6) { left: 60%; bottom: 20%; animation-delay: 6.2s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bonus-info {
  position: relative;
  overflow: hidden;
  padding: 118px 0 124px;
  background:
    radial-gradient(circle at 82% 38%, rgba(139, 32, 13, 0.16), transparent 30%),
    #080403;
}

.bonus-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 132, 0.3), transparent);
}

.bonus-info__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.section-label {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bonus-info__heading h2 {
  margin: 0;
  color: #fff9ee;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.bonus-info__heading h2 span {
  color: #ad9b8f;
}

.bonus-info__intro {
  margin: 0 0 7px;
  color: #97877d;
  font-size: 15px;
  line-height: 1.7;
}

.bonus-info__content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  gap: 70px;
}

.bonus-steps {
  border-top: 1px solid var(--line);
}

.bonus-step {
  min-height: 142px;
  padding: 31px 4px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.bonus-step > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.bonus-step h3 {
  margin: 0 0 8px;
  color: #fff6e4;
  font-size: 19px;
  font-weight: 700;
}

.bonus-step p {
  max-width: 500px;
  margin: 0;
  color: #87786f;
  font-size: 14px;
  line-height: 1.65;
}

.bonus-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 222, 160, 0.19);
  background:
    linear-gradient(145deg, rgba(98, 23, 10, 0.42), rgba(20, 8, 5, 0.7)),
    #120806;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.bonus-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 185, 76, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(255, 185, 76, 0.025),
    0 0 0 58px rgba(255, 185, 76, 0.018);
}

.bonus-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bonus-card__top span {
  color: #d1b992;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bonus-card__top img {
  width: 62px;
  max-height: 25px;
}

.bonus-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 38px;
  color: transparent;
  background: linear-gradient(135deg, #fff1bd, #d99439 70%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(80px, 9vw, 124px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.bonus-card h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 4px;
  color: #fff7e6;
  font-size: 25px;
  font-weight: 700;
}

.bonus-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #aa9688;
  font-size: 14px;
}

.bonus-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 34px;
}

.bonus-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 17px;
  color: #6f625b;
  font-size: 9px;
  line-height: 1.5;
}

.footer {
  padding: 64px 0 46px;
  border-top: 1px solid var(--line);
  background: #0c0c0e;
}

.footer__providers {
  padding: 0 0 54px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 28px;
}

.footer__providers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}

.footer__providers img {
  width: auto;
  max-width: 120px;
  max-height: 32px;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.footer__providers img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer__payments {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__payments img {
  width: auto;
  height: 28px;
}

.footer__links {
  padding: 29px 0;
  display: grid;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.footer__links div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.footer__links a {
  color: var(--gold);;
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__links a:hover {
  color: #b9edfa;
  text-decoration: underline;
}

.footer__bottom {
  padding-top: 30px;
  text-align: center;
}

.footer__copyright {
  margin: 0 0 20px;
  color: #b8b8bb;
  font-size: 13px;
}

.footer__legal {
  max-width: 900px;
  margin: 24px auto 0;
  color: #a4a4a8;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.footer__legal a {
  color: var(--gold);
  text-decoration: none;
}

.footer__marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.footer__marks img {
  width: auto;
  height: 30px;
  object-fit: contain;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundBreath {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@keyframes ember {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.5); }
  15% { opacity: 0.85; }
  80% { opacity: 0.45; }
  100% { opacity: 0; transform: translate3d(35px, -260px, 0) scale(1.7); }
}

@media (max-width: 960px) {
  .hero {
    min-height: 720px;
  }

  .hero__content {
    width: 64%;
  }

  .hero__background {
    background-position: 56% center;
  }

  .hero__glow {
    background:
      linear-gradient(90deg, rgba(8, 3, 2, 0.98) 0%, rgba(8, 3, 2, 0.78) 48%, rgba(8, 3, 2, 0.08) 80%),
      linear-gradient(180deg, transparent 55%, #080403 100%);
  }

  .footer__providers {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__links div {
    gap: 18px;
  }

  .bonus-info__heading,
  .bonus-info__content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bonus-info__intro {
    max-width: 520px;
  }

  .bonus-card {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 90px;
  }

  .text-link {
    display: none;
  }

  .button--small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 10px;
  }

  .hero {
    min-height: 620px;
    height: 100svh;
    max-height: none;
  }

  .hero__background {
    background-position: 68% center;
  }

  .hero__glow {
    background:
      linear-gradient(180deg, rgba(6, 2, 2, 0.12) 20%, rgba(7, 3, 2, 0.7) 53%, rgba(7, 3, 2, 0.98) 82%, #080403 100%),
      linear-gradient(90deg, rgba(8, 3, 2, 0.46), rgba(8, 3, 2, 0.06));
  }

  .hero__inner {
    align-items: center;
    padding-top: 76px;
    padding-bottom: 0;
  }

  .hero__content {
    width: 100%;
    text-align: center;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.11em;
  }

  .hero__badges {
    margin-bottom: 22px;
    justify-content: center;
    gap: 11px 22px;
  }

  .hero__title {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero__lead {
    max-width: 520px;
    margin: 22px auto 0;
    font-size: 22px;
    line-height: 1.55;
  }

  .hero__cta {
    margin-top: 34px;
  }

  .hero__cta .button {
    width: min(100%, 360px);
    min-height: 60px;
    font-size: 15px;
  }

  .hero__game-note {
    display: none;
  }

  .bonus-info {
    padding: 78px 0 82px;
  }

  .bonus-info__heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .bonus-info__content {
    margin-top: 44px;
  }

  .bonus-step {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .bonus-card {
    max-width: none;
    padding: 28px 24px;
  }

  .footer__providers {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__providers img {
    max-width: 105px;
  }

  .footer__links div {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

@media (max-width: 390px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero__inner {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .hero__badges {
    margin-bottom: 18px;
    display: grid;
    justify-content: center;
    gap: 7px;
  }

  .eyebrow {
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .eyebrow__dot {
    width: 7px;
    height: 7px;
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__lead {
    margin-top: 17px;
    font-size: 21px;
  }

  .hero__cta {
    margin-top: 28px;
  }

  .hero__cta p {
    margin-top: 12px;
    font-size: 12px;
  }
}

@media (max-width: 390px) and (max-height: 700px) {
  .header__inner {
    min-height: 64px;
  }

  .brand img {
    width: 84px;
  }

  .button--small {
    min-height: 36px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__background {
    background-position: 69% center;
  }

  .hero__inner {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .hero__title {
    font-size: 54px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__cta .button {
    min-height: 56px;
    font-size: 15px;
  }

  .hero__cta p {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-enter,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
