:root {
  --bg: #05050B;
  --bg2: #070A12;
  --card: rgba(255, 255, 255, .055);
  --card2: rgba(255, 255, 255, .075);
  --border: rgba(255, 255, 255, .14);
  --text: #F2F6FF;
  --muted: rgba(242, 246, 255, .74);
  --muted2: rgba(242, 246, 255, .55);

  --neo-cyan: #00E5FF;
  --neo-magenta: #FF2BD6;
  --neo-lime: #A6FF00;
  --neo-violet: #7C3AED;

  --shadow: 0 22px 70px rgba(0, 0, 0, .62);
  --radius: 16px;
  --radius2: 22px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(255, 43, 214, .18), transparent 60%),
    radial-gradient(900px 520px at 88% 18%, rgba(0, 229, 255, .16), transparent 55%),
    radial-gradient(900px 520px at 60% 92%, rgba(166, 255, 0, .10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

/* subtle cyber grid + scanlines */
body::before {
  content: "";
  position: fixed;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0/ 46px 46px,
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0/ 46px 46px,
    radial-gradient(1200px 600px at 50% -10%, rgba(0, 229, 255, .10), transparent 55%);
  mask-image: radial-gradient(900px 520px at 50% 25%, rgba(0, 0, 0, 1), rgba(0, 0, 0, .15));
  opacity: .35;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg,
      rgba(255, 255, 255, .04) 0px,
      rgba(255, 255, 255, .04) 1px,
      transparent 2px,
      transparent 6px);
  opacity: .07;
  z-index: 0;
}

a {
  color: inherit
}

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

.page {
  min-height: 100%;
  position: relative;
  z-index: 1
}

/* layout helpers */
.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

/* Buttons */
.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  position: relative;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .22)
}

.btn:active {
  transform: translateY(0px)
}

.btn--primary {
  border-color: rgba(0, 229, 255, .35);
  background:
    radial-gradient(120px 60px at 25% 30%, rgba(255, 43, 214, .35), transparent 60%),
    linear-gradient(90deg, rgba(0, 229, 255, .22), rgba(255, 43, 214, .16));
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, .10) inset,
    0 12px 40px rgba(0, 229, 255, .12),
    0 10px 40px rgba(255, 43, 214, .10);
}

.btn--primary:hover {
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, .14) inset,
    0 18px 70px rgba(0, 229, 255, .14),
    0 14px 70px rgba(255, 43, 214, .12);
}

.btn--ghost {
  background: transparent;
}

.btn__icon {
  opacity: .9
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-weight: 700;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 11, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(166, 255, 0, .9), rgba(166, 255, 0, 0) 60%),
    radial-gradient(16px 16px at 70% 65%, rgba(0, 229, 255, .9), rgba(0, 229, 255, 0) 62%),
    linear-gradient(135deg, rgba(255, 43, 214, .55), rgba(124, 58, 237, .25));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10) inset,
    0 14px 50px rgba(0, 229, 255, .10),
    0 14px 50px rgba(255, 43, 214, .10);
}

.brand__name {
  font-weight: 900;
  letter-spacing: .6px
}

.brand__tag {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .10);
}

/* Burger + drawer */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.drawer--open {
  display: block
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86%);
  height: 100%;
  background: rgba(6, 8, 16, .78);
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px
}

.drawer__link {
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-weight: 800;
}

.drawer__link:hover {
  border-color: rgba(0, 229, 255, .24)
}

/* Hero */
.hero {
  padding: 68px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}

.hero__panel {
  border-radius: var(--radius2);
  background:
    radial-gradient(420px 220px at 20% 25%, rgba(0, 229, 255, .16), transparent 65%),
    radial-gradient(420px 220px at 85% 40%, rgba(255, 43, 214, .15), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: conic-gradient(from 220deg, rgba(0, 229, 255, .24), rgba(255, 43, 214, .20), rgba(166, 255, 0, .16), rgba(0, 229, 255, .24));
  filter: blur(30px);
  opacity: .22;
}

.hero__panel>* {
  position: relative
}

.hero__kicker {
  margin: 0 0 14px
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.03;
  letter-spacing: -.6px;
}

.hero__lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero__div {
  /* border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  box-shadow: var(--shadow); */
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__div-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--muted2);
}

.hero__metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

.hero__metric-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px
}

.hero__metric-value {
  font-weight: 900
}

.hero__mini {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.55
}

/* Ticker */
.ticker {
  padding: 18px 0 0;
}

.ticker__bar {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  border-radius: 999px;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: 26px;
  padding: 12px 18px;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .2px;
}

.ticker__item i {
  margin-right: 10px;
  opacity: .85
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* Section */
.section {
  padding: 60px 0;
}

.section--tight {
  padding: 44px 0
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 38px;
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.3px;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.65;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card--soft {
  box-shadow: none
}

.card__icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(0, 229, 255, .55), transparent 70%),
    radial-gradient(18px 18px at 70% 65%, rgba(255, 43, 214, .45), transparent 72%),
    rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 12px;
}

.card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65
}

/* Testimonials */
.testimonials__quote {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.testimonials__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
}

/* FAQ */
.faq__item {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq__a {
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.65;
  display: none;
}

.faq__item--open .faq__a {
  display: block
}

.faq__chev {
  opacity: .85
}

/* CTA */
.cta {
  padding: 48px 0 70px;
}

.cta__box {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(520px 260px at 20% 30%, rgba(166, 255, 0, .12), transparent 60%),
    radial-gradient(520px 260px at 85% 60%, rgba(0, 229, 255, .12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cta__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900
}

.cta__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(5, 5, 11, .55);
  padding: 30px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.footer__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: flex-end;
}

.footer__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
}

.footer__link:hover {
  border-color: rgba(255, 43, 214, .22);
  color: var(--text)
}

/* Legal content */
.legal {
  padding: 44px 0 70px;
}

.legal__box {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 22px;
  box-shadow: var(--shadow);
}

.legal__title {
  margin: 0 0 12px;
  font-size: 22px
}

.legal__text {
  color: var(--muted);
  line-height: 1.75
}

.legal__text h2 {
  margin-top: 20px
}

.legal__text a {
  color: var(--text);
  text-decoration: underline
}

/* Cookie banner */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
}

.cookie--show {
  display: block
}

.cookie__box {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 8, 16, .76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn--danger {
  border-color: rgba(255, 43, 214, .30);
  background: rgba(255, 43, 214, .10);
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.age-gate--open {
  display: block
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.age-gate__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 32px));
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 8, 16, .78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.age-gate__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.age-gate__badge-ico {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(0, 229, 255, .55), transparent 70%),
    radial-gradient(16px 16px at 70% 65%, rgba(255, 43, 214, .45), transparent 72%),
    rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
}

.age-gate__badge-text {
  font-weight: 900
}

.age-gate__title {
  margin: 0 0 8px
}

.age-gate__text {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6
}

.age-gate__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr
  }

  .grid--3 {
    grid-template-columns: 1fr
  }

  .grid--2 {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .burger {
    display: inline-flex
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .footer__links {
    justify-content: flex-start
  }

  .cta__box {
    flex-direction: column;
    align-items: flex-start
  }
}


/* Burger icon lines */
.burger__line {
  width: 18px;
  height: 2px;
  background: rgba(242, 246, 255, .88);
  border-radius: 2px;
  display: block;
  margin: 2px 0;
  box-shadow: 0 0 18px rgba(0, 229, 255, .12);
}

/* Mobile nav dropdown when .is-open is toggled by JS */
@media (max-width: 980px) {
  .nav.is-open {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(6, 8, 16, .86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
    z-index: 70;
  }

  .nav.is-open .nav__cta {
    margin-top: 6px;
  }

  .nav__cta {
    text-decoration: none;
    font-weight: 900;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, .26);
    background: rgba(0, 229, 255, .08);
  }
}


/* Compatibility helpers for pages that still use older internal wrappers */
.section__inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.cookie__inner {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 8, 16, .76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie__link {
  color: var(--text);
  text-decoration: underline;
  font-weight: 800;
}


.nav__cta {
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, .24);
  background: rgba(0, 229, 255, .06);
}

.nav__cta:hover {
  border-color: rgba(255, 43, 214, .26);
  background: rgba(255, 43, 214, .07)
}
.games__items{
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}
.games__item {
  width: 30%;
}
.games__item img{
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.brand img{
  height: 50px;
  width: auto;
}
section.page-hero {
    max-width: 1151px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 15px 0;
}
main.main {
    display: flex;
 height: 100%;
    flex-direction: column;
}
.form__row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: column;
}
.form__input {
    padding: 14px 10px;
    border: 0;
    color: #fff;
    background-color: transparent;
    border-bottom: 2px solid #fff;
}
.section{
  flex: 1;
}
.contact-card {
    margin-bottom: 17px;
    display: flex;
    gap: 10px;
}
.section__inner ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width:768px) {
  .games__item {
  width: 100%;
}
main.main {
    display: flex;
    height: auto;
    flex-direction: column;
}
}