@charset "UTF-8";
:root {
  --fixed-header-height: 108px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  padding-top: calc(var(--fixed-header-height));
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.top-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(180deg, #000000, #0a0a0a);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.9));
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 200;
}
.site-header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  position: relative;
}
.site-header__logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  opacity: 0.6;
}
.site-header__nav {
  display: flex;
  gap: 40px;
}
.site-header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: color 0.25s ease;
}
.site-header__nav a:hover {
  color: #ffffff;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.site-header__nav a:hover::after {
  width: 100%;
}
.site-header__actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--primary {
  background: linear-gradient(180deg, #ffffff, #eaeaea);
  color: #000000;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}
.btn--outline:hover {
  background: #ffffff;
  color: #000000;
}

.burger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #000000, #0a0a0a);
  transform: translateY(-120%);
  transition: transform 0.45s ease;
  z-index: 150;
  padding: 48px 0;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}
.mobile-menu__nav a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.mobile-menu__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.mobile-menu.active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .site-header__nav, .site-header__actions {
    display: none;
  }
  .burger {
    display: flex;
  }
}
body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--fixed-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)), url("/assets/img/hero.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  background: #ffffff;
  margin-bottom: 28px;
}
.hero__title {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero__title span {
  display: block;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 42px;
}
.hero__actions {
  display: flex;
  gap: 18px;
}
@media (max-width: 1200px) {
  .hero .hero__title {
    font-size: 52px;
  }
}
@media (max-width: 992px) {
  .hero .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }
  .hero .hero__title {
    font-size: 44px;
  }
  .hero .hero__actions {
    flex-direction: column;
  }
  .hero .hero__actions .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero .hero {
    padding: 120px 0 80px;
  }
  .hero .hero__badge {
    font-size: 12px;
  }
  .hero .hero__title {
    font-size: 36px;
  }
  .hero .hero__text {
    font-size: 16px;
  }
}

.games {
  position: relative;
  padding: 50px 0;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(255, 255, 255, 0.06), transparent 60%);
}
.games__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.games__title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.games__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  perspective: 1400px;
}

.game-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.game-card:hover {
  transform: translateY(-18px) rotateX(6deg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 255, 255, 0.08);
}
.game-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.95));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.game-card:hover .game-card__bg {
  opacity: 1;
}
.game-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.game-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.game-card:hover .game-card__image img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.15);
}
.game-card__content {
  position: relative;
  padding: 36px;
  transform: translateZ(30px);
}
.game-card__title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.game-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1200px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .games {
    padding: 100px 0;
  }
  .games__title {
    font-size: 40px;
  }
  .games__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .game-card:hover {
    transform: translateY(-10px);
  }
}
.manual {
  padding: 120px 0;
  background: #000;
}
.manual__header {
  max-width: 640px;
  margin-bottom: 70px;
}
.manual__title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.manual__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.manual__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.manual .manual-item {
  max-width: 760px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 28px;
}
.manual .manual-item__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}
.manual .manual-item__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .manual__title {
    font-size: 34px;
  }
  .manual__list {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .manual {
    padding: 90px 0;
  }
  .manual__header {
    margin-bottom: 50px;
  }
  .manual__title {
    font-size: 28px;
  }
  .manual__subtitle {
    font-size: 15px;
  }
  .manual .manual-item {
    padding-left: 20px;
  }
  .manual .manual-item__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .manual {
    padding: 70px 0;
  }
  .manual__title {
    font-size: 24px;
  }
  .manual .manual-item__text {
    font-size: 14px;
  }
}

.faq {
  padding: 120px 0;
  background: #000;
}
.faq__header {
  max-width: 640px;
  margin-bottom: 70px;
}
.faq__title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}
.faq__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.faq .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}
.faq .faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .faq-item__question span {
  width: 14px;
  height: 14px;
  position: relative;
}
.faq .faq-item__question span::before, .faq .faq-item__question span::after {
  content: "";
  position: absolute;
  background: #ffffff;
  transition: transform 0.3s ease;
}
.faq .faq-item__question span::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}
.faq .faq-item__question span::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}
.faq .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq .faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 18px;
}
.faq .faq-item.active {
  border-color: rgba(255, 255, 255, 0.2);
}
.faq .faq-item.active .faq-item__answer {
  max-height: 300px;
}
.faq .faq-item.active .faq-item__question span::after {
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .faq .faq__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .faq .faq {
    padding: 90px 0;
  }
  .faq .faq__title {
    font-size: 30px;
  }
  .faq .faq-item__question {
    padding: 20px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .faq .faq__title {
    font-size: 26px;
  }
  .faq .faq-item__answer p {
    font-size: 14px;
  }
}

.footer {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding: 90px 0;
}
.footer__logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 22px;
}
.footer__legal {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  max-width: 440px;
}
.footer__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 22px;
}
.footer__links {
  position: relative;
}
.footer__links::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.footer__links ul {
  display: grid;
  gap: 14px 32px;
}
.footer__links li {
  position: relative;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer__links a::before {
  content: "—";
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.25s ease;
}
.footer__links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer__links a:hover::before {
  color: #ffffff;
}
.footer__trust .footer__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.footer__trust img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer__trust img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer__age {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__responsibility p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1200px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
@media (max-width: 992px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0;
  }
  .footer__links::before {
    display: none;
  }
  .footer__links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
  .footer__links a {
    justify-content: center;
  }
  .footer__brand, .footer__links, .footer__trust, .footer__responsibility {
    text-align: center;
  }
  .footer__links ul {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer__main {
    padding: 60px 0;
    gap: 40px;
  }
  .footer__logo {
    font-size: 22px;
  }
  .footer__legal, .footer__responsibility p {
    font-size: 13px;
  }
  .footer__links ul {
    gap: 10px 20px;
  }
  .footer__age {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

.auth {
  min-height: calc(100svh - 80px);
  padding: 40px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.auth__box {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.auth__title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.auth__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth__field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 6px;
}
.auth__field label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.auth__field input {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
}
.auth__field input:focus {
  outline: none;
  border-color: #ffffff;
}
.auth__btn {
  margin-top: 10px;
  width: 100%;
}
.auth__switch {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.auth__switch a {
  color: #ffffff;
  font-weight: 600;
}

.auth-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.auth-popup__content {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 40px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.auth-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.responsible {
  padding: 140px 0;
  background: #000;
}
.responsible__header {
  max-width: 720px;
  margin-bottom: 70px;
}
.responsible__title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.responsible__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.responsible__content {
  max-width: 860px;
}
.responsible__content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.responsible__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 42px 0 14px;
}
@media (max-width: 1200px) {
  .responsible {
    padding: 120px 0;
  }
  .responsible__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .responsible {
    padding: 100px 0;
  }
  .responsible__title {
    font-size: 30px;
  }
  .responsible__content p {
    font-size: 14px;
  }
  .responsible__content h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .responsible {
    padding: 80px 0;
  }
  .responsible__title {
    font-size: 26px;
  }
}/*# sourceMappingURL=style.css.map */