@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #251315;
  --cream: #fff8ed;
  --wine-dark: #210912;
  --gold: #f6cf73;
  --line: rgba(63, 25, 27, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Rubik", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #17080f;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 132px;
  height: 44px;
  display: block;
  border: 0;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.footer-logo {
  display: block;
  filter: brightness(0) invert(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link,
.header-register {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.header-link:hover,
.header-register:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.header-link img {
  filter: brightness(0) invert(1);
}

.header-register {
  color: #32120f;
  background: linear-gradient(135deg, #f7d27e, #eb9e30);
  box-shadow: 0 8px 30px rgba(235, 158, 48, 0.18);
}

.hero {
  min-height: 700px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background-color: var(--wine-dark);
  background-image:
    linear-gradient(90deg, rgba(22, 5, 11, .97) 0%, rgba(31, 6, 14, .82) 36%, rgba(34, 8, 14, .2) 65%, rgba(22, 5, 10, .08) 100%),
    linear-gradient(0deg, rgba(19, 4, 10, .58) 0%, transparent 36%),
    url("../img/hero-autumn-casino.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(transparent, rgba(21, 5, 10, .68));
}

.hero-glow {
  width: 500px;
  height: 500px;
  position: absolute;
  left: -120px;
  top: 110px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(157, 32, 55, .2);
  filter: blur(100px);
}

.hero-inner {
  min-height: 700px;
  padding-block: 78px 92px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 54%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9c432e;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #fff1be 0%, #e9a538 58%, #fff0ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 565px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .81);
  font-size: 19px;
  line-height: 1.6;
}

.hero-lead strong {
  color: #fff;
}

.hero-highlights {
  margin: 30px 0 32px;
  display: flex;
  align-items: stretch;
}

.hero-highlights span {
  min-width: 120px;
  padding: 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, .55);
  border-left: 1px solid rgba(255, 255, 255, .2);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-highlights span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-highlights b {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.primary-cta {
  width: min(100%, 420px);
  min-height: 66px;
  padding: 14px 16px 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 238, 185, .7);
  border-radius: 14px;
  color: #2e110d;
  background: linear-gradient(135deg, #ffe295, #e99b28);
  box-shadow: 0 20px 60px rgba(224, 139, 31, .28), inset 0 1px rgba(255, 255, 255, .7);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-cta:hover {
  box-shadow: 0 24px 70px rgba(224, 139, 31, .38), inset 0 1px rgba(255, 255, 255, .7);
}

.cta-arrow {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #781a29;
  font-size: 22px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
}

.hero-note span {
  color: #efb54f;
}

.leaf {
  position: absolute;
  z-index: 1;
  color: rgba(225, 112, 44, .46);
  font-size: 32px;
  transform: rotate(28deg) skew(-10deg);
  filter: blur(.2px);
}

.leaf-one {
  left: 49%;
  top: 11%;
}

.leaf-two {
  left: 8%;
  bottom: 8%;
  font-size: 20px;
  transform: rotate(68deg) skew(-10deg);
}

.bonus-section {
  padding: 104px 0 110px;
  background:
    radial-gradient(circle at 10% 10%, rgba(233, 163, 55, .13), transparent 25%),
    linear-gradient(180deg, #fffaf2, #f8eddf);
}

.section-heading {
  max-width: 730px;
}

.section-heading h2,
.steps h2 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: #735e59;
  font-size: 17px;
  line-height: 1.65;
}

.bonus-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bonus-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 18px 50px rgba(79, 39, 25, .05);
  transition: transform .24s ease, box-shadow .24s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(79, 39, 25, .11);
}

.bonus-card.featured {
  color: #fff;
  border-color: #702039;
  background:
    radial-gradient(circle at 100% 0, rgba(239, 173, 62, .24), transparent 35%),
    linear-gradient(145deg, #65162f, #280b16);
}

.bonus-card.featured::after {
  content: "";
  width: 110px;
  height: 110px;
  position: absolute;
  right: -54px;
  bottom: -54px;
  border: 1px solid rgba(244, 197, 109, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(244, 197, 109, .05);
}

.card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #42120e;
  background: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.card-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #8c342b;
  border: 1px solid rgba(145, 67, 43, .18);
  border-radius: 50%;
  background: rgba(239, 173, 62, .12);
  font-size: 24px;
  line-height: 1;
}

.featured .card-symbol {
  color: var(--gold);
  border-color: rgba(246, 207, 115, .25);
  background: rgba(246, 207, 115, .08);
}

.card-symbol.fruit {
  transform: rotate(45deg);
}

.card-symbol.shine {
  color: #bd7e20;
}

.card-symbol.cherry {
  color: #b72639;
  font-size: 13px;
  letter-spacing: -2px;
}

.bonus-value {
  margin: 36px 0 0;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.bonus-value.text-value {
  font-size: 38px;
  line-height: 1.1;
}

.bonus-type {
  margin: 5px 0 24px;
  color: #9a4d35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured .bonus-type {
  color: #e8bc71;
}

.bonus-card h3 {
  margin: auto 0 18px;
  font-size: 19px;
  line-height: 1.3;
}

.bonus-detail {
  margin: 0;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: #8a746e;
  font-size: 11px;
}

.bonus-detail strong {
  color: var(--ink);
  font-size: 14px;
}

.featured .bonus-detail {
  color: rgba(255, 255, 255, .52);
  border-top-color: rgba(255, 255, 255, .12);
}

.featured .bonus-detail strong {
  color: #fff;
}

.bonus-footer {
  margin-top: 26px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(89, 43, 31, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
}

.bonus-footer p {
  margin: 0;
  color: #715b55;
  font-size: 14px;
  line-height: 1.5;
}

.bonus-footer p span {
  margin-right: 8px;
  color: #a84632;
}

.secondary-cta {
  min-height: 48px;
  flex: 0 0 auto;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 10px;
  color: #fff;
  background: #7f1d35;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}

.steps {
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(186, 70, 60, .18), transparent 30%),
    #200a12;
}

.steps-inner {
  display: grid;
  grid-template-columns: .85fr 1.5fr;
  gap: 90px;
  align-items: center;
}

.steps h2 {
  max-width: 420px;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.step-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.step-list li > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.step-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45%;
  gap: 32px;
  align-items: start;
}

.step-list strong {
  font-size: 17px;
}

.step-list small {
  max-width: none;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.5;
}

.footer {
  padding: 54px 0 34px;
  color: #fff;
  background: #080507;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

.responsible-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.responsible-badges a {
  display: inline-flex;
}

.badge-img {
  width: auto;
  height: 38px;
  opacity: .65;
}

.footer-divider {
  height: 1px;
  margin: 32px 0;
  background: rgba(255, 255, 255, .08);
}

.footer-partners {
  padding: 2px 0 4px;
}

.partners-title {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.partner-item {
  display: block;
  opacity: .5;
  filter: grayscale(100%) brightness(2);
  transition: opacity .3s ease, filter .3s ease;
}

.partner-item:hover {
  opacity: .9;
  filter: grayscale(0%) brightness(1);
}

.partner-item img {
  width: auto;
  height: 32px;
  max-width: 100px;
  display: block;
}

.footer-legal-text p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .29);
  font-size: 10px;
  line-height: 1.7;
}

.footer-legal-text a {
  color: rgba(255, 255, 255, .48);
}

.footer-copy {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .3);
  font-size: 11px;
}

@media (max-width: 1020px) {
  .hero {
    min-height: 660px;
    background-position: 58% center;
  }

  .hero-inner {
    min-height: 660px;
  }

  .hero-copy {
    width: 58%;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-inner {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 640px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 116px;
    height: 39px;
  }

  .header-link {
    width: 42px;
    padding: 10px;
  }

  .header-link span {
    display: none;
  }

  .header-register {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 600px;
    background-image:
      linear-gradient(180deg, rgba(28, 5, 13, .15) 0%, rgba(28, 5, 13, .2) 34%, rgba(23, 5, 11, .96) 69%, #16050b 100%),
      url("../img/hero-autumn-casino.png");
    background-size: auto 470px;
    background-repeat: no-repeat;
    background-position: 64% top;
  }

  .hero::after {
    height: 220px;
  }

  .hero-inner {
    min-height: 600px;
    padding-block: 270px 40px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(43px, 12vw, 64px);
    line-height: .94;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-highlights {
    margin: 22px 0;
  }

  .hero-highlights span {
    min-width: 0;
    flex: 1;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hero-highlights b {
    font-size: 20px;
  }

  .primary-cta {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
  }

  .hero-note {
    text-align: center;
  }

  .leaf {
    display: none;
  }

  .bonus-section {
    padding: 72px 0 76px;
  }

  .section-heading h2,
  .steps h2 {
    font-size: clamp(35px, 10vw, 52px);
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .bonus-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .bonus-card {
    min-height: 330px;
  }

  .bonus-value {
    margin-top: 28px;
  }

  .bonus-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .secondary-cta {
    justify-content: space-between;
  }

  .steps {
    padding: 68px 0;
  }

  .steps-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step-list div {
    display: block;
  }

  .step-list small {
    margin-top: 7px;
    display: block;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo {
    width: 126px;
  }

  .partners-logos {
    gap: 18px;
  }

  .partner-item img {
    height: 25px;
    max-width: 84px;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-actions {
    gap: 6px;
  }

  .header-register {
    padding-inline: 11px;
  }

  .hero-highlights span {
    padding-inline: 10px;
  }

  .bonus-card {
    padding-inline: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

@media (prefers-contrast: more) {
  .hero-lead,
  .hero-note,
  .footer-legal-text p {
    color: #fff;
  }
}
