*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #fff;
  background: #000;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
body {
  font-size: 16px;
  min-height: 100vh;
  background: #000;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

:root {
  --bg: #000000;
  --bg-card: #29232f;
  --bg-card-2: #1f1a26;
  --purple: #6b4dfd;
  --purple-glow: #7c5eff;
  --yellow: #dffd4d;
  --yellow-dark: #c5e33a;
  --white: #ffffff;
  --muted: #c6bfd0;
  --line: rgba(255, 255, 255, 0.08);
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  position: relative;
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 14px;
  background: var(--yellow);
  color: #0f0a1a;
  min-height: 52px;
  font-family: inherit;
}
.btn--dark {
  background: var(--bg-card);
  color: #fff;
}
.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
}

.cookie {
  display: none;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 760px;
  width: calc(100% - 32px);
}
.cookie.is-visible {
  display: block;
}
.cookie__title {
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cookie__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.cookie__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cookie__btn {
  padding: 14px 26px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
  font-family: inherit;
}
.cookie__btn--accept {
  background: var(--yellow);
  color: #0f0a1a;
}
.cookie__btn--manage {
  background: var(--bg-card-2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.brand__mark {
  width: 36px;
  height: 36px;
}
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__link {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
  color: var(--yellow);
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
}
.burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}
.burger__bar::before,
.burger__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
}
.burger__bar::before {
  top: -7px;
}
.burger__bar::after {
  top: 7px;
}

.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 24px;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: end;
  padding: 64px 56px 56px;
  min-height: 540px;
}
.hero__copy {
}
.hero__card {
  background: rgba(20, 15, 32, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 40px;
  max-width: 560px;
}
.hero__title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 22px;
}
.hero__lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero__visual img {
  max-height: 560px;
  width: auto;
}

.s-head {
  text-align: center;
  margin-bottom: 46px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.s-head__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.s-head__sub {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 18px;
}
.s-head__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: 0 8px 30px rgba(107, 77, 253, 0.06);
}
.card__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.glow-section {
  position: relative;
  background: radial-gradient(ellipse 90% 70% at 50% 55%, #2b1a5e 0%, #1a0e33 50%, #000 100%);
}
.glow-section--strong {
  position: relative;
  background: radial-gradient(ellipse 95% 75% at 50% 55%, #3c2470 0%, #1f1147 45%, #000 100%);
}

.bg-section{position:relative;padding:80px 0;overflow:hidden}
.bg-section__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.bg-section__inner{position:relative;z-index:1}

.section__sub {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.games-hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.games-hero__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.games-hero__inner{position:relative;z-index:1}
.games-hero__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 50px;
}
.games-hero__title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.games-hero__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.game-tile {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-card);
}
.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gd{position:relative;padding:80px 0;overflow:hidden;min-height:760px}
.gd__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.gd__inner{position:relative;z-index:1}
.gd__play{position:absolute;top:0;right:24px;z-index:3}
.gd__row{display:grid;grid-template-columns:1.05fr .95fr;gap:0;align-items:start;padding-top:80px;position:relative}
.gd__card{background:var(--bg-card);border-radius:20px;padding:48px 46px;max-width:640px;position:relative;z-index:1}
.gd__title{font-size:clamp(34px,4vw,48px);font-weight:800;color:#fff;line-height:1.1;letter-spacing:-0.01em;margin-bottom:24px}
.gd__text{color:var(--muted);font-size:15px;line-height:1.7;margin-bottom:18px}
.gd__visual{display:flex;justify-content:flex-end;align-items:flex-start;position:relative;margin-left:-80px;z-index:2;margin-top:40px}
.gd__visual img{width:100%;max-width:460px;border-radius:18px;box-shadow:0 22px 60px rgba(0,0,0,.45)}

.about-hero {
  padding: 60px 0 80px;
}
.about-hero__inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 600px;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: end;
  padding: 60px 56px;
}
.about-hero__card {
  background: rgba(20, 15, 32, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 42px;
  max-width: 560px;
}
.about-hero__title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
.about-hero__lead {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.about-hero__visual img {
  max-height: 600px;
  width: auto;
}

.legal {
  padding: 60px 0 100px;
}
.legal__title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.legal__body {
  max-width: 980px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal__body h2 {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin: 28px 0 12px;
  letter-spacing: 0.02em;
}
.legal__body p {
  margin-bottom: 12px;
}
.legal__body a {
  color: var(--yellow);
  text-decoration: underline;
}
.legal__body ul {
  padding-left: 0;
  margin-bottom: 12px;
}
.legal__body ul li {
  list-style: none;
  padding: 4px 0;
}

.site-footer {
  background: #000;
  padding: 42px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.site-footer__nav a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.site-footer__nav a:hover {
  color: var(--yellow);
  opacity: 1;
}
.site-footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.site-footer__socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.site-footer__socials a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.site-footer__copy {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    min-height: auto;
  }
  .hero__visual {
    order: -1;
    justify-content: center;
  }
  .hero__visual img {
    max-height: 380px;
  }
  .about-hero__content {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .about-hero__visual {
    order: -1;
  }
  .about-hero__visual img {
    max-height: 380px;
  }
  .gd__row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 60px;
  }
  .gd__visual {
    margin-top: 0;
    margin-left: 0;
    justify-content: center;
  }
  .gd__card {
    padding: 32px 24px;
    max-width: none;
  }
  .gd__play {
    position: static;
    margin-bottom: 24px;
    display: inline-flex;
  }
}
@media (max-width: 720px) {
  .section {
    padding: 60px 0;
  }
  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    flex-direction: column;
    background: #000;
    padding: 60px 24px;
    gap: 48px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    justify-content: center;
    align-items: center;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: 26px;
    letter-spacing: 0.08em;
  }
  .nav__cta {
    margin-top: auto;
    width: 100%;
    max-width: 340px;
  }
  .burger {
    display: inline-flex;
  }
  .games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__nav {
    gap: 22px;
  }
  .site-footer__contact {
    gap: 16px;
    font-size: 13px;
  }
  .cookie {
    padding: 26px 22px;
    top: 14px;
  }
  .cookie__title {
    font-size: 22px;
  }
}
@media (max-width: 420px) {
  .wrap {
    padding: 0 18px;
  }
  .hero__card {
    padding: 28px;
  }
  .about-hero__card {
    padding: 28px;
  }
}

.inline-link{
	text-decoration:underline;
}
