:root {
  --bg-900: #06050a;
  --bg-800: #0d0b12;
  --bg-700: #15121f;
  --bg-elevated: rgba(21, 18, 31, 0.85);
  --accent-primary: #a855f7;
  --accent-secondary: #7c3aed;
  --accent-glow: rgba(168, 85, 247, 0.65);
  --text-primary: #f7f7ff;
  --text-muted: #c4c1dc;
  --text-soft: #9d99ba;
  --border-base: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(168, 85, 247, 0.45);
  --shadow-soft: 0 16px 40px rgba(16, 8, 32, 0.55);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --header-height: 76px;
  --transition-base: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 52%),
    radial-gradient(circle at 75% 35%, rgba(124, 58, 237, 0.16), transparent 55%),
    var(--bg-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  animation: fadeRise 0.9s var(--transition-base) forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.12s;
}

.animate-up.delay-2 {
  animation-delay: 0.22s;
}

.animate-up.delay-3 {
  animation-delay: 0.32s;
}

.animate-up.delay-4 {
  animation-delay: 0.44s;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-primary);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.35);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.45);
}

.btn.outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.25);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  border-color: var(--accent-primary);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.25), inset 0 0 12px rgba(168, 85, 247, 0.4);
}

.btn.ghost {
  background: rgba(168, 85, 247, 0.08);
  color: var(--accent-primary);
  border-color: transparent;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
}

.link-button {
  background: none;
  border: none;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
  transition: color var(--transition-base), text-shadow var(--transition-base);
}

.link-button:hover,
.link-button:focus-visible {
  color: var(--accent-primary);
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 5, 10, 0.78);
  border-bottom: 1px solid var(--border-base);
}

.site-header.is-scrolled {
  background: rgba(6, 5, 10, 0.92);
  box-shadow: 0 8px 24px rgba(12, 5, 24, 0.35);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.brand--text {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: rgba(9, 7, 14, 0.7);
}

.brand__image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}

.site-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-base);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-primary);
}

.burger {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(12, 9, 18, 0.85);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(120px, 16vw, 200px) 0;
  background: none;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 18% 28%, rgba(168, 85, 247, 0.22), transparent 55%);
  z-index: -1;
}

.hero::after {
  background-color: var(--bg-900);
  background-image: url("../images/Hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -2;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  animation: fadeRise 0.9s ease forwards;
  padding: clamp(32px, 6vw, 48px);
  background: rgba(6, 5, 10, 0.65);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.18);
  box-shadow: 0 18px 48px rgba(8, 4, 18, 0.55);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 24px;
  text-shadow: 0 0 22px rgba(168, 85, 247, 0.35);
}

.hero__text {
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__actions .btn {
  min-width: 200px;
}

.hero__illustration {
  display: none;
  margin: 0;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(12, 8, 24, 0.45));
}

.mini-game {
  padding: clamp(80px, 10vw, 120px) 0;
}

.mini-game__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 8vw, 80px);
  background: rgba(13, 11, 18, 0.75);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 56px);
  position: relative;
  overflow: hidden;
  animation: fadeRise 1s ease forwards;
}

.mini-game__layout::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  opacity: 0.45;
  pointer-events: none;
}

.mini-game__intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.mini-game__intro p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.mini-game__tips {
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--text-muted);
}

.mini-game__tips li + li {
  margin-top: 8px;
}

.mini-game__tips li + li {
  margin-top: 8px;
}

.ingredient-board {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.ingredient {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(21, 18, 31, 0.88);
  color: var(--text-primary);
  font-weight: 600;
  cursor: grab;
  transition: transform var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  touch-action: none;
  user-select: none;
  position: relative;
  display: grid;
  gap: 6px;
  text-align: left;
  box-shadow: 0 18px 36px rgba(12, 6, 24, 0.35);
}

.ingredient::after {
  content: attr(data-flavor);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.ingredient:active {
  cursor: grabbing;
}

.ingredient.dragging,
.ingredient:hover,
.ingredient:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: rgba(32, 24, 44, 0.95);
  box-shadow: 0 24px 44px rgba(168, 85, 247, 0.35);
}

.drag-helper {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 60;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(168, 85, 247, 0.45);
  background: rgba(21, 18, 31, 0.92);
  padding: 12px 18px;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.45);
  transform: translate3d(-9999px, -9999px, 0);
}

.mini-game__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.glass-area {
  display: grid;
  gap: 24px;
  align-items: start;
}

.shaker {
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--text-muted);
}

.shaker img {
  width: min(280px, 80vw);
  margin: 0 auto;
}

.dropzone {
  min-height: 220px;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(168, 85, 247, 0.25);
  background: rgba(11, 9, 16, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--text-soft);
  padding: 20px;
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.dropzone.is-active {
  border-color: var(--accent-primary);
  background: rgba(20, 15, 30, 0.85);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

.dropzone--shaker {
  position: relative;
  padding: 24px;
  gap: 14px;
  align-items: stretch;
  justify-content: flex-start;
}

.dropzone--shaker::before,
.dropzone--shaker::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-md) - 8px);
  border: 1px solid rgba(168, 85, 247, 0.18);
  pointer-events: none;
}

.dropzone--shaker::after {
  inset: 18px;
  border: 1px dashed rgba(168, 85, 247, 0.16);
}

.dropzone--shaker.is-shaking {
  animation: shakeMotion 0.7s ease;
}

.dropzone__hint {
  margin: 0;
}

.dropzone__item {
  width: 100%;
  background: rgba(12, 9, 18, 0.92);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 85, 247, 0.28);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(10, 5, 20, 0.35);
  cursor: pointer;
}

.dropzone__item:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.dropzone__index {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.7);
  min-width: 52px;
}

.dropzone__content {
  display: grid;
  gap: 4px;
  text-align: left;
  flex: 1;
}

.dropzone__title {
  font-weight: 600;
  color: var(--text-primary);
}

.dropzone__flavor {
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dropzone__remove {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
}

.mix-result {
  background: rgba(12, 9, 18, 0.78);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--text-soft);
  box-shadow: 0 18px 38px rgba(8, 4, 18, 0.4);
  min-height: 72px;
}

.mix-result strong {
  color: var(--accent-primary);
}

@keyframes shakeMotion {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  20% {
    transform: translate3d(-6px, 0, 0) rotate(-2deg);
  }
  40% {
    transform: translate3d(6px, 0, 0) rotate(2deg);
  }
  60% {
    transform: translate3d(-4px, -1px, 0) rotate(-1deg);
  }
  80% {
    transform: translate3d(4px, 1px, 0) rotate(1deg);
  }
}

.advantages {
  padding: clamp(80px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section-heading__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading__text {
  color: var(--text-soft);
  margin: 0;
}

.advantages__inner {
  display: grid;
  gap: clamp(40px, 5vw, 60px);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.adv-card {
  background: rgba(11, 9, 16, 0.82);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
}

.adv-card__media {
  margin: -28px -28px 24px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  position: relative;
}

.adv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adv-card:hover,
.adv-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.35);
}

.adv-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.adv-card p {
  margin: 0;
  color: var(--text-soft);
}

.adv-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: var(--shadow-soft);
}

.faq {
  padding: clamp(80px, 10vw, 120px) 0;
}

.faq__inner {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion__item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(12, 9, 18, 0.75);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font: inherit;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  position: relative;
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform var(--transition-base);
}

.accordion__item.is-open .accordion__trigger::after {
  transform: rotate(45deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height var(--transition-base);
  color: var(--text-soft);
}

.accordion__item.is-open .accordion__panel {
  padding: 0 24px 20px;
}

.registration {
  padding: clamp(80px, 10vw, 120px) 0 clamp(120px, 14vw, 160px);
}

.registration__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  background: rgba(11, 9, 18, 0.82);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 56px);
  position: relative;
  overflow: hidden;
  animation: fadeRise 1s ease forwards;
}

.registration__inner::before {
  content: "";
  position: absolute;
  inset: auto -45% -45% auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 68%);
  pointer-events: none;
}

.registration__copy {
  position: relative;
  z-index: 1;
}

.registration__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 20px;
}

.registration__copy p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.registration__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: rgba(6, 5, 10, 0.92);
  border-top: 1px solid var(--border-base);
  padding: 48px 0 36px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer__brand {
  max-width: 320px;
}

.footer__title {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--accent-primary);
}

.footer__subtitle {
  margin: 0;
  color: var(--text-soft);
}

.footer__nav {
  display: grid;
  gap: 10px;
}

.footer__bottom {
  text-align: center;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 3, 6, 0.72);
  backdrop-filter: blur(12px);
  padding: 24px;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.is-visible {
  visibility: visible;
  opacity: 1;
}

.cookie-card {
  background: rgba(12, 9, 18, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 420px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cookie-card h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.cookie-card p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 5, 0.76);
  backdrop-filter: blur(10px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  width: min(520px, 100%);
  background: rgba(12, 9, 18, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.modal__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-base);
}

.modal__close:hover,
.modal__close:focus-visible {
  color: var(--accent-primary);
}

.modal__body {
  color: var(--text-soft);
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background:
      linear-gradient(165deg, rgba(6, 5, 10, 0.97) 0%, rgba(14, 9, 24, 0.96) 38%, rgba(26, 12, 46, 0.95) 100%);
    backdrop-filter: blur(16px);
    padding: 32px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    border-left: 1px solid var(--border-base);
    box-shadow: -18px 0 36px rgba(8, 4, 18, 0.55);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .burger {
    display: flex;
  }

  .site-nav a {
    color: var(--text-primary);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: clamp(80px, 14vw, 120px) 0 clamp(64px, 12vw, 96px);
    background:
      linear-gradient(180deg, rgba(6, 5, 10, 0.92) 0%, rgba(6, 5, 10, 0.82) 45%, rgba(6, 5, 10, 0.78) 100%);
  }

  .hero::after {
    content: none;
  }

  .hero::before {
    opacity: 0.7;
  }

  .hero__content {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    gap: 32px;
  }

  .hero__illustration {
    display: block;
    order: -1;
    border-radius: var(--radius-md);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-game__layout,
  .registration__inner {
    padding: 28px;
  }

  .hero__media,
  .adv-image,
  .registration__media {
    border-radius: var(--radius-md);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

