:root {
  --bg: #0e2318;
  --bg2: #122a1e;
  --green: #1a3528;
  --gold: #c8a44a;
  --gold-light: #dbb96a;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.6);
  --white-faint: rgba(255,255,255,0.08);
  --radius: 6px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(14,35,24,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,164,74,0.12);
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-menu-btn .lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}
.nav-menu-btn .lines span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-menu-btn.open .lines span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-menu-btn.open .lines span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open .lines span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.nav-logo svg, .nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* ─── DESKTOP NAV LINKS ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  right: 0;
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  right: 0;
}
.nav-link:focus-visible {
  outline: none;
  color: var(--gold);
}
.nav-link:focus-visible::after { right: 0; }

/* Скрыть бургер на десктопе */
@media (min-width: 901px) {
  .nav-menu-btn { display: none; }
}

/* Tablet — ужимаем расстояния между пунктами */
@media (min-width: 901px) and (max-width: 1200px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 22px; }
  .nav-link { font-size: 11px; letter-spacing: 0.14em; }
}

.btn-primary {
  background: var(--gold);
  color: #0a1a10;
  border: none;
  padding: 10px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ─── MENU OVERLAY ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10,22,15,0.97);
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-left {
  padding: calc(var(--nav-h) + 60px) 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.1;
}
.menu-item:hover { color: var(--gold); }

.menu-socials {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.menu-socials-label { display: none; }
.menu-socials-row { display: contents; }
.menu-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.menu-social-btn span { display: none; }
.menu-social-btn svg { width: 13px; height: 13px; fill: currentColor; }
.menu-social-btn:hover { border-color: var(--gold); color: var(--gold); }

.menu-bottom { margin-top: auto; }
.menu-cta { display: none; }

.menu-right {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.menu-right img,
.menu-right .menu-bg-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.menu-right-arc {
  position: absolute;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── SECTION BASE ─── */
section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  overflow: hidden;
  scroll-margin-top: var(--nav-h);
}

/* ─── ARC DECORATION ─── */
.arc {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── SLIDE COUNTER & FOOTER INFO ─── */
.slide-footer {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}
.slide-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-counter span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.slide-counter .active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}
.slide-info-right {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  line-height: 1.7;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  justify-content: flex-end;
}
.social-icon {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
  pointer-events: all;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HERO ─── */
#hero {
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,35,24,1) 45%, rgba(14,35,24,0.3) 100%);
  z-index: 1;
}
.hero-photo {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-photo-placeholder {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: var(--green);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6.5vw, 90px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ─── О НАС ─── */
#about { background: var(--bg); }
.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,35,24,1) 40%, rgba(14,35,24,0.3) 100%);
  z-index: 1;
}
.about-photo {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  border-radius: 0;
  aspect-ratio: auto;
}
.about-photo-placeholder {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: var(--green);
  opacity: 0.4;
}
.about-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white-dim);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 520px;
}
/* ─── КАК ПРОХОДЯТ ИГРЫ ─── */
#games { background: var(--bg); }
.games-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.games-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.game-card {
  background: rgba(26, 53, 40, 0.55);
  border: 1px solid rgba(200, 164, 74, 0.18);
  border-radius: 60px;
  padding: 14px 36px 14px 14px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.game-card:hover {
  transform: translateX(6px);
  border-color: rgba(200, 164, 74, 0.4);
  background: rgba(26, 53, 40, 0.75);
}
.game-card-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: #0a1a10;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.game-card-body { min-width: 0; }
.game-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.game-card-text {
  font-size: 12px;
  color: var(--white-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── ПОЧЕМУ СТОИТ ПРИЙТИ ─── */
#why { background: var(--bg2); }
.why-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-video-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--green);
}
.why-video-placeholder { width: 100%; height: 100%; background: #1a3528; }
.play-btn-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.play-circle {
  width: 70px; height: 70px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s;
}
.play-circle:hover { border-color: var(--gold); }
.play-circle svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.play-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--white-dim);
}

/* ─── ДОСТИЖЕНИЯ ─── */
#achievements { background: var(--bg); }
.achievements-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stat-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stat-item {
  background: rgba(26, 53, 40, 0.55);
  border: 1px solid rgba(200, 164, 74, 0.18);
  border-radius: 60px;
  padding: 14px 36px 14px 14px;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.stat-item:hover {
  transform: translateX(6px);
  border-color: rgba(200, 164, 74, 0.4);
  background: rgba(26, 53, 40, 0.75);
}
.stat-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #0a1a10;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: lowercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ─── FAQ ─── */
#faq { background: var(--bg2); }
.faq-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-num {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.faq-question.active .faq-num { border-color: var(--gold); }
.faq-chevron {
  margin-left: auto;
  transition: transform 0.3s;
  font-size: 18px;
  color: var(--white-dim);
}
.faq-question.active .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }

/* ─── КОНТАКТЫ ─── */
#contacts { background: var(--bg); min-height: 80vh; }
.contacts-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.contacts-arc {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 700px;
  height: 80vw;
  max-height: 700px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.contacts-info { margin: 40px 0; }
.contact-group { margin-bottom: 28px; }
.contact-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 6px; }
.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--gold); }
.contacts-socials { display: flex; gap: 12px; justify-content: center; margin: 20px 0 24px; }
.contacts-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a1a10;
  border: none;
  padding: 16px 44px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.contacts-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,164,74,0.2);
}
.contacts-cta:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}


/* ─── ENTRANCE ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  section { padding: calc(var(--nav-h) + 24px) 24px 80px; justify-content: start;  }
  .slide-footer { padding: 0 24px; }

  .games-content,
  .why-content,
  .achievements-content,
  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-photo, .hero-photo-placeholder { width: 100%; opacity: 0.75; height: 121%; }
  .hero-sub {margin: 0;}
  .hero-bg { background: linear-gradient(to bottom, rgba(14,35,24,0.65) 30%, rgba(14,35,24,0.1)); }

  .about-photo, .about-photo-placeholder { width: 100%; opacity: 0.65; }
  .about-bg { background: linear-gradient(to bottom, rgba(14,35,24,0.75) 30%, rgba(14,35,24,0.1)); }

  /* ─── MOBILE BURGER MENU ──────────────────────────── */
  .menu-overlay {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #0a1a10 0%, #0e2318 100%);
    opacity: 1;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu-overlay.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .menu-right { display: none; }

  .menu-left {
    padding: calc(var(--nav-h) + 32px) 28px 32px;
    min-height: 100dvh;
    gap: 0;
    justify-content: flex-start;
  }

  /* Пункты меню — компактный размер, stagger-reveal */
  .menu-nav {
    position: static;
    border: none;
    height: unset;
    gap: 0;
    padding: 0;
    margin-bottom: 0;
    background: none;
  }
  .menu-item {
    font-size: clamp(18px, 5.5vw, 28px);
    font-weight: 400;
    width: 100%;
    letter-spacing: 0.03em;
    line-height: 1.1;
    padding: 5px 0;
    min-height: 38px;
    position: relative;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1), color 0.2s ease;
  }
  .menu-overlay.open .menu-item {
    opacity: 1;
    transform: translateX(0);
  }
  .menu-overlay.open .menu-item:nth-child(1) { transition-delay: 0.12s; }
  .menu-overlay.open .menu-item:nth-child(2) { transition-delay: 0.16s; }
  .menu-overlay.open .menu-item:nth-child(3) { transition-delay: 0.20s; }
  .menu-overlay.open .menu-item:nth-child(4) { transition-delay: 0.24s; }
  .menu-overlay.open .menu-item:nth-child(5) { transition-delay: 0.28s; }
  .menu-overlay.open .menu-item:nth-child(6) { transition-delay: 0.32s; }
  .menu-overlay.open .menu-item:nth-child(7) { transition-delay: 0.36s; }

  .menu-item:active { color: var(--gold); }

  /* Bottom-блок: CTA + соцсети появляются последними */
  .menu-bottom {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(200,164,74,0.14);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: 0.42s;
  }
  .menu-overlay.open .menu-bottom {
    opacity: 1;
    transform: translateY(0);
  }

  /* CTA «Позвонить» */
  .menu-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
    background: var(--gold);
    color: #0a1a10;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(200,164,74,0.15);
  }
  .menu-cta:active {
    background: var(--gold-light);
    transform: scale(0.98);
  }
  .menu-cta-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
  }
  .menu-cta-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .menu-cta-top {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.72;
    margin-bottom: 2px;
  }
  .menu-cta-phone {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  /* Соцсети — крупные тапабельные кнопки с подписями */
  .menu-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
  }
  .menu-socials-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
  }
  .menu-socials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .menu-social-btn {
    width: auto;
    height: 52px;
    border-radius: 6px;
    border: 1px solid rgba(200,164,74,0.25);
    background: rgba(255,255,255,0.02);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .menu-social-btn:active {
    background: rgba(200,164,74,0.1);
    border-color: var(--gold);
    color: var(--gold);
  }
  .menu-social-btn svg { width: 16px; height: 16px; }
  .menu-social-btn span {
    display: inline;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Мобильная навигация: бургер слева, лого по центру */
  .nav-links { display: none; }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .nav-logo svg, .nav-logo-img { height: 34px; }
  .hero-title { font-size: 38px; }
}

@media (max-width: 459px) {
  .hero-title { font-size: 8.4vw; }
  .stat-item { padding: 12px 24px 12px 12px; grid-template-columns: 64px 1fr; gap: 16px; border-radius: 50px; }
  .stat-circle { width: 64px; height: 64px; font-size: 20px; }
  .stat-label { font-size: 17px; }
  .game-card { padding: 12px 24px 12px 12px; grid-template-columns: 64px 1fr; gap: 16px; border-radius: 50px; }
  .game-card-icon { width: 64px; height: 64px; font-size: 22px; }
  .game-card-title { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO CTA (кнопка «Оставить заявку»)
   ═══════════════════════════════════════════════════════════ */
.hero-cta {
  margin-top: 28px;
  background: var(--gold);
  color: #0a1a10;
  border: none;
  padding: 16px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,164,74,0.2);
}
.hero-cta:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT WIDGET (плавающий виджет связи)
   ═══════════════════════════════════════════════════════════ */
.contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.contact-widget-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  color: #0a1a10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.contact-widget-toggle:hover { background: var(--gold-light); }
.contact-widget-toggle:active { transform: scale(0.96); }
.contact-widget-toggle:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}
.contact-widget-toggle svg {
  width: 24px; height: 24px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.contact-widget-toggle .icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}
.contact-widget.open .contact-widget-toggle .icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}
.contact-widget.open .contact-widget-toggle .icon-close {
  opacity: 1;
  transform: rotate(0);
}

/* Пульс-анимация для привлечения внимания */
.contact-widget-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.contact-widget.open .contact-widget-toggle::before { animation: none; opacity: 0; }

.contact-widget-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.contact-widget-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 58px;
  display: flex;
  justify-content: center;
}
.contact-widget.open .contact-widget-menu {
  pointer-events: all;
}

.contact-widget-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d2218;
  border: 1px solid rgba(200,164,74,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  /* Старт: кнопка "спрятана" в toggle — сдвинута вниз и сжата */
  opacity: 0;
  transform: translateY(70px) scale(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.contact-widget.open .contact-widget-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.contact-widget-btn:hover {
  background: var(--gold);
  color: #0a1a10;
  border-color: var(--gold);
}
.contact-widget.open .contact-widget-btn:hover {
  transform: translateY(0) scale(1) translateX(-4px);
}
.contact-widget-btn:active {
  background: var(--gold);
  color: #0a1a10;
}
.contact-widget-btn:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}
.contact-widget-btn svg { width: 20px; height: 20px; fill: currentColor; }

/* Tooltip-подсказка при hover */
.contact-widget-btn::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: #0d2218;
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(200,164,74,0.2);
}
.contact-widget-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Stagger появление маленьких кнопок */
/* Stagger «вылет из toggle»: ближайшая кнопка (Telegram, 3-я в DOM — внизу меню) появляется первой,
   самая верхняя (Phone, 1-я в DOM) — последней */
.contact-widget.open .contact-widget-menu li:nth-child(3) .contact-widget-btn { transition-delay: 0.05s, 0.05s, 0s, 0s, 0s; }
.contact-widget.open .contact-widget-menu li:nth-child(2) .contact-widget-btn { transition-delay: 0.13s, 0.13s, 0s, 0s, 0s; }
.contact-widget.open .contact-widget-menu li:nth-child(1) .contact-widget-btn { transition-delay: 0.21s, 0.21s, 0s, 0s, 0s; }

@media (max-width: 600px) {
  .contact-widget { right: 16px; bottom: 16px; }
  .contact-widget-toggle { width: 52px; height: 52px; }
  .contact-widget-btn { width: 44px; height: 44px; }
  .contact-widget-menu li { width: 52px; }
  .contact-widget-btn::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SIGNUP POP-UP (форма записи)
   ═══════════════════════════════════════════════════════════ */
.signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4,12,7,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.signup-overlay.open { opacity: 1; pointer-events: all; }

.signup-modal {
  position: relative;
  background: #0d2218;
  width: 100%;
  max-width: 460px;
  max-height: 92dvh;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 52px 44px 40px;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.signup-modal::-webkit-scrollbar { display: none; }
.signup-overlay.open .signup-modal { transform: translateY(0) scale(1); }

.signup-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.signup-corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid rgba(200,164,74,0.4);
  pointer-events: none;
}
.signup-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.signup-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.signup-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.signup-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.signup-close {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 10;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px; cursor: pointer;
  transition: color 0.2s, transform 0.3s;
  line-height: 1; padding: 6px;
}
.signup-close:hover { color: var(--gold); transform: rotate(90deg); }

.signup-header {
  text-align: center;
  margin-bottom: 8px;
}
.signup-suit {
  display: block;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}
.signup-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.signup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 4px;
}
.signup-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-weight: 600;
}

.signup-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 28px;
  color: rgba(200,164,74,0.5);
}
.signup-sep::before,
.signup-sep::after {
  content: '';
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,164,74,0.35));
}
.signup-sep::after {
  background: linear-gradient(to left, transparent, rgba(200,164,74,0.35));
}
.signup-sep-icon { font-size: 10px; letter-spacing: 0.3em; }

.signup-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.signup-form { margin-bottom: 4px; }
.signup-field { margin-bottom: 22px; }
.signup-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.signup-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.25s;
  letter-spacing: 0.02em;
}
.signup-field input::placeholder { color: rgba(255,255,255,0.3); }
.signup-field input:focus { border-bottom-color: rgba(200,164,74,0.7); }
.signup-field.has-error input { border-bottom-color: rgba(220,90,90,0.7); }
.signup-field-err {
  display: none;
  font-size: 11px;
  color: rgba(220,90,90,0.85);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.signup-field.has-error .signup-field-err { display: block; }

/* Checkbox согласия */
.signup-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 20px;
  cursor: pointer;
  padding: 4px 0;
}
.signup-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.signup-consent-box {
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.signup-consent input[type="checkbox"]:checked + .signup-consent-box {
  background: var(--gold);
  border-color: var(--gold);
}
.signup-consent input[type="checkbox"]:checked + .signup-consent-box::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 1.5px solid #0a1710;
  border-bottom: 1.5px solid #0a1710;
  transform: rotate(-45deg) translate(1px, -1px);
}
.signup-consent input[type="checkbox"]:focus-visible + .signup-consent-box {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.signup-consent.has-error .signup-consent-box { border-color: rgba(220,90,90,0.8); }
.signup-consent-text {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.signup-consent-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,164,74,0.3);
  transition: border-color 0.2s;
}
.signup-consent-text a:hover { border-bottom-color: var(--gold); }

.signup-submit {
  width: 100%;
  background: #ffffff;
  color: #0a1710;
  border: none;
  padding: 17px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.signup-submit:hover:not(:disabled) { background: #ece8df; }
.signup-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #d4d4cf;
}
.signup-submit .signup-spinner {
  display: none;
  width: 13px; height: 13px;
  border: 2px solid rgba(10,23,16,0.25);
  border-top-color: #0a1710;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.signup-submit.loading .signup-spinner { display: block; }
.signup-submit.loading .signup-submit-text { opacity: 0.4; }

.signup-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.signup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 30px 0 10px;
  min-height: 260px;
}
.signup-success.show { display: flex; }
.signup-form-wrap.hidden { display: none; }

.signup-success-suit {
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  animation: popIn 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.signup-success-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.signup-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.signup-success-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
  font-weight: 300;
}

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.signup-modal.shake { animation: signupShake 0.35s ease; }
@keyframes signupShake {
  0%,100% { transform: translateX(0) scale(1); }
  20% { transform: translateX(-6px) scale(1); }
  40% { transform: translateX(6px) scale(1); }
  60% { transform: translateX(-4px) scale(1); }
  80% { transform: translateX(4px) scale(1); }
}

@media (max-width: 520px) {
  .signup-modal { padding: 44px 28px 32px; }
  .signup-corner { width: 22px; height: 22px; top: 10px; left: 10px; }
  .signup-corner.tr { left: auto; right: 10px; }
  .signup-corner.bl { top: auto; bottom: 10px; }
  .signup-corner.br { top: auto; bottom: 10px; left: auto; right: 10px; }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a1b12;
  border-top: 1px solid rgba(200,164,74,0.12);
  padding: 36px 40px 28px;
  position: relative;
  z-index: 2;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a:hover::after { right: 0; }
.footer-links a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  color: var(--gold);
}

@media (max-width: 720px) {
  .site-footer { padding: 28px 24px 24px; }
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links { gap: 20px 24px; }
}