@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/subset-Inter28pt-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/subset-Inter28pt-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/subset-Inter28pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("/assets/fonts/subset-Orbitron-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("/assets/fonts/subset-Orbitron-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #070a12;
  --panel: #0d1224;
  --text: #e6eaf2;
  --muted: #a7b0c0;
  --primary: #7c5cff;
  --secondary: #00d4ff;
  --accent: #ff3d81;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: radial-gradient(circle at top, #0b1026, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 6px var(--primary));
  }
  50% {
    filter: drop-shadow(0 0 14px var(--secondary));
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 18, 36, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.header__logo {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  color: var(--text);
  animation: glow 4s infinite;
}

.nav {
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(7, 10, 18, 0.98);
  transform: translateX(100%);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.nav__link {
  font-size: 18px;
  color: var(--muted);
  transition: 0.2s;
}

.nav__link:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

.nav__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.nav__download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(124, 92, 255, 0.35);
}

.header__burger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

.hero {
  padding-top: 100px;
  animation: fadeIn 0.6s ease;
}

.section-heading__title {
  font-family: Orbitron;
  font-size: 22px;
  margin-bottom: 24px;
}

.about,
.gameplay,
.graphics,
.advantages,
.gallery,
.reviews,
.faq {
  padding: 60px 0;
}

.gameplay-card,
.advantage-card,
.review-card,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  transition: 0.3s;
}

.gameplay-card:hover,
.advantage-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

button {
  font-family: inherit;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .nav {
    position: static;
    transform: none;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: auto;
  }
  .nav__list {
    flex-direction: row;
    gap: 20px;
  }
  .header__burger {
    display: none;
  }
  .hero {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .section-heading__title {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
  }
  .hero {
    padding-top: 120px;
  }
  .nav__link {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
  .section-heading__title {
    font-size: 34px;
  }
}
.hero {
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeIn 0.6s ease;
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero__title {
  font-family: Orbitron, sans-serif;
  font-size: 26px;
  line-height: 1.2;
}

.hero__text {
  font-size: 14px;
  color: var(--muted);
}

.hero__button {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(124, 92, 255, 0.35);
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about {
  background: linear-gradient(180deg, rgba(13, 18, 36, 0.2), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about__image img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.about__image img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.section-heading {
  margin-bottom: 24px;
  position: relative;
}

.section-heading__title {
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  position: relative;
  display: inline-block;
}

.section-heading__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__text {
    font-size: 15px;
  }
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .section-heading__title {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 140px 0 80px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__text {
    font-size: 16px;
  }
  .about__text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 48px;
  }
  .section-heading__title {
    font-size: 34px;
  }
}
.gameplay {
  padding: 70px 0;
  background: linear-gradient(180deg, transparent, rgba(13, 18, 36, 0.35), transparent);
}

.gameplay__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.gameplay__image img {
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: 0.4s ease;
}

.gameplay__image img:hover {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.gameplay__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gameplay-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.gameplay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.gameplay-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.gameplay-card:hover::before {
  opacity: 1;
}

.gameplay-card__title {
  font-family: Orbitron;
  font-size: 16px;
  margin-bottom: 6px;
}

.gameplay-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.graphics {
  padding: 70px 0;
}

.graphics__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.graphics__item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.graphics__item img {
  transition: 0.4s ease;
}

.graphics__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.graphics__text {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.advantages {
  padding: 70px 0;
  background: radial-gradient(circle at bottom, rgba(124, 92, 255, 0.08), transparent 60%);
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.advantage-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 92, 255, 0.08));
  opacity: 0;
  transition: 0.3s;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card__title {
  font-family: Orbitron;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .gameplay__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .gameplay-card__title {
    font-size: 17px;
  }
  .graphics__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gameplay {
    padding: 90px 0;
  }
  .graphics {
    padding: 90px 0;
  }
  .advantages {
    padding: 90px 0;
  }
  .gameplay-card__text,
  .graphics__text {
    font-size: 15px;
  }
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .gameplay-card__title {
    font-size: 18px;
  }
  .advantage-card__title {
    font-size: 15px;
  }
}
.gallery {
  padding: 80px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery__grid img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: var(--shadow);
}

.gallery__grid img:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.reviews {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(13, 18, 36, 0.2), transparent);
}

.reviews__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.faq {
  padding: 80px 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item__question {
  font-family: Orbitron;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-right: 20px;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--secondary);
  transition: 0.3s;
}

.faq-item.active .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  font-size: 13px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .reviews__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-card__text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .faq-item__question {
    font-size: 15px;
  }
  .faq-item__answer {
    font-size: 14px;
  }
}
.footer {
  padding: 60px 0 30px;
  background: radial-gradient(circle at top, rgba(124, 92, 255, 0.08), transparent 60%), linear-gradient(180deg, rgb(7, 10, 18), rgba(7, 10, 18, 0.98));
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.footer__logo {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text);
  transition: 0.3s ease;
}

.footer__logo:hover {
  color: var(--secondary);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.footer__description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.footer__link {
  font-size: 14px;
  color: var(--muted);
  transition: 0.25s ease;
  position: relative;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.footer__link:hover {
  color: var(--text);
}

.footer__link:hover::after {
  width: 60%;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(167, 176, 192, 0.7);
}

@media (min-width: 768px) {
  .footer__top {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer__links {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 80px 0 40px;
  }
  .footer__logo {
    font-size: 20px;
  }
  .footer__description {
    font-size: 14px;
  }
}
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero__title {
  font-family: Orbitron;
  font-size: 32px;
  margin-bottom: 10px;
}

.page-hero__text {
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact {
  padding: 60px 0 100px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 14px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.contact-form__label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: 0.2s;
}

.contact-form__textarea {
  min-height: 120px;
  resize: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 92, 255, 0.15);
}

.contact-form__button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
}

.contact-info__item h3 {
  font-family: Orbitron;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-info__item p {
  font-size: 13px;
  color: var(--muted);
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup.active {
  display: flex;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.popup__content {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 14px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  animation: pop 0.25s ease;
}

@keyframes pop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.popup__title {
  font-family: Orbitron;
  font-size: 18px;
  margin-bottom: 8px;
}

.popup__text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.popup__button {
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
  .page-hero__title {
    font-size: 42px;
  }
}
.policy {
  padding: 120px 0 80px;
}

.policy__header {
  text-align: center;
  margin-bottom: 40px;
}

.policy__title {
  font-family: Orbitron;
  font-size: 34px;
}

.policy__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.policy__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-block {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.policy-block:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.policy-block h2 {
  font-family: "Orbitron";
  font-size: 16px;
  margin-bottom: 10px;
}

.policy-block p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-block ul {
  margin-top: 10px;
  padding-left: 18px;
}

.policy-block li {
  list-style: disc;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .policy__title {
    font-size: 42px;
  }
  .policy-block {
    padding: 22px;
  }
}
@media (min-width: 1024px) {
  .policy {
    padding: 140px 0 100px;
  }
  .policy-block h2 {
    font-size: 18px;
  }
  .policy-block p,
  .policy-block li {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .policy__title {
    font-size: 48px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 900px;
  background: rgba(13, 18, 36, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 99999;
  animation: cookieIn 0.5s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner__title {
  font-family: Orbitron;
  font-size: 16px;
  margin-bottom: 6px;
}

.cookie-banner__description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.cookie-banner__button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.cookie-banner__button--accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
}

.cookie-banner__button--reject {
  background: transparent;
  color: var(--muted);
}

.cookie-banner__button:hover {
  transform: translateY(-2px);
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-banner__actions {
    flex-direction: row;
  }
}
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  text-align: center;
}

.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.error-404__visual {
  position: relative;
  margin-bottom: 10px;
}

.error-404__code {
  font-family: Orbitron;
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitch 2.5s infinite;
}

.error-404__glow {
  position: absolute;
  inset: 0;
  filter: blur(30px);
  background: radial-gradient(circle, rgba(124, 92, 255, 0.4), transparent 60%);
  z-index: -1;
  animation: pulseGlow 3s infinite;
}

.error-404__title {
  font-family: Orbitron;
  font-size: 22px;
}

.error-404__text {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.error-404__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.error-404__button {
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  transition: 0.25s;
  box-shadow: var(--shadow);
}

.error-404__button:hover {
  transform: translateY(-3px);
}

.error-404__link {
  font-size: 13px;
  color: var(--muted);
  transition: 0.2s;
}

.error-404__link:hover {
  color: var(--secondary);
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 110px;
  }
  .error-404__title {
    font-size: 28px;
  }
  .error-404__text {
    font-size: 15px;
  }
  .error-404__actions {
    flex-direction: row;
    align-items: center;
  }
}