
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&family=Orbitron:wght@400;700;900&display=swap');


*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }


:root {
  --bg-0: #06060a;
  --bg-1: #09090b;
  --bg-2: #050506;
  --red: #ff2636;
  --red-soft: #ff6c77;
  --red-deep: #c70718;
  --red-darker: #780812;
  --text: #f7f7f8;
  --text-dim: #d8d8dc;
  --text-muted: #a6a7ad;
  --border-soft: rgba(255, 255, 255, 0.05);
  --red-border: rgba(255, 39, 54, 0.38);
  --red-border-strong: rgba(255, 38, 54, 0.44);
  --container: 1200px;
}


body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #060608 0%, #050506 44%, #09090b 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background: radial-gradient(circle at 70% 8%, rgba(255, 38, 54, 0.18), rgba(255, 38, 54, 0) 24%);
}
body::after {
  background: radial-gradient(circle at 12% 34%, rgba(170, 0, 18, 0.14), rgba(170, 0, 18, 0) 27%);
}


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.page {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 0;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 25px;
  background: linear-gradient(180deg, rgba(5,5,6,0.94), rgba(5,5,6,0.68));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff3042 0%, #65030c 72%);
  box-shadow: 0 0 28px rgba(255, 38, 54, 0.4);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  background: var(--bg-1);
  transform: rotate(38deg);
  transform-origin: center;
}
.brand__mark::before {
  width: 10px;
  height: 56px;
  left: 5px;
  top: -10px;
}
.brand__mark::after {
  width: 28px;
  height: 10px;
  left: 4px;
  top: 14px;
}
.brand__name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.44px;
  color: var(--text);
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__item {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dim);
  padding: 11px 16px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.nav__item:hover { color: var(--text); }
.nav__item.is-active {
  background: rgba(255, 38, 54, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 38, 54, 0.36);
}


.hero {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;

  margin-top: 120px;
}
.hero__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
  min-width: 0;
}

.hero__img{
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--red-soft);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(255, 38, 54, 0));
}
.hero__title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 94px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text);
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
}
.hero__title-accent {
  display: block;
  color: var(--red);
  text-shadow: 0 0 30px rgba(255, 38, 54, 0.36);
}
.hero__lead {
  margin: 0;
  font-size: 18px;
  color: #d5d5da;
  line-height: 1.7;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 210px;
  padding: 18px 28px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.32px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(134deg, #ff3345 0%, #c70718 52%, #780812 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(255, 38, 54, 0.28), inset 0 1px 0 1px rgba(255, 255, 255, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(255, 38, 54, 0.42), inset 0 1px 0 1px rgba(255, 255, 255, 0.3);
}
.btn--primary .btn__icon {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #ececf0;
  border: 1px solid var(--red-border);
  font-weight: 800;
  min-width: 160px;
  justify-content: flex-start;
  padding: 18px 28px;
}
.btn--ghost:hover {
  background: rgba(255, 38, 54, 0.08);
  border-color: rgba(255, 38, 54, 0.6);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 12px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  background: linear-gradient(180deg, rgba(255, 38, 54, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--red-border);
  border-radius: 14px;
}
.benefit__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.benefit__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 3px;
}
.benefit__text {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.hero__art {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 38, 54, 0.28);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 38, 54, 0.35), rgba(255, 38, 54, 0) 36%),
    linear-gradient(140deg, rgba(255, 38, 54, 0.22) 0%, rgba(255, 38, 54, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.016) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.65) 0%, rgba(5,5,6,0) 34%, rgba(5,5,6,0.16) 100%),
    radial-gradient(ellipse at 60% 70%, rgba(255, 38, 54, 0.16), rgba(0,0,0,0) 60%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), 0 0 60px rgba(255, 38, 54, 0.12);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 84% 100%, 0 100%, 0 18%);
}
.hero__art-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(255, 80, 100, 0.18), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(255, 38, 54, 0.4), transparent 35%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 60px);
}
.hero__art-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 80, 100, 0.45), rgba(255, 38, 54, 0) 30%);
  mix-blend-mode: screen;
}
.hero__art-card {
  position: absolute;
  bottom: 24px;
  left: 46%;
  right: 24px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(8, 8, 10, 0.64);
  border: 1px solid var(--red-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.44);
}
.hero__art-card-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1.76px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.hero__art-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}


.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 28px;
}
.section-title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 7.28px;
  text-transform: uppercase;
  color: var(--text);
  flex: 1 1 0;
  min-width: 0;
  word-break: break-word;
}
.section-title .accent { color: var(--red); }
.section-mark {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1.28px;
  color: var(--red);
}


.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}
.game-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 18%, var(--card-accent, rgba(255, 38, 54, 0.4)), transparent 24%),
    linear-gradient(136deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 38, 54, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 38, 54, 0.7);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 38, 54, 0.18);
}
.game-card--runner       { --card-accent: rgba(255, 177, 27, 0.4); }
.game-card--adventure    { --card-accent: rgba(255, 255, 27, 0.4); }
.game-card--skill        { --card-accent: rgba(160, 27, 255, 0.4); }
.game-card--racing       { --card-accent: rgba(27, 190, 255, 0.4); }
.game-card--multiplayer  { --card-accent: rgba(255, 27, 217, 0.4); }
.game-card--sports       { --card-accent: rgba(112, 229, 94, 0.4); }

.game-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: -56px;
}
.game-card__tag {
  display: inline-flex;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 38, 54, 0.16);
  border: 1px solid var(--red-border-strong);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #fff;
}
.game-card__logo {
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(3deg);
}
.game-card__logo img {
  width: 118px;
  height: 118px;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.44);
}
.game-card__body {
  display: flex;
  flex-direction: column;
  gap: 8.42px;
  margin-top: 64px;
}
.game-card__title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 25.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}
.game-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 18.85px;
  color: #d7d7dc;
  max-width: 240px;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 6px;
  width: 100%;
}
.article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--red-border);
}
.article__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  background: rgba(255, 38, 54, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 38, 54, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}
.article__title {
  margin: 0 0 7px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}
.article__text {
  margin: 0;
  font-size: 16px;
  line-height: 25.92px;
  color: var(--text-muted);
}

.why-banner {
  position: relative;
  margin-top: 22px;
  height: 245px;
  border-radius: 24px;
  border: 1px solid rgba(255, 38, 54, 0.34);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 38, 54, 0.18) 0%, rgba(255, 38, 54, 0) 38%),
    radial-gradient(circle at 80% 30%, rgba(255, 38, 54, 0.18), rgba(0,0,0,0) 40%),
    linear-gradient(90deg, rgba(5,5,6,0.86) 0%, rgba(5,5,6,0) 60%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 80px);
  box-shadow: inset 0 -80px 80px rgba(0, 0, 0, 0.55);
}
.why-banner__content {
  position: absolute;
  bottom: 28px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px;
}
.why-banner__title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--text);
}
.why-banner__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}


.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 12px;
  width: 100%;
}
.testimonial {
  position: relative;
  padding: 17px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 38, 54, 0.35);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.testimonial:nth-child(1) { transform: rotate(-2deg); }
.testimonial:nth-child(2) { transform: rotate(1deg); }
.testimonial:nth-child(3) { transform: rotate(-1.5deg); }
.testimonial__stars {
  font-size: 16px;
  letter-spacing: 3.84px;
  color: var(--red);
}
.testimonial__quote-mark {
  position: absolute;
  top: 12px;
  right: 30px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.13);
}
.testimonial__quote {
  margin: 0;
  font-size: 16px;
  line-height: 25.92px;
  color: var(--text-muted);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 11px;
}
.testimonial__avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 29px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 18%),
    linear-gradient(135deg, var(--red) 0%, #191b22 70%);
  box-shadow: 0 0 0 4px rgba(255, 38, 54, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}
.testimonial__name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.testimonial__country {
  font-size: 14px;
  color: var(--text-muted);
}


.cta {
  position: relative;
  padding: 54px 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 24%, rgba(255, 38, 54, 0.18), rgba(255, 38, 54, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 38, 54, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  overflow: hidden;
}
.cta__title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 7.68px;
  text-transform: uppercase;
  color: var(--text);
}
.cta__title-accent { color: var(--red); display: block; }
.cta__text {
  margin: 0;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted);
}


.site-footer {
  background: rgba(5, 5, 6, 0.72);
  border-top: 1px solid rgba(255, 38, 54, 0.28);
  width: 100%;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0 28px;
}
.footer__about {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__lead {
  margin: 0;
  font-size: 16px;
  line-height: 25.92px;
  color: var(--text-muted);
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  overflow: hidden;
  transition: transform 0.18s ease;
}
.footer__social:hover { transform: translateY(-2px); }
.footer__social img { width: 100%; height: 100%; display: block; }

.footer__col-title {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  color: var(--red);
}
.footer__list { display: flex; flex-direction: column; gap: 14px; }
.footer__list li, .footer__list a {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 23.2px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__contact-item:last-child { margin-bottom: 0; }
.footer__contact-icon {
  color: var(--red);
  font-size: 18px;
  line-height: 23.2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.footer__legal a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 19px 0 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}


.cookies {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  margin-inline: auto;
  max-width: 880px;
  padding: 22px 26px;
  border-radius: 20px;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(255, 38, 54, 0.18) 0%, rgba(255, 38, 54, 0) 55%),
    rgba(10, 10, 12, 0.94);
  border: 1px solid var(--red-border);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookies.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookies__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 51, 69, 0.22), rgba(120, 8, 18, 0.22));
  border: 1px solid var(--red-border);
  color: var(--red-soft);
}
.cookies__icon svg { width: 28px; height: 28px; }
.cookies__body { min-width: 0; }
.cookies__title {
  margin: 0 0 6px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text);
}
.cookies__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.cookies__text a {
  color: var(--red-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookies__text a:hover { color: var(--red); }
.cookies__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookies__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.cookies__btn svg { width: 14px; height: 14px; }
.cookies__btn:hover { transform: translateY(-1px); }
.cookies__btn:active { transform: translateY(0); }
.cookies__btn--primary {
  background: linear-gradient(134deg, #ff3345 0%, #c70718 52%, #780812 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 38, 54, 0.3);
}
.cookies__btn--primary:hover {
  box-shadow: 0 14px 36px rgba(255, 38, 54, 0.42);
}
.cookies__btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--red-border);
}
.cookies__btn--ghost:hover {
  background: rgba(255, 38, 54, 0.08);
  border-color: var(--red-border-strong);
}


.legal {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 56px;
  padding-bottom: 80px;
}
.legal__hero {
  position: relative;
  padding: 56px 44px 48px;
  border-radius: 28px;
  border: 1px solid var(--red-border);
  background:
    radial-gradient(circle at 92% -10%, rgba(255, 38, 54, 0.55), rgba(255, 38, 54, 0) 55%),
    linear-gradient(180deg, rgba(40, 6, 12, 0.78) 0%, rgba(8, 6, 10, 0.6) 100%);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 38, 54, 0.08);
}
.legal__title {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
}
.legal__meta {
  margin: 22px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}
.legal__intro {
  margin: 0;
  padding: 4px 4px 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
}
.legal__section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 30px 28px;
  background: linear-gradient(180deg, rgba(255, 38, 54, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--red-border);
  border-radius: 20px;
}
.legal__heading {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text);
}
.legal__heading .accent {
  color: var(--red);
  margin-right: 10px;
}
.legal__subheading {
  margin: 6px 0 -4px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--red-soft);
}
.legal__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-dim);
}
.legal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-dim);
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 38, 54, 0.55);
}
.legal__contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-dim);
}
.legal a {
  color: var(--red-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255, 108, 119, 0.4);
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--text); }


@media (max-width: 1080px) {
  .page { gap: 96px; }
  .hero { flex-direction: column; }
  .hero__art { width: 100%; height: 420px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; gap: 18px; }
  .testimonial:nth-child(n) { transform: none; }
}
@media (max-width: 860px) {
  .cookies {
    grid-template-columns: auto 1fr;
    gap: 16px 18px;
    padding: 20px 22px;
  }
  .cookies__actions {
    grid-column: 1 / -1;
    width: 100%;
  }
  .cookies__btn { flex: 1 1 0; }
}
@media (max-width: 760px) {
  .page { gap: 72px; }
  .container { padding-inline: 18px; }
  .legal { padding-top: 36px; padding-bottom: 56px; gap: 20px; }
  .legal__hero { padding: 36px 22px 32px; border-radius: 22px; }
  .legal__section { padding: 22px 20px; border-radius: 18px; }
  .legal__heading { font-size: 18px; letter-spacing: 1.6px; }
  .legal__intro { font-size: 15.5px; }
  .site-header { padding: 18px 16px 20px; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .benefits { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 36px 24px; }
  .hero__art-card { left: 16px; right: 16px; }
  .section-head { flex-wrap: wrap; }
  .btn { flex: 1 1 100%; min-width: 0; }
  .cookies {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border-radius: 18px;
  }
  .cookies__icon { width: 44px; height: 44px; border-radius: 12px; }
  .cookies__icon svg { width: 24px; height: 24px; }
  .cookies__title { font-size: 16px; letter-spacing: 1.2px; }
  .cookies__text { font-size: 13px; }
  .cookies__actions { flex-direction: column-reverse; gap: 8px; }
  .cookies__btn { width: 100%; padding: 12px 18px; }
}
