@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #010713;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
.container {
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #010713;
  padding: 20px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__icon {
  display: flex;
  align-items: center;
  height: 30px;
}
.logo__icon img {
  height: 30px;
  width: auto;
}
.logo__text {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: color 0.2s;
}
.nav__link:hover { color: #6fdf02; }
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 600px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero__content { flex: 1; min-width: 0; }
.hero__title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 580px;
}
.btn {
  display: inline-block;
  background-color: #6fdf02;
  color: #010713;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 28px 60px;
  box-shadow: 0px 4px 30px 0px rgba(111,223,2,0.6);
  transition: opacity 0.2s;
  line-height: 1;
}
.btn:hover { opacity: 0.85; }
.hero__stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.hero__image {
  flex: 0 0 534px;
  width: 534px;
}
.hero__image img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  border-radius: 20px;
}
.stat-card {
  flex: 1;
  height: 117px;
  background: #010713;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card__number {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-card__label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.section-title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  color: #6fdf02;
}
.edge { padding: 80px 0; }
.edge__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  align-items: center;
}
.edge__left { flex: 1; min-width: 0; }
.edge__title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.edge__intro {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.edge__right {
  flex: 0 0 420px;
  width: 420px;
}
.edge__right img {
  width: 100%;
  object-fit: contain;
}
.edge__cards {
  display: flex;
  gap: 20px;
}
.edge-card {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.edge-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.edge-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edge-card__title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: #6fdf02;
  line-height: 1.2;
}
.edge-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.promo-banner {
  background-color: #6fdf02;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.promo-banner__track {
  display: flex;
  align-items: center;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.promo-banner__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
}
.promo-banner__text {
  font-size: 34px;
  font-weight: 900;
  color: #010713;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
}
.promo-banner__star {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.games {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.games__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.games .container { position: relative; z-index: 1; }
.games__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.games__title {
  font-size: 75px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.games__text {
  text-align: center;
  max-width: 960px;
  margin-bottom: 50px;
}
.games__text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}
.games__text p:last-child { margin-bottom: 0; }
.games__row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}
.games__arrow {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.games__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.game-large {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.game-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.games__small-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.game-thumb {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: block;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-name {
  position: absolute;
  inset: 0;
  background: #6fdf02;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: #010713;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.game-large:hover .game-name,
.game-thumb:hover .game-name {
  opacity: 1;
}
.faq { padding: 80px 0; }
.faq__inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.faq__deco {
  flex: 0 0 180px;
  width: 180px;
}
.faq__deco img { width: 100%; object-fit: contain; }
.faq__deco--right { align-self: center; }
.faq__main { flex: 1; min-width: 0; }
.faq__title {
  font-size: 75px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #6fdf02;
  user-select: none;
}
.faq-item__icon {
  width: 18px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item:not(.open) .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  padding: 0 20px;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 20px 20px;
}
.journey { padding: 80px 0; }
.journey__inner {
  display: flex;
  gap: 30px;
  align-items: center;
}
.journey__title {
  font-size: 75px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  color: #fff;
}
.journey__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}
.journey__content {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.journey__arrow {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  align-self: flex-end;
}
.journey__arrow img { width: 100%; height: 100%; object-fit: contain; }
.journey__right {
  flex: 1;
  min-width: 0;
}
.journey__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.journey__contacts-row {
  display: flex;
  gap: 12px;
}
.journey__contacts-row .contact-item { flex: 1; }
.contact-item {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 18px 20px;
  max-width: 350px;
}
.contact-item span { color: #6fdf02; }
.journey__image { flex: 0 0 420px; width: 420px; }
.journey__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer { padding: 40px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
}
.footer__nav-link {
  font-size: 14px;
  color: #fff;
  transition: color 0.2s;
}
.footer__nav-link:hover { color: #6fdf02; }
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__social-link {
  display: block;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.footer__social-link img {
  width: 50px;
  height: 50px;
}
.footer__copy {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .container { padding: 0 15px; }
  .burger { display: none; }
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: none;
    border-top: none;
    padding: 0;
  }
  .hero { padding: 40px 0; min-height: unset; }
  .hero__inner { flex-direction: column; gap: 20px; }
  .hero__title { font-size: 36px; }
  .hero__desc { max-width: 100%; }
  .hero__image { flex: none; width: 60%; }
  .hero__image img { height: 332px; }
  .hero__stats { gap: 12px; margin-top: 24px; flex-wrap: wrap; }
  .stat-card { flex: 0 0 calc(50% - 6px); height: 106px; }
  .stat-card:last-child { flex: 0 0 100%; }
  .stat-card__number { font-size: 32px; }
  .section-title { font-size: 32px; }
  .edge { padding: 40px 0; }
  .edge__inner { flex-direction: column; }
  .edge__title { font-size: 36px; }
  .edge__right { flex: none; width: 100%; }
  .edge__cards { flex-direction: column; }
  .games { padding: 40px 0; }
  .games__title { font-size: 36px; }
  .games__text { margin-bottom: 30px; }
  .games__row { flex-direction: column; align-items: stretch; gap: 12px; }
  .games__arrow { width: 80px; height: 80px; }
  .games__arrow:first-child { align-self: flex-start; }
  .games__arrow:last-child { align-self: flex-end; }
  .game-large { flex: none; width: 100%; height: auto; aspect-ratio: 1; }
  .games__small-grid { gap: 12px; }
  .faq { padding: 40px 0; }
  .faq__inner { flex-direction: column; gap: 20px; }
  .faq__deco { flex: none; width: 120px; align-self: center; }
  .faq__deco--right { display: none; }
  .faq__title { font-size: 36px; margin-bottom: 24px; }
  .faq-item__question { font-size: 14px; padding: 15px; }
  .faq-item.open .faq-item__answer { padding: 0 15px 15px; }
  .journey { padding: 40px 0; }
  .journey__inner { flex-direction: column; }
  .journey__title { font-size: 36px; }
  .journey__image { flex: none; width: 100%; }
  .journey__image img { height: auto; }
  .journey__content { flex-direction: column; }
  .journey__arrow { width: 70px; height: 70px; align-self: auto; }
  .journey__contacts-row { flex-direction: column; }
  .footer__nav { gap: 8px 16px; }
  .policy-section { padding: 40px 0; }
  .policy__title { font-size: 32px; }
}
.policy-section {
  padding: 60px 0;
}
.policy-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.policy__title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.policy__body {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.policy__body h2 {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-transform: none;
}
.policy__body p {
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0px 4px 30px 0px rgba(111,223,2,0.55); }
  50% { box-shadow: 0px 4px 55px 12px rgba(111,223,2,0.95); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible.d1 { transition-delay: 0.1s; }
.reveal.visible.d2 { transition-delay: 0.2s; }
.reveal.visible.d3 { transition-delay: 0.3s; }
.reveal.visible.d4 { transition-delay: 0.4s; }
.hero__image { animation: float 4.5s ease-in-out infinite; }
.edge__right img { animation: float 5s ease-in-out infinite 0.8s; }
.journey__image img { animation: float 4s ease-in-out infinite 0.4s; }
.faq__deco img { animation: float 6s ease-in-out infinite; }
.btn {
  animation: pulse-glow 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 60px 16px rgba(111,223,2,1);
}
.edge-card {
  transition: transform 0.3s ease, background 0.3s ease;
}
.edge-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
}
.stat-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: #6fdf02;
  box-shadow: 0 0 20px rgba(111,223,2,0.3);
}
.faq-item {
  transition: background 0.3s ease;
}
.faq-item:hover {
  background: rgba(255,255,255,0.16);
}
.contact-item {
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.games__arrow {
  transition: transform 0.3s ease;
}
.games__arrow:hover {
  transform: scale(1.12) rotate(8deg);
}
.journey__arrow {
  transition: transform 0.3s ease;
}
.journey__arrow:hover {
  transform: scale(1.12) rotate(8deg);
}
.logo {
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.footer__social-link {
  transition: transform 0.25s ease;
}
.footer__social-link:hover {
  transform: scale(1.2);
}
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6fdf02;
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }
.footer__nav-link {
  position: relative;
}
.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6fdf02;
  transition: width 0.3s ease;
}
.footer__nav-link:hover::after { width: 100%; }
.game-large,
.game-thumb {
  transition: transform 0.3s ease;
}
.game-large:hover,
.game-thumb:hover {
  transform: scale(1.03);
}
