@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto";
}

body {
  height: 100%;
  margin: 0;
  background-color: var(--background);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  padding-top: 50px;
}

.padding__main {
  color: var(--light);
  padding: 150px 0 50px 0;
}

.padding__main a {
  font-size: 24px;
  color: var(--secondary);
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 70px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;

  background-color: var(--background);
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: none;
  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;
  margin-bottom: 30px;
  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%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: var(--background);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.header__container {
  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;
  color: var(--primary);

  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--light);
}

.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 20px;
  color: var(--light);
  transition: .3s ease;
}

.nav__list:hover {
  color: var(--secondary);
}

:root {
  --primary: #0000EE;
  --secondary: #0060A1;
  --accent: #0F324E;
  --highlight: #0F212F;
  --background: #071724;
  --light: #FFFFFF;
  --neutral: #212F3C;
  --dark: #000000;
}


/* register__hero */
.register__hero {
  background: linear-gradient(180deg, var(--background), #07111a)
}

.register__hero__container {
  position: relative
}

.register__hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center
}

.register__hero__heading {
  color: var(--light);
  font-size: 34px;
  line-height: 42px;
  margin: 0 0 10px 0
}

.register__hero__lead {
  color: #c2c8cf;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.register__hero__badges {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.register__hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 50, 78, 0.35);
  border: 1px solid var(--neutral);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--light);
  font-size: 12px;
  line-height: 16px;
  transition: 0.3s ease
}

.register__hero__badge:hover {
  border-color: var(--primary);
  transform: translateY(-2px)
}

.register__hero__badge-icon {
  width: 16px;
  height: 16px;
  object-fit: cover
}

.register__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px 0
}

.register__hero__btn {
  padding: 10px 15px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #e9f3ff;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s ease
}

.register__hero__btn:hover {
  transform: translateY(-2px)
}

.register__hero__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.register__hero__btn--ghost:hover {
  background: var(--highlight)
}

.register__hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 0 0 16px 0
}

.register__hero__stat {
  display: flex;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, #0F212F, #0b1a28);
  border: 1px solid var(--neutral);
  border-radius: 12px;
  padding: 12px
}

.register__hero__stat-icon {
  width: 24px;
  height: 24px;
  object-fit: cover
}

.register__hero__stat-value {
  color: var(--light);
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 2px 0;
  font-weight: 700
}

.register__hero__stat-label {
  color: #9aa7b3;
  font-size: 12px;
  line-height: 18px;
  margin: 0
}

.register__hero__steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0
}

.register__hero__step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 238, 0.07);
  border: 1px dashed var(--primary);
  border-radius: 10px;
  padding: 10px 12px
}

.register__hero__step-num {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), #0040c0);
  color: #fff;
  font-size: 12px;
  line-height: 12px
}

.register__hero__step-text {
  color: var(--light);
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.register__hero__visual {
  position: relative
}

.register__hero__visual-wrap {
  position: relative;
  border: 1px solid var(--neutral);
  border-radius: 14px;
  overflow: hidden
}

.register__hero__img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05)
}

.register__hero__rays {
  pointer-events: none;
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(60% 40% at 20% 30%, rgba(0, 0, 238, 0.25), transparent 60%),
    radial-gradient(50% 35% at 80% 70%, rgba(0, 96, 161, 0.25), transparent 60%);
  opacity: 0.8
}

.register__hero__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(7, 23, 36, 0.8);
  backdrop-filter: blur(2px);
  border: 1px solid var(--neutral);
  border-radius: 999px;
  padding: 6px 10px;
  color: #cfe6ff;
  font-size: 12px;
  line-height: 16px
}

/* helpers for focus */
.register__hero a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px
}

/* register__benefits */
.register__benefits {
  background: linear-gradient(180deg, var(--background), #0A1A27)
}

.register__benefits__container {
  position: relative
}

.register__benefits__heading {
  color: var(--light);
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 12px 0
}

.register__benefits__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 16px 0
}

.register__benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 0 0 16px 0
}

.register__benefit {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--highlight), #0B2230);
  padding: 14px;
  transition: 0.3s ease
}

.register__benefit:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.register__benefit__top {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px 0
}

.register__benefit__emoji {
  font-size: 18px;
  line-height: 18px
}

.register__benefit__title {
  color: var(--light);
  font-size: 16px;
  line-height: 22px;
  margin: 0
}

.register__benefit__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px 0
}

.register__benefit__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.register__benefit__points .text {
  color: #9FB3C3;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.register__benefits__kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 14px 0
}

.register__kpi {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F212F;
  padding: 14px
}

.register__kpi__label {
  color: #90A0AE;
  font-size: 12px;
  line-height: 18px;
  margin: 0 0 4px 0
}

.register__kpi__value {
  color: var(--light);
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 8px 0;
  font-weight: 700
}

.register__kpi__bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden
}

.register__kpi__bar span {
  display: block;
  height: 100%;
  width: 0;
  transition: 0.3s ease;
  background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.register__benefits__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.register__benefits__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #E9F3FF;
  font-weight: 700;
  transition: 0.3s ease
}

.register__benefits__btn:hover {
  transform: translateY(-2px)
}

.register__benefits__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.register__benefits__btn--ghost:hover {
  background: var(--highlight)
}

/* register__faq-preview */
.register__faq-preview {
  background: linear-gradient(180deg, #0A1A27, var(--background))
}

.register__faq-preview__container {
  position: relative
}

.register__faq-preview__heading {
  color: var(--light);
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 12px 0
}

.register__faq-preview__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.register__faq-preview__list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px
}

.register__faq-preview__item {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  padding: 12px;
  transition: 0.3s ease
}

.register__faq-preview__item:hover {
  border-color: var(--primary);
  transform: translateY(-2px)
}

.register__faq-preview__q {
  color: var(--light);
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 6px 0;
  font-weight: 700
}

.register__faq-preview__a {
  color: #CFD9E2;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.register__faq-preview__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.register__faq-preview__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #E9F3FF;
  font-weight: 700;
  transition: 0.3s ease
}

.register__faq-preview__btn:hover {
  transform: translateY(-2px)
}

.register__faq-preview__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.register__faq-preview__btn--ghost:hover {
  background: var(--highlight)
}

/* bonus__hero */
.bonus__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.bonus__hero__container {
  position: relative
}

.bonus__hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center
}

.bonus__hero__heading {
  color: var(--light);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 12px 0
}

.bonus__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.bonus__hero__highlights {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.bonus__hero__highlight {
  color: #CFD9E2;
  font-size: 13px;
  line-height: 18px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 50, 78, 0.35)
}

.bonus__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px 0
}

.bonus__hero__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #E9F3FF;
  font-weight: 700;
  transition: 0.3s ease
}

.bonus__hero__btn:hover {
  transform: translateY(-2px)
}

.bonus__hero__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.bonus__hero__btn--ghost:hover {
  background: var(--highlight)
}

.bonus__hero__status {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center
}

.bonus__hero__timer {
  color: #AFC2D3;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.bonus__hero__bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden
}

.bonus__hero__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.bonus__hero__visual {
  position: relative
}

.bonus__hero__visual-wrap {
  position: relative;
  border: 1px solid var(--neutral);
  border-radius: 14px;
  overflow: hidden
}

.bonus__hero__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block
}

.bonus__hero__chips {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  margin: 0;
  flex-wrap: wrap
}

.bonus__hero__chip {
  background: rgba(7, 23, 36, 0.8);
  border: 1px solid var(--neutral);
  border-radius: 999px;
  padding: 6px 10px;
  color: #cfe6ff;
  font-size: 12px;
  line-height: 16px
}

/* bonus__list */
.bonus__list {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.bonus__list__container {
  position: relative
}

.bonus__list__heading {
  color: var(--light);
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 12px 0
}

.bonus__list__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.bonus__list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px
}

.bonus__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  padding: 14px;
  transition: 0.3s ease
}

.bonus__card:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.bonus__card__head {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px 0
}

.bonus__card__emoji {
  font-size: 18px;
  line-height: 18px
}

.bonus__card__name {
  color: var(--light);
  font-size: 16px;
  line-height: 22px;
  margin: 0
}

.bonus__card__badge {
  color: #071724;
  background: #E6F0FF;
  border: 1px solid #95B6FF;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px
}

.bonus__card__badge--alt {
  background: #E9FFFB;
  border-color: #7FEAD9
}

.bonus__card__line {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px 0
}

.bonus__card__amt {
  color: #fff;
  font-weight: 700
}

.bonus__card__meta {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.bonus__card__meta .text {
  color: #A9BED0;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.bonus__card__progress {
  height: 8px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden;
  margin: 0;
  margin-top: auto;
  margin-bottom: 10px;
}

.bonus__card__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.bonus__card__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.bonus__list__btn {
  padding: 7px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #E9F3FF;
  font-weight: 700;
  transition: 0.3s ease
}

.bonus__list__btn:hover {
  transform: translateY(-2px)
}

.bonus__list__btn--ghost {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--light)
}

.bonus__list__btn--ghost:hover {
  background: var(--highlight)
}

/* bonus__steps */
.bonus__steps {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.bonus__steps__container {
  position: relative
}

.bonus__steps__heading {
  color: var(--light);
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 12px 0
}

.bonus__steps__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.bonus__steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: st
}

.bonus__step {
  list-style: none;
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 14px;
  transition: 0.3s ease
}

.bonus__step:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.bonus__step__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px 0
}

.bonus__step__num {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), #0040c0);
  color: #fff;
  font-size: 12px;
  line-height: 12px
}

.bonus__step__emoji {
  font-size: 18px;
  line-height: 18px
}

.bonus__step__title {
  color: var(--light);
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 6px 0;
  font-weight: 700
}

.bonus__step__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

/* games__hero */
.games__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.games__hero__container {
  position: relative
}

.games__hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center
}

.games__hero__heading {
  color: var(--light);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 10px 0
}

.games__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.games__hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px 0
}

.games__chip {
  padding: 10px 15px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  color: #E1ECF7;
  font-size: 13px;
  line-height: 18px;
  transition: 0.3s ease
}

.games__chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.games__chip.is-active {
  border-color: var(--primary);
  background: rgba(0, 0, 238, 0.15)
}

.games__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.games__hero__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #E9F3FF;
  font-weight: 700;
  transition: 0.3s ease
}

.games__hero__btn:hover {
  transform: translateY(-2px)
}

.games__hero__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.games__hero__btn--ghost:hover {
  background: var(--highlight)
}

/* carousel */
.games__carousel {
  position: relative;
  border: 1px solid var(--neutral);
  border-radius: 14px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  overflow: hidden
}

.games__controls {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 10px
}

.games__nav {
  pointer-events: auto;
  border: 1px solid var(--neutral);
  background: rgba(7, 23, 36, 0.8);
  border-radius: 8px;
  padding: 10px 15px;
  color: #E1ECF7;
  cursor: pointer;
  transition: 0.3s ease
}

.games__nav:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.games__viewport {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden
}

.games__track {
  display: flex;
  height: 100%;
  transition: 0.3s ease
}

.games__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%
}

.games__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05)
}

.games__slide-overlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(7, 23, 36, 0.78);
  border: 1px solid var(--neutral);
  border-radius: 12px;
  padding: 12px;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.3s ease
}

.games__slide:hover .games__slide-overlay,
.games__slide:focus-within .games__slide-overlay {
  opacity: 1;
  transform: translateY(0)
}

.games__slide-title {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 6px 0;
  font-weight: 700
}

.games__slide-note {
  color: #BFD0DE;
  font-size: 13px;
  line-height: 18px;
  margin: 0 0 8px 0
}

.games__play {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s ease
}

.games__play:hover {
  transform: translateY(-2px)
}

.games__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 24px
}

.games__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--neutral);
  background: #0B1C2A;
  transition: 0.3s ease
}

.games__dot.is-active {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-color: transparent
}

.games__carousel button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px
}

/* games__categories */
.games__categories {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.games__categories__container {
  position: relative;
}

.games__categories__heading {
  color: var(--light);
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  margin: 0 0 10px 0
}

.games__categories__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0 0 14px 0
}

.games__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 16px 0
}

.games__cat__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
  margin: 0 0 10px 0
}

.games__cat__title {
  color: #E6F0FF;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  font-weight: 700
}

.games__cat__note {
  color: #9FB3C3;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.games__grid {
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px
}

.games__tile {
  position: relative;
  border: 1px solid var(--neutral);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  background: #0F212F
}

.games__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 23, 36, 0.75));
  opacity: 0;
  transition: 0.3s ease
}

.games__tile:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.games__tile:hover::before {
  opacity: 1
}

.games__img {
  width: 100%;
  /* height: 160px; */
  object-fit: contain;
  display: block
}

.games__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
  z-index: 2
}

.games__tile:hover .games__content {
  opacity: 1;
  transform: translateY(0)
}

.games__name {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  background: rgba(7, 23, 36, 0.65);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 6px 8px
}

.games__play {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--light);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  z-index: 3
}

.games__play:hover {
  transform: translateY(-2px)
}


/* games__pitch */
.games__pitch {
  position: relative;
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.games__pitch::before {
  width: 100%;
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 220px;
  background:
    radial-gradient(40% 60% at 20% 50%, rgba(0, 0, 238, 0.18), transparent 60%),
    radial-gradient(35% 55% at 80% 30%, rgba(0, 96, 161, 0.18), transparent 60%);
  pointer-events: none
}

.games__pitch__container {
  position: relative
}

.games__pitch__wrap {
  border: 1px solid var(--neutral);
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  border-radius: 16px;
  padding: 18px
}

.games__pitch__heading {
  color: var(--light);
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 10px 0
}

.games__pitch__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.games__pitch__chips {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.games__pitch__chip {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.games__pitch__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 0 0 14px 0
}

.games__pitch__stat {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F324E;
  padding: 12px
}

.games__pitch__value {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 4px 0;
  font-weight: 700
}

.games__pitch__label {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 18px;
  margin: 0
}

.games__pitch__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px 0
}

.games__pitch__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.games__pitch__btn:hover {
  transform: translateY(-2px)
}

.games__pitch__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.games__pitch__btn--ghost:hover {
  background: var(--highlight)
}

.games__pitch__textgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px
}

.games__pitch__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

/* reviews__hero */
.reviews__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.reviews__hero__heading {
  color: var(--light);
  font-size: 30px;
  line-height: 38px;
  margin: 0 0 10px 0
}

.reviews__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 10px 0
}

.reviews__hero__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 12px 0
}

.reviews__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.reviews__hero__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.reviews__hero__btn:hover {
  transform: translateY(-2px)
}

.reviews__hero__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.reviews__hero__btn--ghost:hover {
  background: var(--highlight)
}

/* reviews__list */
.reviews__list {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.reviews__list__heading {
  color: var(--light);
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 10px 0
}

.reviews__list__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px
}

.review {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 12px;
  transition: 0.3s ease
}

.review:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.review__head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 6px 0
}

.review__avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 999px;
  background: #0F324E;
  border: 1px solid var(--neutral)
}

.review__name {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 2px 0;
  font-weight: 700
}

.review__tag {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.review__stars {
  color: #FFD66B;
  font-size: 14px;
  line-height: 18px;
  margin: 0
}

.review__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 6px 0
}

.review__date {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.reviews__list__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 0 0
}

.reviews__list__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.reviews__list__btn:hover {
  transform: translateY(-2px)
}

.reviews__list__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.reviews__list__btn--ghost:hover {
  background: var(--highlight)
}

/* reviews__stats */
.reviews__stats {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.reviews__stats__heading {
  color: var(--light);
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 10px 0
}

.reviews__stats__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.reviews__stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px
}

.rstat {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F324E;
  padding: 12px
}

.rstat__label {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 6px 0
}

.rstat__value {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 8px 0;
  font-weight: 700
}

.rstat__bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden
}

.rstat__barfill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

/* focus */
.reviews__list a:focus-visible,
.reviews__hero a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px
}

/* article__hero */
.article__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.article__hero__container {
  position: relative
}

.article__hero__wrap {
  border: 1px solid var(--neutral);
  border-radius: 16px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 18px
}

.article__hero__heading {
  color: var(--light);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 12px 0
}

.article__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.article__hero__offerline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 14px 0
}

.article__hero__badge {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.article__hero__offer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  border: 1px solid var(--neutral);
  border-radius: 12px;
  padding: 8px 12px
}

.article__hero__from {
  color: #A3BFEF;
  font-size: 18px;
  line-height: 22px
}

.article__hero__arrow {
  color: #89F1E0;
  font-size: 18px;
  line-height: 22px
}

.article__hero__to {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px
}

.article__hero__points {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.article__hero__point {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.article__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.article__hero__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.article__hero__btn:hover {
  transform: translateY(-2px)
}

.article__hero__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.article__hero__btn--ghost:hover {
  background: var(--highlight)
}

/* article__content */
.article__content {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.article__content__container {
  position: relative
}

.article__content__heading {
  color: #E6F0FF;
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 10px 0
}

.article__content__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px 0
}

.article__content__list {
  list-style: disc;
  margin: 0 0 12px 18px;
  padding: 0;
  display: grid;
  gap: 6px
}

.article__content__li {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.article__content__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 0 0
}

.article__content__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.article__content__btn:hover {
  transform: translateY(-2px)
}

.article__content__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.article__content__btn--ghost:hover {
  background: var(--highlight)
}

/* article__offer */
.article__offer {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.article__offer__wrap {
  border: 1px solid var(--neutral);
  border-radius: 16px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 18px
}

.article__offer__head {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px 0
}

.article__offer__badge {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.article__offer__heading {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 8px 0
}

.article__offer__from {
  color: #A3BFEF
}

.article__offer__arrow {
  color: #89F1E0
}

.article__offer__to {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700
}

.article__offer__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0
}

.article__offer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px
}

@media (max-width:860px) {
  .article__offer__grid {
    grid-template-columns: 1fr
  }
}

.article__offer__points {
  list-style: disc;
  margin: 0 0 10px 18px;
  padding: 0;
  display: grid;
  gap: 6px
}

.article__offer__points .text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.article__offer__panel {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F324E;
  padding: 12px
}

.article__offer__meter-label {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 6px 0
}

.article__offer__bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden;
  margin: 0 0 6px 0
}

.article__offer__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.article__offer__meter-note {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 10px 0
}

.article__offer__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px 0
}

.article__offer__chip {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(7, 23, 36, 0.65);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.article__offer__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.article__offer__stat {
  border: 1px solid var(--neutral);
  border-radius: 10px;
  background: #0F212F;
  padding: 10px
}

.article__offer__stat-value {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 2px 0;
  font-weight: 700
}

.article__offer__stat-label {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.article__offer__note {
  color: #AFC2D3;
  font-size: 13px;
  line-height: 18px;
  margin: 10px 0 0 0
}

/* article__cta */
.article__cta {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.article__cta__wrap {
  border: 1px solid var(--neutral);
  border-radius: 16px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  padding: 18px;
  text-align: center
}

.article__cta__heading {
  color: #FFFFFF;
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 8px 0
}

.article__cta__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 12px 0
}

.article__cta__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 10px 0
}

.article__cta__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-block
}

.article__cta__btn:hover {
  transform: translateY(-2px)
}

.article__cta__btn--ghost {
  background: transparent;
  border: 1px solid var(--light);
  color: #FFFFFF
}

.article__cta__btn--ghost:hover {
  background: var(--highlight)
}

.article__cta__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

.article__cta__checks .text {
  color: #BFD0DE;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

/* fastpayouts__hero */
.fastpayouts__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.fastpayouts__hero__container {
  position: relative
}

.fastpayouts__hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center
}

.fastpayouts__hero__heading {
  color: var(--light);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 10px 0
}

.fastpayouts__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0
}

.fastpayouts__hero__chips {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.fastpayouts__chip {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.fastpayouts__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px 0
}

.fastpayouts__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.fastpayouts__btn:hover {
  transform: translateY(-2px)
}

.fastpayouts__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.fastpayouts__btn--ghost:hover {
  background: var(--highlight)
}

.fastpayouts__hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px
}

.fastpayouts__stat {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F212F;
  padding: 12px
}

.fastpayouts__stat-value {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 2px 0;
  font-weight: 700
}

.fastpayouts__stat-label {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.fastpayouts__hero__visual {
  position: relative
}

.fastpayouts__visual__panel {
  border: 1px solid var(--neutral);
  border-radius: 14px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  padding: 14px
}

.fastpayouts__visual__title {
  color: #E6F0FF;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px 0
}

.fastpayouts__visual__meters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.fastpayouts__vmeter {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 8px;
  align-items: center
}

.fastpayouts__vmeter-label {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.fastpayouts__vmeter-bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden
}

.fastpayouts__vmeter-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.fastpayouts__vmeter-time {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.fastpayouts__visual__note {
  color: #AFC2D3;
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0 0 0
}

/* fastpayouts__methods */
.fastpayouts__methods {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.fastpayouts__methods__heading {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 10px 0
}

.fastpayouts__methods__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.fastpayouts__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px
}

.fastpayouts__card {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 12px;
  transition: 0.3s ease
}

.fastpayouts__card:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.fastpayouts__card-head {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px 0
}

.fastpayouts__emoji {
  font-size: 18px;
  line-height: 18px
}

.fastpayouts__card-name {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  margin: 0
}

.fastpayouts__badge {
  color: #071724;
  background: #E6F0FF;
  border: 1px solid #95B6FF;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px
}

.fastpayouts__badge--hot {
  background: #E9FFFB;
  border-color: #7FEAD9
}

.fastpayouts__card-meta {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.fastpayouts__card-meta .text {
  color: #CFD9E2;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.fastpayouts__speed {
  height: 8px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden;
  margin: 0 0 10px 0
}

.fastpayouts__speed span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.fastpayouts__card-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.fastpayouts__card-cta .fastpayouts__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.fastpayouts__card-cta .fastpayouts__btn:hover {
  transform: translateY(-2px)
}

.fastpayouts__card-cta .fastpayouts__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: #FFFFFF
}

.fastpayouts__card-cta .fastpayouts__btn--ghost:hover {
  background: var(--highlight)
}

/* fastpayouts__stats */
.fastpayouts__stats {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.fastpayouts__stats__heading {
  color: #FFFFFF;
  font-size: 26px;
  line-height: 34px;
  margin: 0 0 10px 0
}

.fastpayouts__stats__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px 0
}

.fastpayouts__stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px
}

.fstat {
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: #0F324E;
  padding: 12px
}

.fstat__label {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 6px 0
}

.fstat__value {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 8px 0;
  font-weight: 700
}

.fstat__bar {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden
}

.fstat__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.fastpayouts__notes {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.fastpayouts__notes .text {
  color: #AFC2D3;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

/* faq__hero */
.faq__hero {
  background: linear-gradient(180deg, var(--background), #0A1823)
}

.faq__hero__container {
  position: relative
}

.faq__hero__heading {
  color: var(--light);
  font-size: 30px;
  line-height: 38px;
  margin: 0 0 10px 0
}

.faq__hero__lead {
  color: #B9C7D3;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 10px 0
}

.faq__hero__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 12px 0
}

.faq__hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.faq__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.faq__btn:hover {
  transform: translateY(-2px)
}

.faq__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: var(--light)
}

.faq__btn--ghost:hover {
  background: var(--highlight)
}

/* faq__list */
.faq__list {
  background: linear-gradient(180deg, #0A1823, var(--background))
}

.faq__list__container {
  position: relative
}

.faq__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px
}

.faq__item {
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--neutral);
  border-radius: 12px;
  background: linear-gradient(180deg, #0F212F, #0B1C2A);
  padding: 12px;
  transition: 0.3s ease
}

.faq__item:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.faq__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px
}

.faq__q {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.faq__toggle {
  flex: 0 0 22px;
  height: 22px;
  border: 1px solid var(--neutral);
  border-radius: 6px;
  position: relative;
  transition: 0.3s ease;
  background: #0F324E
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #E6F0FF;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: 0.3s ease
}

.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg)
}

.faq__item[aria-expanded="true"] .faq__toggle {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-color: transparent
}

.faq__item[aria-expanded="true"] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0
}

.faq__answer {
  overflow: hidden;
  height: 0;
  transition: 0.3s ease
}

.faq__a {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0 0 0
}

/* sitefooter */
.sitefooter {
  padding: 20px 0;
  background: linear-gradient(180deg, #0F212F, var(--background));
  border-top: 1px solid var(--neutral)
}

.sitefooter__container {
  position: relative
}

.sitefooter__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start
}

@media (max-width:980px) {
  .sitefooter__grid {
    grid-template-columns: 1fr
  }
}

.sitefooter__logo {
  display: inline-block;
  font-weight: 800;
  font-size: 22px;
  line-height: 28px;
  color: #E6F0FF;
  border: 1px solid var(--neutral);
  border-radius: 10px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  transition: 0.3s ease
}

.sitefooter__logo:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.sitefooter__tagline {
  color: #B9C7D3;
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0 10px 0
}

.sitefooter__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.sitefooter__chip {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px
}

.sitefooter__heading {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 8px 0
}

.sitefooter__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.sitefooter__link {
  display: inline-block;
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: 0.3s ease
}

.sitefooter__link:hover {
  color: #FFFFFF;
  border-color: var(--neutral);
  transform: translateX(2px);
  background: #0F324E
}

.sitefooter__facts {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.sitefooter__facts .text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0
}

.sitefooter__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.sitefooter__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease
}

.sitefooter__btn:hover {
  transform: translateY(-2px)
}

.sitefooter__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: #FFFFFF
}

.sitefooter__btn--ghost:hover {
  background: var(--highlight)
}

.sitefooter__bottom {
  margin: 14px 0 0 0;
  border-top: 1px solid var(--neutral);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0 0 0
}

.sitefooter__legal {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

.sitefooter__legal-links {
  display: flex;
  gap: 8px;
  align-items: center
}

.sitefooter__legal-link {
  color: #BFD0DE;
  font-size: 12px;
  line-height: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 4px 8px;
  transition: 0.3s ease
}

.sitefooter__legal-link:hover {
  color: #FFFFFF;
  border-color: var(--neutral);
  background: #0F324E
}

.sitefooter__dot {
  color: #5D6D7E
}

/* modalhb */
.modalhb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 23, 36, 0.72);
  backdrop-filter: blur(8px)
}

.modalhb.is-visible {
  display: flex
}

.modalhb__dialog {
  width: 92%;
  max-width: 720px;
  border: 1px solid var(--neutral);
  border-radius: 16px;
  background: linear-gradient(180deg, #0F324E, #0B2435);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: 0.3s ease
}

.modalhb.is-visible .modalhb__dialog {
  transform: translateY(0) scale(1);
  opacity: 1
}

.modalhb__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--neutral)
}

.modalhb__badge {
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: rgba(15, 50, 78, 0.35);
  padding: 6px 10px;
  color: #E1ECF7;
  font-size: 12px;
  line-height: 16px;
  animation: modalhbPulse 1.8s infinite ease-in-out
}

.modalhb__heading {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  font-weight: 800
}

.modalhb__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--neutral);
  border-radius: 10px;
  background: #0F212F;
  color: #E6F0FF;
  cursor: pointer;
  transition: 0.3s ease
}

.modalhb__close:hover {
  transform: translateY(-2px);
  border-color: var(--primary)
}

.modalhb__body {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 14px
}

@media (max-width:580px) {
  .modalhb__body {
    grid-template-columns: 1fr
  }
}

.modalhb__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--neutral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: #0F212F
}

.modalhb__text {
  color: #CFD9E2;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px 0
}

.modalhb__list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.modalhb__point {
  color: #BFD0DE;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.modalhb__progress {
  height: 10px;
  border: 1px solid var(--neutral);
  border-radius: 999px;
  background: #071724;
  overflow: hidden;
  margin: 8px 0 10px 0
}

.modalhb__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: 0.3s ease
}

.modalhb__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.modalhb__btn {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #071724;
  font-weight: 700;
  transition: 0.3s ease;
  text-decoration: none
}

.modalhb__btn:hover {
  transform: translateY(-2px)
}

.modalhb__btn--ghost {
  background: transparent;
  border: 1px solid var(--neutral);
  color: #FFFFFF
}

.modalhb__btn--ghost:hover {
  background: var(--highlight)
}

.modalhb__foot {
  border-top: 1px solid var(--neutral);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

.modalhb__timer {
  color: #E6F0FF;
  font-size: 13px;
  line-height: 18px;
  margin: 0
}

.modalhb__legal {
  color: #9FB3C3;
  font-size: 12px;
  line-height: 16px;
  margin: 0
}

body.modalhb--open {
  overflow: hidden
}

@keyframes modalhbPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}