@font-face {
  font-family: "Kanit";
  src: url("fonts/Kanit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Kanit", sans-serif;
}

body {
  height: 100%;

  margin: 0;
  background-color: var(--gray);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 550px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  min-height: 90vh;
  padding-top: 50px;
  max-width: 550px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--black), #141414);
}

.padding__main {
  color: var(--white);
  padding: 60px 0 30px 0;
}

.padding__main a {
  font-size: 24px;
  color: var(--red-primary);
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 60px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;

  background-color: var(--black);
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 24px;
  color: #fff;

  text-transform: uppercase;
  transition: .3s ease;
}

.nav__burger .nav__list:hover {
  color: var(--red-primary);
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: block;
  color: #fff;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 23px;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
}

.burger::before {
  top: 0px;
  box-shadow: 0 11px 0 #fff;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked+.burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 transparent;
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

/* end burger */

.heading {
  margin: 0;
  font-size: 30px;
}

.text {
  margin: 0;
  font-size: 25px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* header */
header {
  width: 100%;
  max-width: 550px;
  left: 50%;
  transform: translateX(-50%);

  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.7);
}

.header__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 25px;
  gap: 10px;

  transition: color 0.3s ease;
}

/* .header__logo:hover {
  color: var(--pink);
} */
.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 25px;
}

:root {
  --red-primary: #d22a2a;
  --dark-red: #9e1e1e;
  --light-red: #f15b5b;
  --black: #0f0f0f;
  --gray: #5e5e5e;
  --light-gray: #e8e8e8;
  --white: #ffffff;
}

.hero {
  background: linear-gradient(180deg, var(--black), #141414);
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__heading {
  font-size: 30px;
  line-height: 38px;
  background: linear-gradient(90deg, var(--white), var(--light-red), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  background-size: 200% 100%;
  animation: heroSheen 3s linear infinite;
}

.hero__subheading {
  font-size: 18px;
  line-height: 26px;
  color: var(--light-red);
  margin: 0;
}

.hero__bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero__icon {
  width: 22px;
  height: 22px;
  color: var(--light-red);
  flex: 0 0 22px;
}

.hero__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  margin: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__btn {
  position: relative;
  overflow: hidden;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  pointer-events: none;
  animation: heroGlow 1.6s ease-in-out infinite;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.hero__stat {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero__num {
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
  margin: 0;
}

.hero__label {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
  margin-top: 4px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
}

.hero__trusticon {
  width: 18px;
  height: 18px;
  color: var(--light-gray);
  transition: .3s ease;
}

.hero__trusttext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  transition: .3s ease;
}

.hero__media {
  position: relative;
}

.hero__mediaLink {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* animations */
@keyframes heroGlow {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.01);
  }

  100% {
    opacity: 0.25;
    transform: scale(1);
  }
}

@keyframes heroSheen {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}


/* features */
.features {
  background: linear-gradient(180deg, var(--black), #141414);
}

.features__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.features__intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  margin: 0;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.features__item:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.features__icon {
  width: 22px;
  height: 22px;
  color: var(--light-red);
}

.features__title {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 0;
}

.features__desc {
  font-size: 15px;
  line-height: 22px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

@media (max-width: 480px) {
  .features__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .features__title {
    font-size: 17px;
    line-height: 24px;
  }

  .features__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

/* games */
.games {
  background: linear-gradient(180deg, var(--black), #141414);
}

.games__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.games__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.games__item {
  display: block;
}

.games__card {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: 0.3s ease;
  overflow: hidden;
}

.games__card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.games__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.games__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.games__name {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.games__tag {
  font-size: 14px;
  line-height: 18px;
  color: var(--light-gray);
  opacity: .8;
}

@media (max-width: 480px) {
  .games__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .games__text {
    font-size: 15px;
    line-height: 22px;
  }


  .games__img {
    height: 140px;
  }
}

/* cta */
.cta {
  background: linear-gradient(180deg, var(--black), #141414);
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.cta__actions {
  display: flex;
  gap: 10px;
}

.cta__btn {
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.cta__btn:hover {
  transform: translateY(-2px);
}

.cta__btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  pointer-events: none;
  animation: heroGlow 1.6s ease-in-out infinite;
}

.cta__btn--ghost {
  background: transparent;
  color: var(--light-red);
  border: 1px solid rgba(241, 91, 91, 0.45);
}

.cta__btn--ghost::after {
  display: none;
}

.cta__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta__point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.cta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--light-red);
}

.cta__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.cta__media {
  flex: 1;
  width: 100%;
}

.cta__mediaLink {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cta__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .cta__container {
    flex-direction: column;
  }

  .cta__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .cta__text {
    font-size: 15px;
    line-height: 22px;
  }

  .cta__img {
    height: 200px;
  }
}

/* bonus page */
/* bonuses__intro */
/* bonuses__intro */
.bonuses__intro {
  background: linear-gradient(180deg, var(--black), #141414);
}

.bonuses__intro__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonuses__intro__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonuses__intro__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.bonuses__intro__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.bonuses__intro__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bonuses__intro__highlight {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.bonuses__intro__highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.bonuses__intro__icon {
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.bonuses__intro__label {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.bonuses__intro__value {
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
}

.bonuses__intro__actions {
  display: flex;
  gap: 10px;
}

.bonuses__intro__btn {
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.bonuses__intro__btn:hover {
  transform: translateY(-2px);
}

.bonuses__intro__btn--ghost {
  background: transparent;
  color: var(--light-red);
  border: 1px solid rgba(241, 91, 91, 0.45);
}

.bonuses__intro__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.bonuses__intro__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .bonuses__intro__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .bonuses__intro__text {
    font-size: 15px;
    line-height: 22px;
  }

  .bonuses__intro__img {
    height: 200px;
  }
}

/* bonuses__list */
.bonuses__list {
  background: linear-gradient(180deg, var(--black), #141414);
}

.bonuses__list__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonuses__list__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.bonuses__list__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.bonuses__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.bonuses__cardItem {
  display: block;
}

.bonuses__card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
  padding: 12px;
}

.bonuses__card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.bonuses__figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

.bonuses__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.bonuses__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(241, 91, 91, 0.35);
  background: rgba(241, 91, 91, 0.1);
}

.bonuses__icon {
  width: 16px;
  height: 16px;
  color: var(--light-red);
}

.bonuses__badgeText {
  font-size: 12px;
  line-height: 16px;
  color: var(--light-red);
}

.bonuses__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonuses__title {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 0;
}

.bonuses__terms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 12px;
}

.bonuses__term {
  border: 1px solid var(--gray);
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.bonuses__key {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.bonuses__val {
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}

.bonuses__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bonuses__chip {
  font-size: 12px;
  line-height: 16px;
  color: var(--light-gray);
  opacity: .8;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.bonuses__btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.bonuses__card:hover .bonuses__btn {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .bonuses__list__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .bonuses__list__text {
    font-size: 15px;
    line-height: 22px;
  }

  .bonuses__img {
    height: 120px;
  }

  .bonuses__terms {
    grid-template-columns: 1fr;
  }
}

/* bonuses__cta */
.bonuses__cta {
  background: linear-gradient(180deg, var(--black), #141414);
}

.bonuses__cta__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.bonuses__cta__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.bonuses__cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.bonuses__cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.bonuses__cta__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.bonuses__cta__point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.bonuses__cta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--light-red);
}

.bonuses__cta__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.bonuses__cta__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.bonuses__cta__stat {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.bonuses__cta__num {
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
}

.bonuses__cta__label {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin-top: 4px;
}

.bonuses__cta__btn {
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.bonuses__cta__btn:hover {
  transform: translateY(-2px);
}

.bonuses__cta__media {
  flex: 1;
  width: 100%;
}

.bonuses__cta__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.bonuses__cta__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .bonuses__cta__container {
    flex-direction: column;
  }

  .bonuses__cta__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .bonuses__cta__text {
    font-size: 15px;
    line-height: 22px;
  }

  .bonuses__cta__img {
    height: 200px;
  }
}


/* games__intro */
.games__intro {
  background: linear-gradient(180deg, var(--black), #141414);
}

.games__intro__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.games__intro__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.games__intro__heading {
  font-size: 24px;
  line-height: 32px;
  color: var(--white);
  margin: 0;
}

.games__intro__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.games__intro__tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.games__intro__tag {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.games__intro__tag:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
  background: rgba(241, 91, 91, 0.08);
}

.games__intro__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.games__intro__stat {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: .3s ease;
}

.games__intro__stat:hover {
  border-color: var(--red-primary);
}

.games__intro__num {
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
}

.games__intro__label {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.games__intro__media {
  display: block;
}

.games__intro__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.games__intro__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  .games__intro__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .games__intro__img {
    height: 200px;
  }
}

/* games__grid */
.games__grid {
  background: linear-gradient(180deg, var(--black), #141414);
}

.games__grid__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__grid__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.games__grid__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.games__grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.games__grid__item {
  display: block;
}

.games__grid__card {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
  padding: 12px;
}

.games__grid__card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.games__grid__img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.games__grid__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.games__grid__name {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.games__grid__tag {
  font-size: 14px;
  line-height: 18px;
  color: var(--light-gray);
  opacity: .8;
}

.games__grid__btn {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.games__grid__card:hover .games__grid__btn {
  transform: translateY(-2px);
}

.games__grid__note {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.games__grid__subheading {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 0;
}

.games__grid__subtext {
  font-size: 15px;
  line-height: 22px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

/* games__cta */
.games__cta {
  background: linear-gradient(180deg, var(--black), #141414);
}

.games__cta__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.games__cta__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.games__cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.games__cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.games__cta__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.games__cta__point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.games__cta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--light-red);
}

.games__cta__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.games__cta__btn {
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
  text-align: center;
}

.games__cta__btn:hover {
  transform: translateY(-2px);
}

.games__cta__media {
  display: block;
}

.games__cta__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.games__cta__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* reviews__intro */
.reviews__intro {
  background: linear-gradient(180deg, var(--black), #141414);
}

.reviews__intro__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews__intro__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews__intro__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.reviews__intro__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.reviews__intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__intro__item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: 0.3s ease;
}

.reviews__intro__item:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.reviews__intro__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
  margin-left: 12px;
}

.reviews__intro__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
}

.reviews__intro__title {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.reviews__intro__value {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.reviews__intro__media {
  display: block;
}

.reviews__intro__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.reviews__intro__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* reviews__slider */
.reviews__slider {
  background: linear-gradient(180deg, var(--black), #141414);
}

.reviews__slider__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews__slider__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.reviews__slider__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.reviews__slider__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.reviews__slider__track {
  display: flex;
  transition: 0.3s ease;
}

.reviews__slide {
  flex: 0 0 100%;
  padding: 12px;
  padding-bottom: 45px;
}

.reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
}

.reviews__line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--red-primary), var(--light-red));
}

.reviews__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__avatar {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--light-red);
}

.reviews__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__name {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.reviews__time {
  font-size: 14px;
  line-height: 18px;
  color: var(--light-gray);
  opacity: .8;
}

.reviews__rating {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
}

.reviews__star {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--light-gray);
  opacity: .6;
}

.reviews__body {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.reviews__nav {
  cursor: pointer;

  position: absolute;
  bottom: -12px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  color: var(--white);
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.reviews__nav i {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.reviews__nav:hover {
  transform: translateY(-50%) translateX(-1px);
  border-color: rgba(241, 91, 91, 0.45);
}

.reviews__nav--prev {
  left: 10%;
}

.reviews__nav--next {
  right: 10%;
}

.reviews__dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.reviews__dot.is-active {
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  border-color: transparent;
}

/* reviews__cta */
.reviews__cta {
  background: linear-gradient(180deg, var(--black), #141414);
}

.reviews__cta__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews__cta__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews__cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.reviews__cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.reviews__cta__reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__cta__reason {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.reviews__cta__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.reviews__cta__reasontext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.reviews__cta__btn {
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
  position: relative;
}

.reviews__cta__btn:hover {
  transform: translateY(-2px);
}


.reviews__cta__assure {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__cta__assureicon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-gray);
}

.reviews__cta__assuretext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.reviews__cta__media {
  display: block;
}

.reviews__cta__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.reviews__cta__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* promo__hero */
.promo__hero {
  background: linear-gradient(180deg, var(--black), #141414);
}

.promo__hero__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo__hero__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo__hero__heading {
  font-size: 24px;
  line-height: 32px;
  color: var(--white);
  margin: 0;
}

.promo__hero__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.promo__hero__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo__hero__point {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.promo__hero__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.promo__hero__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.promo__hero__stats {
  display: flex;
  gap: 10px;
}

.promo__hero__stat {
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.promo__hero__num {
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
}

.promo__hero__label {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
  margin: 4px 0 0 0;
}

.promo__hero__timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo__hero__timertext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.promo__hero__btn {
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
  position: relative;
}

.promo__hero__btn:hover {
  transform: translateY(-2px);
}

.promo__hero__btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  pointer-events: none;
  animation: heroGlow 1.6s ease-in-out infinite;
}

.promo__hero__media {
  position: relative;
}

.promo__hero__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.promo__hero__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.promo__hero__glow {
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  pointer-events: none;
  animation: heroSheen 3s linear infinite;
  background: linear-gradient(90deg, rgba(241, 91, 91, 0.15), rgba(255, 255, 255, 0.0), rgba(241, 91, 91, 0.15));
  background-size: 200% 100%;
  opacity: .25;
}

/* promo__image */
.promo__image {
  background: linear-gradient(180deg, var(--black), #141414);
}

.promo__image__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo__image__media {
  display: block;
}

.promo__image__link {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.promo__image__link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.promo__image__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.promo__image__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo__image__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.promo__image__intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.promo__image__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo__image__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.promo__image__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.promo__image__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.promo__image__terms {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.promo__image__subheading {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 0;
}

.promo__image__subtext {
  font-size: 15px;
  line-height: 22px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.promo__image__btn {
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
}

.promo__image__btn:hover {
  transform: translateY(-2px);
}


/* promo__cta */
.promo__cta {
  background: linear-gradient(180deg, var(--black), #141414);
}

.promo__cta__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo__cta__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.promo__cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 12px 12px 0 12px;
}

.promo__cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0 12px;
}

.promo__cta__reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 12px;
}

.promo__cta__reason {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.promo__cta__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-red);
}

.promo__cta__reasontext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.promo__cta__meter {
  height: 6px;
  margin: 0 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.promo__cta__meterfill {
  display: block;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  animation: heroGlow 1.6s ease-in-out infinite;
}

.promo__cta__btn {
  margin: 0 12px 12px 12px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
  position: relative;
}

.promo__cta__btn:hover {
  transform: translateY(-2px);
}

.promo__cta__btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  pointer-events: none;
  animation: heroGlow 1.6s ease-in-out infinite;
}

.promo__cta__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px 12px 12px;
}

.promo__cta__trusticon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-gray);
}

.promo__cta__trusttext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.promo__cta__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.promo__cta__mediaLink:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.promo__cta__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* payments__intro */
.payments__intro {
  background: linear-gradient(180deg, var(--black), #141414);
}

.payments__intro__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments__intro__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payments__intro__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.payments__intro__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.payments__intro__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payments__intro__point {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.payments__intro__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-red);
}

.payments__intro__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.payments__intro__media {
  display: block;
}

.payments__intro__mediaLink {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.payments__intro__mediaLink:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.payments__intro__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* payments__icons */
.payments__icons {
  background: linear-gradient(180deg, var(--black), #121212);
}

.payments__icons__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments__icons__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.payments__icons__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.payments__icons__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payments__icons__item {
  flex: 0 0 calc(50% - 6px);
}

.payments__icons__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  transition: 0.3s ease;
  transform: translateY(8px);
  opacity: 0;
}

.payments__icons__card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.payments__icons__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payments__icons__logo {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--light-red);
}

.payments__icons__name {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.payments__icons__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payments__icons__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(241, 91, 91, 0.35);
  background: rgba(241, 91, 91, 0.1);
  font-size: 12px;
  line-height: 16px;
  color: var(--light-red);
}

.payments__icons__mini {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  color: var(--light-red);
}

.payments__icons__hint {
  font-size: 14px;
  line-height: 18px;
  color: var(--light-gray);
  opacity: .8;
}

/* appear + float */
.payments__icons__card.is-in {
  opacity: 1;
  transform: translateY(0);
}

.payments__icons__card.is-in .payments__icons__logo {
  animation: payFloat 3s ease-in-out infinite;
}

@keyframes payFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

/* payments__faq */
.payments__faq {
  background: linear-gradient(180deg, var(--black), #141414);
}

.payments__faq__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments__faq__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 0;
}

.payments__faq__intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.payments__faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payments__faq__item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.payments__faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
}

.payments__faq__row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
}

.payments__faq__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.payments__faq__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payments__faq__q {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 0;
}

.payments__faq__a {
  font-size: 15px;
  line-height: 22px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.payments__faq__accent {
  color: var(--white);
}

.payments__faq__muted {
  color: var(--light-gray);
  opacity: .8;
}

/* payments__cta */
.payments__cta {
  background: linear-gradient(180deg, #141414, #121212);
}

.payments__cta__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments__cta__wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.payments__cta__heading {
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin: 12px 12px 0 12px;
}

.payments__cta__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0 12px;
}

.payments__cta__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 12px;
}

.payments__cta__point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.payments__cta__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-red);
}

.payments__cta__pointtext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
}

.payments__cta__btn {
  margin: 0 12px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  transition: 0.3s ease;
  position: relative;
}

.payments__cta__btn:hover {
  transform: translateY(-2px);
}

.payments__cta__btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  pointer-events: none;
}

.payments__cta__assure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px 12px 12px;
}

.payments__cta__assureicon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-gray);
}

.payments__cta__assuretext {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

/* site-footer */
.site-footer {
  max-width: 550px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0f0f0f, #0b0b0b);
  padding-top: 20px;
  padding-bottom: 70px;
}

.site-footer__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
}

.site-footer__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-footer__logo {
  font-size: 28px;
  line-height: 32px;
  color: transparent;
  background: linear-gradient(90deg, var(--white), var(--light-red), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  animation: siteLogoSheen 3s linear infinite;
}

.site-footer__pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--light-red);
  opacity: .8;
  position: relative;
  transform: translateY(2px);
}

.site-footer__pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(241, 91, 91, 0.45);
  opacity: .4;
  animation: siteLogoGlow 1.8s ease-in-out infinite;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__item {
  display: inline-block;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  line-height: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.site-footer__link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 91, 91, 0.45);
  background: rgba(241, 91, 91, 0.08);
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__agewrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  font-size: 14px;
  line-height: 18px;
}

.site-footer__ageicon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-gray);
}

.site-footer__disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
}

.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__badgeicon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-gray);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.site-footer__copyright {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .8;
  margin: 0;
  padding: 0 10px 0 10px;
  text-align: center;
}

/* animations */
@keyframes siteLogoSheen {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes siteLogoGlow {
  0% {
    transform: scale(0.9);
    opacity: .3;
  }

  50% {
    transform: scale(1.05);
    opacity: .7;
  }

  100% {
    transform: scale(0.9);
    opacity: .3;
  }
}

/* bottomnav */
.bottomnav {
  position: fixed;
  bottom: 0;
  z-index: 2;
  width: 100%;
  max-width: 550px;
  padding: 0;
}

.bottomnav__container {
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 12px;
}

.bottomnav__bar {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px 16px 0 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 8px;
}

.bottomnav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bottomnav__item {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bottomnav__link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
}

.bottomnav__link:hover {
  border-color: var(--red-primary);
}

.bottomnav__item.is-active .bottomnav__link {
  border-color: rgba(241, 91, 91, 0.45);
  background: rgba(241, 91, 91, 0.08);
}

.bottomnav__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--light-red);
}

.bottomnav__label {
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  opacity: .9;
}

.bottomnav__center {
  flex: 0 0 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bottomnav__fab {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  border: 1px solid rgba(241, 91, 91, 0.45);
  transition: 0.3s ease;
  overflow: hidden;
}

.bottomnav__fab:hover {
  transform: translateY(-2px);
}

.bottomnav__halo {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 2px solid rgba(241, 91, 91, 0.35);
  pointer-events: none;
  animation: bottomnavHalo 1.8s ease-in-out infinite;
}

.bottomnav__fabicon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--white);
}

.bottomnav__fablabel {
  font-size: 12px;
  line-height: 16px;
  color: var(--light-gray);
  opacity: .85;
}

@keyframes bottomnavHalo {
  0% {
    transform: scale(.96);
    opacity: .45;
  }

  50% {
    transform: scale(1.02);
    opacity: .8;
  }

  100% {
    transform: scale(.96);
    opacity: .45;
  }
}


:focus-visible {
  outline: 2px solid var(--red-primary);
  outline-offset: 2px;
}

/* cookiebanner */
.cookiebanner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: 550px;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: radial-gradient(120% 140% at 0% 0%, rgba(241, 91, 91, 0.16), rgba(20, 20, 20, 0.92));
  backdrop-filter: blur(6px);
}

.cookiebanner__container {
  display: flex;
  flex-direction: column;
}

.cookiebanner__wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookiebanner__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cookiebanner__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--light-red);
}

.cookiebanner__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookiebanner__heading {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  margin: 12px 12px 0 12px;
}

.cookiebanner__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--light-gray);
  opacity: .9;
  margin: 0 12px;
}

.cookiebanner__links {
  display: flex;
  gap: 12px;
  margin: 0 12px 0 12px;
}

.cookiebanner__link {
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  text-decoration: underline;
  transition: 0.3s ease;
}

.cookiebanner__link:hover {
  color: var(--light-red);
}

.cookiebanner__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0 12px 12px 12px;
}

.cookiebanner__btn {
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s ease;
}

.cookiebanner__btn--accept {
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
}

.cookiebanner__btn--accept:hover {
  transform: translateY(-2px);
}

.cookiebanner__btn--later {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookiebanner__btn--later:hover {
  border-color: rgba(241, 91, 91, 0.45);
}

/* footer add-ons (links already present style-ready) */
.site-footer__links .site-footer__item--policy .site-footer__link {
  text-decoration: underline;
}


/*  */
/* faq__intro */
.faq__intro__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__intro__heading {
  color: var(--white);
  font-size: 24px;
  line-height: 30px;
  margin: 10px 0 4px 0;
}

.faq__intro__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__intro__heading::after {
  content: "";
  display: block;
  height: 2px;
  width: 96px;
  background: linear-gradient(90deg, var(--red-primary), transparent);
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.3s ease;
}

.faq__intro__heading:hover::after {
  transform: scaleX(1);
}

/* faq__index */
.faq__index__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__index__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
}

.faq__index__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__index__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq__index__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  line-height: 18px;
  transition: 0.3s ease;
}

.faq__index__link::before {
  content: "→";
  font-size: 14px;
  transform: translateX(-2px);
  transition: 0.3s ease;
}

.faq__index__link:hover {
  border-color: rgba(241, 91, 91, .45);
  background: rgba(241, 91, 91, .08);
  transform: translateY(-2px);
}

.faq__index__link:hover::before {
  transform: translateX(0);
}

.faq__index__note {
  color: var(--light-gray);
  opacity: .85;
  font-size: 14px;
  line-height: 20px;
  margin: 6px 0;
}

/* faq__payments */
.faq__payments__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__payments__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
  position: relative;
}

.faq__payments__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(241, 91, 91, .3), transparent);
  animation: faqPulse 2.6s ease-in-out infinite;
}

.faq__payments__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__payments__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__payments__list .text {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  padding-left: 12px;
  position: relative;
}

.faq__payments__list .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-red);
}

/* faq__bonuses */
.faq__bonuses__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__bonuses__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
}

.faq__bonuses__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__bonuses__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.faq__bonuses__list .text {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, .03);
  transition: 0.3s ease;
}

.faq__bonuses__list .text:hover {
  border-color: rgba(241, 91, 91, .45);
  transform: translateY(-2px);
}

/* faq__technical */
.faq__technical__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__technical__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
}

.faq__technical__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__technical__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__technical__list .text {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
}

.faq__technical__text a {
  color: var(--white);
  text-decoration: underline;
  transition: 0.3s ease;
}

.faq__technical__text a:hover {
  color: var(--light-red);
}

/* faq__responsible */
.faq__responsible__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__responsible__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
}

.faq__responsible__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__responsible__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.faq__responsible__list .text {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  padding: 8px;
  border: 1px dashed rgba(241, 91, 91, .45);
  border-radius: 10px;
}

/* faq__contacts */
.faq__contacts__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__contacts__heading {
  color: var(--white);
  font-size: 20px;
  line-height: 26px;
  margin: 10px 0 2px 0;
}

.faq__contacts__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.faq__contacts__text a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: 0.3s ease;
}

.faq__contacts__text a:hover {
  color: var(--light-red);
  border-bottom-color: rgba(241, 91, 91, .6);
}

/* helpers & animations */
@keyframes faqPulse {
  0% {
    transform: scale(.96);
    opacity: .45;
  }

  50% {
    transform: scale(1.05);
    opacity: .85;
  }

  100% {
    transform: scale(.96);
    opacity: .45;
  }
}

/* error404 */
.error404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.error404__heading {
  color: var(--white);
  font-size: 28px;
  line-height: 34px;
  margin: 10px 0;
}

.error404__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
  max-width: 520px;
}

.error404__btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--red-primary), var(--light-red));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.error404__btn:hover {
  transform: translateY(-2px);
}

.error404__imagebox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.error404__img {
  border-radius: 12px;
  object-fit: cover;
  width: 500px;
  height: 340px;
  animation: errorFloat 4s ease-in-out infinite;
}

@keyframes errorFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* search */
.search__container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search__heading {
  color: var(--white);
  font-size: 26px;
  line-height: 32px;
  margin: 10px 0;
}

.search__intro {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.search__results__heading {
  color: var(--white);
  font-size: 22px;
  line-height: 28px;
  margin-top: 16px;
}

.search__results__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.search__topic__heading {
  color: var(--white);
  font-size: 18px;
  line-height: 24px;
  margin: 10px 0 4px 0;
  position: relative;
}

.search__topic__heading::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 3px;
  height: 18px;
  background: var(--light-red);
}

.search__topic__text {
  color: var(--light-gray);
  opacity: .9;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0;
}

.search__topic__text a {
  color: var(--white);
  text-decoration: underline;
  transition: 0.3s ease;
}

.search__topic__text a:hover {
  color: var(--light-red);
}

.search__topic__heading:hover {
  color: var(--light-red);
  transition: 0.3s ease;
}

.search__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}