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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

:root {
  --bg: #0b0826;
  --panel: rgba(255, 255, 255, 0.12);
  --panel-2: rgba(255, 255, 255, 0.18);
  --stroke: rgba(255, 255, 255, 0.2);
  --stroke-2: rgba(255, 255, 255, 0.3);
  --text: rgba(255, 255, 255, 0.95);
  --muted: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 74px rgba(0, 0, 0, 0.58);
  --radius: 18px;
  --container: 1160px;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(
      1200px 700px at 15% 10%,
      rgba(110, 231, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 15%,
      rgba(167, 139, 250, 0.1),
      transparent 55%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.top-warning {
  width: 100%;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--stroke);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--stroke-2);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn--primary {
  border-color: rgba(110, 231, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(110, 231, 255, 0.18),
    rgba(167, 139, 250, 0.18)
  );
}
.btn.btn--outline {
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 16, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  padding: 16px 0;
}
.site-header .header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-header .header__logo .logo__text {
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.site-header .header__menu {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header .header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header .header__nav a {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.18s ease, color 0.18s ease;
}
.site-header .header__nav a:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}
.site-header .header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.site-header .burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
  position: relative;
}
.site-header .burger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.site-header .burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}
.site-header .burger span:nth-child(1) {
  top: 14px;
}
.site-header .burger span:nth-child(2) {
  top: 21px;
}
.site-header .burger span:nth-child(3) {
  top: 28px;
}
.site-header .burger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-header .burger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header .burger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.site-header .header__backdrop {
  display: none;
}
@media (max-width: 920px) {
  .site-header .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    z-index: 1400;
  }
  .site-header .header__menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--headerH, 72px);
    padding: 16px;
    background: rgba(12, 13, 20, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.22s ease;
  }
  .site-header .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-header .header__nav a {
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }
  .site-header .header__nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .site-header .header__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .site-header .header__actions .btn {
    width: 100%;
    height: 44px;
  }
  .site-header .header__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 1100;
  }
  .site-header.is-open .header__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: calc(100vh - var(--headerH, 72px));
    overflow: auto;
  }
  .site-header.is-open .header__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}
.hero .hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      950px 520px at 18% 18%,
      rgba(0, 229, 255, 0.28),
      transparent 58%
    ),
    radial-gradient(
      850px 520px at 82% 22%,
      rgba(255, 61, 154, 0.26),
      transparent 60%
    ),
    radial-gradient(
      700px 520px at 50% 120%,
      rgba(255, 255, 255, 0.1),
      transparent 60%
    );
}
.hero .hero__bg::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1),
    rgba(255, 61, 154, 0.1)
  );
  opacity: 0.55;
  filter: blur(0px);
}
.hero .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.1;
  transform: translateZ(0);
}
.hero .hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}
.hero .hero__content {
  position: relative;
  z-index: 2;
}
.hero .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.22),
    rgba(255, 61, 154, 0.2)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.hero .hero__title {
  margin-top: 16px;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.8px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(0, 229, 255, 0.95),
    rgba(255, 61, 154, 0.92)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 45px rgba(0, 229, 255, 0.12);
}
.hero .hero__text {
  margin-top: 14px;
  max-width: 64ch;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}
.hero .hero__text strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}
.hero .hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .hero__btn {
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 1px solid var(--stroke);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}
.hero .hero__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
}
.hero .hero__btn:active {
  transform: translateY(0);
}
.hero .hero__btn--primary {
  border-color: rgba(0, 229, 255, 0.45);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.26),
    rgba(255, 61, 154, 0.22)
  );
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}
.hero .hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero .hero__mini {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero .hero__pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}
.hero .hero__visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background: radial-gradient(
      700px 420px at 35% 30%,
      rgba(0, 229, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 75% 25%,
      rgba(255, 61, 154, 0.14),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.hero .hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}
.hero .hero__visual::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 229, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(255, 61, 154, 0.16),
      transparent 58%
    );
  filter: blur(22px);
  opacity: 0.9;
  animation: heroGlow 7s ease-in-out infinite;
  pointer-events: none;
}
.hero .hero__image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.15) contrast(1.06);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.hero .hero__visual:hover .hero__image {
  transform: scale(1.07);
  filter: saturate(1.28) contrast(1.1);
}
@keyframes heroGlow {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(18px, -10px, 0) rotate(10deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@media (max-width: 980px) {
  .hero {
    padding: 58px 0 48px;
  }
  .hero .hero__container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero .hero__visual {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 52px 0 42px;
  }
  .hero .hero__actions {
    gap: 10px;
  }
  .hero .hero__btn {
    width: 100%;
  }
  .hero .hero__visual {
    height: 240px;
  }
}

.overview,
.games,
.game-manual,
.contact-faq {
  padding: 70px 0;
}
@media (max-width: 920px) {
  .overview,
  .games,
  .game-manual,
  .contact-faq {
    padding: 56px 0;
  }
}
@media (max-width: 520px) {
  .overview,
  .games,
  .game-manual,
  .contact-faq {
    padding: 48px 0;
  }
}

.overview .overview__head {
  max-width: 72ch;
}
.overview .overview__title {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
}
.overview .overview__subtitle {
  margin-top: 10px;
  color: var(--muted);
}
.overview .overview__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.overview .overview-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.overview .overview-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
.overview .overview-card .overview-card__title {
  font-size: 16px;
  letter-spacing: 0.1px;
}
.overview .overview-card .overview-card__text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.overview .overview__notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(110, 231, 255, 0.22);
  background: linear-gradient(
    135deg,
    rgba(110, 231, 255, 0.1),
    rgba(167, 139, 250, 0.08)
  );
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}
@media (max-width: 920px) {
  .overview .overview__grid {
    grid-template-columns: 1fr;
  }
}

.games .games__head {
  max-width: 76ch;
  display: grid;
  gap: 10px;
}
.games .games__title {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
}
.games .games__subtitle {
  color: var(--muted);
}
.games .games__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.games .game-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}
.games .game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}
.games .game-card:hover .game-card__image img {
  transform: scale(1.05);
}
.games .game-card .game-card__image {
  height: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.games .game-card .game-card__image img {
  width: 100%;
  height: 100%;
  min-height: ;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}
.games .game-card .game-card__content {
  padding: 16px;
}
.games .game-card .game-card__title {
  font-size: 16px;
}
.games .game-card .game-card__text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
@media (max-width: 1024px) {
  .games .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .games .games__grid {
    grid-template-columns: 1fr;
  }
  .games .game-card .game-card__image {
    height: 200px;
  }
}

.game-manual .game-manual__head {
  max-width: 76ch;
  display: grid;
  gap: 10px;
}
.game-manual .game-manual__title {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
}
.game-manual .game-manual__subtitle {
  color: var(--muted);
}
.game-manual .game-manual__list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.game-manual .manual-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.game-manual .manual-card .manual-card__game {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.1px;
}
.game-manual .manual-card .manual-card__steps {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.game-manual .manual-card .manual-card__steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
}
.game-manual .manual-card .manual-card__steps li span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.game-manual .game-manual__notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.1),
    rgba(110, 231, 255, 0.08)
  );
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}
@media (max-width: 1024px) {
  .game-manual .game-manual__list {
    grid-template-columns: 1fr;
  }
}

.contact-faq .contact-faq__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.contact-faq .contact-faq__info,
.contact-faq .contact-faq__form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  padding: 18px 16px;
}
.contact-faq .contact-faq__title {
  font-size: 20px;
  line-height: 1.2;
}
.contact-faq .contact-faq__text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.contact-faq .faq {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.contact-faq .faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.contact-faq .faq-item.is-open {
  border-color: rgba(110, 231, 255, 0.22);
}
.contact-faq .faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}
.contact-faq .faq-item.is-open .faq-answer {
  max-height: 240px;
  opacity: 1;
  padding: 0 14px 14px;
}
.contact-faq .faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.contact-faq .faq-question span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.2s ease;
}
.contact-faq .faq-question span::before,
.contact-faq .faq-question span::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}
.contact-faq .faq-question span::before {
  width: 10px;
  height: 2px;
}
.contact-faq .faq-question span::after {
  width: 2px;
  height: 10px;
}
.contact-faq .faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  transition: max-height 0.22s ease, opacity 0.22s ease, padding 0.22s ease;
}
.contact-faq .contact-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-faq .contact-details p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}
.contact-faq .contact-details p strong {
  color: rgba(255, 255, 255, 0.92);
}
.contact-faq form {
  margin-top: 14px;
}
.contact-faq .form-group {
  margin-top: 12px;
}
.contact-faq .form-group input,
.contact-faq .form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-faq .form-group input::-moz-placeholder,
.contact-faq .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-faq .form-group input::placeholder,
.contact-faq .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-faq .form-group input:focus,
.contact-faq .form-group textarea:focus {
  border-color: rgba(110, 231, 255, 0.3);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
}
.contact-faq .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-faq .form-btn {
  margin-top: 14px;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(110, 231, 255, 0.18),
    rgba(167, 139, 250, 0.18)
  );
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.contact-faq .form-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}
@media (max-width: 920px) {
  .contact-faq .contact-faq__container {
    grid-template-columns: 1fr;
  }
}

.thankyou-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 1600;
}
.thankyou-popup.is-visible {
  display: flex;
}
.thankyou-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.thankyou-popup .thankyou-popup__content {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 13, 20, 0.92);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  text-align: center;
}
.thankyou-popup .thankyou-popup__content h3 {
  font-size: 20px;
}
.thankyou-popup .thankyou-popup__content p {
  margin-top: 10px;
  color: var(--muted);
}
.thankyou-popup .thankyou-popup__content button {
  margin-top: 14px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}
.thankyou-popup .thankyou-popup__content button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 16, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-footer .site-footer__top {
  padding: 54px 0 26px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 18px;
}
.site-footer .footer-brand__logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.site-footer .footer-brand__text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}
.site-footer .footer-nav h4,
.site-footer .footer-references h4,
.site-footer .footer-responsible h4 {
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}
.site-footer .footer-nav ul {
  display: grid;
  gap: 8px;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 13.5px;
  transition: color 0.18s ease;
}
.site-footer .footer-nav a:hover {
  color: rgba(255, 255, 255, 0.92);
}
.site-footer .footer-references__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.site-footer .footer-references__logos a,
.site-footer .footer-references__logos div {
  width: 56px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.site-footer .footer-references__logos img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}
.site-footer .footer-references__logos .age-badge {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer .footer-responsible p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}
.site-footer .site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
}
.site-footer .site-footer__bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
@media (max-width: 1024px) {
  .site-footer .site-footer__top {
    grid-template-columns: 1fr 1fr;
    padding: 36px 20px 18px;
  }
}
@media (max-width: 640px) {
  .site-footer .site-footer__top {
    grid-template-columns: 1fr;
  }
}

.auth-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px;
}
.auth__card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  text-align: center;
}
.auth__logo {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: var(--text);
}
.auth__title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}
.auth__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.5;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth__switch {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.auth__switch a {
  color: var(--text);
  font-weight: 700;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}
.auth__switch a:hover {
  opacity: 0.75;
}

.form-group {
  width: 100%;
}
.form-group input,
.form-group textarea {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--stroke-2);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.form-group textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #ffffff;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}

.form-btn {
  margin-top: 8px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--stroke-2);
  background: var(--panel-2);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.form-btn:active {
  transform: translateY(0);
}

.thankyou-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  transition: opacity 0.3s ease;
}
.thankyou-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.thankyou-popup.is-visible {
  opacity: 1;
  pointer-events: all;
}
.thankyou-popup__content {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  text-align: center;
}
.thankyou-popup__content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--text);
}
.thankyou-popup__content p {
  font-size: 14px;
  color: var(--muted);
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .auth__card {
    padding: 28px 22px;
  }
  .auth__title {
    font-size: 24px;
  }
  .auth__subtitle {
    font-size: 14px;
  }
}
.responsible {
  padding: 80px 0;
  background: var(--bg);
}
.responsible .container {
  max-width: 920px;
}
.responsible__head {
  margin-bottom: 36px;
  text-align: center;
}
.responsible__title {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--text);
}
.responsible__subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}
.responsible__content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.responsible__content p {
  margin-bottom: 18px;
  color: var(--muted);
}
.responsible__content p strong {
  color: var(--text);
  font-weight: 700;
}
.responsible__content h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  color: var(--text);
}
.responsible__note {
  margin-top: 40px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
}
.responsible__note p {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .responsible {
    padding: 60px 0;
  }
  .responsible__title {
    font-size: 28px;
  }
  .responsible__content {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .responsible {
    padding: 50px 0;
  }
  .responsible__title {
    font-size: 24px;
  }
} /*# sourceMappingURL=style.css.map */
.games {
  padding: 80px 0;
  background: #0d0d2b;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.games__head {
  text-align: center;
  margin-bottom: 50px;
}

.games__title {
  text-align: left;
  font-size: 2.8rem;
  color: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(0, 229, 255, 0.95),
    rgba( 255, 61, 154, 0.92)
  );
  margin-bottom: 10px;
}

.games__subtitle {
  font-size: 1.1rem;
  color: #c1ffbd;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: linear-gradient(145deg, #1a1a40, #0c0c2a);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.game-card__image img {
  width: 100%;
  display: block;
  border-bottom: 1px solid linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(0, 229, 255, 0.95),
    rgba(255, 61, 154, 0.92)
  );
}

.game-card__content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-card__title {
  font-size: 1.5rem;
  color: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(0, 229, 255, 0.95),
    rgba(255, 61, 154, 0.92)
  );
  margin-bottom: 15px;
}

.game-card__text {
  font-size: 1rem;
  color: #d0ffd8;
  margin-bottom: 15px;
  flex-grow: 1;
}

.game-card__info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.game-card__info li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #c1ffbd;
}

.game-card__btn {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(0, 229, 255, 0.95),
    rgba(255, 61, 154, 0.92)
  );
  color: #0d0d2b;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.game-card__btn:hover {
  background: rgba(255, 61, 154, 0.92);
  transform: translateY(-3px);
}