@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --muted: #cccccc;
  --red: #e8192c;
  --red-bright: #ff2d3f;
  --container: min(1200px, calc(100% - 48px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 25, 44, 0.22), transparent 0 24%),
    radial-gradient(circle at 20% 100%, rgba(232, 25, 44, 0.08), transparent 0 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #070707 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.preview-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.preview-switcher__label {
  padding: 0 8px 0 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.preview-switcher__button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

.preview-switcher__button.is-active {
  border-color: rgba(255, 45, 63, 0.38);
  background: linear-gradient(135deg, rgba(232, 25, 44, 0.85), rgba(255, 45, 63, 0.85));
  box-shadow: 0 0 18px rgba(255, 45, 63, 0.22);
}

.site-preview {
  position: relative;
  z-index: 1;
  transition: width 0.25s ease, margin 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.11;
}

.container { width: var(--container); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 45, 63, 0.34);
  border-radius: 999px;
  color: #ffd4d8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.logo__main { color: var(--text); }
.logo__accent {
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(255, 45, 63, 0.36);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.footer__nav a,
.drawer__nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a::after,
.footer__nav a::after,
.drawer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transition: transform 0.2s ease;
}

.nav a:hover,
.footer__nav a:hover,
.drawer__nav a:hover { color: var(--text); }
.nav a:hover::after,
.footer__nav a:hover::after,
.drawer__nav a:hover::after { transform: scaleX(1); }

.burger,
.drawer__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 45;
  width: min(92vw, 340px);
  height: 100vh;
  padding: 24px;
  background: rgba(10, 10, 10, 0.96);
  border-left: 1px solid rgba(255, 45, 63, 0.18);
  box-shadow: -12px 0 44px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.drawer.is-open,
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer.is-open { transform: translateX(0); }
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.drawer__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--red-bright);
}
.drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.drawer__nav { display: grid; gap: 18px; }

.hero {
  position: relative;
  padding: 140px 0 84px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__glow {
  position: absolute;
  top: 12%;
  right: 0;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 63, 0.34) 0%, rgba(255, 45, 63, 0.08) 34%, transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
  gap: 56px;
  align-items: center;
}

.hero__badge { margin-bottom: 22px; }
h1, h2, h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h1 {
  display: grid;
  gap: 8px;
  font-size: clamp(4.2rem, 9vw, 7.9rem);
}
.hero__line--accent {
  color: var(--red-bright);
  text-shadow: 0 0 26px rgba(255, 45, 63, 0.38);
}

.hero__text,
.section-head__text,
.feature-card p,
.workflow__step p,
.faq__list p,
.cta__panel p,
.about__caption,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__text {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero__trust span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d9d9d9;
  font-size: 0.88rem;
  line-height: 1.2;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  box-shadow: 0 0 24px rgba(255, 45, 63, 0.28);
}
.button--primary:hover { box-shadow: 0 0 34px rgba(255, 45, 63, 0.42); }
.button--ghost {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.button--ghost:hover {
  border-color: rgba(255, 45, 63, 0.45);
  box-shadow: 0 0 16px rgba(255, 45, 63, 0.22);
}
.button--xl {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  max-width: 640px;
}
.hero__stats article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 -3px 0 rgba(232, 25, 44, 0.22);
}
.hero__stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--red-bright);
}

.hero__media { display: flex; justify-content: center; }
.hero__media-shell {
  position: relative;
  width: min(100%, 380px);
  padding: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 45, 63, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 0 1px rgba(255, 45, 63, 0.08), 0 0 36px rgba(232, 25, 44, 0.15);
  isolation: isolate;
}
.hero__media-ring {
  position: absolute;
  inset: -12px;
  border-radius: 42px;
  background: radial-gradient(circle, rgba(255, 45, 63, 0.18) 0%, transparent 62%);
  z-index: -1;
  animation: pulse-ring 3.2s ease-in-out infinite;
}
.hero__media-shell img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.35s ease;
}
.hero__media-shell:hover img { transform: scale(1.035); }

.section { position: relative; padding: 100px 0; }
.section-head { max-width: 780px; }
h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.section-head__text {
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.about__panel {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 45, 63, 0.18);
  background: #090909;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}
.about__panel img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.about__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}
.about__overlay,
.about__caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
}
.about__overlay {
  top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about__overlay span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.46);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 45, 63, 0.22);
}
.about__caption {
  bottom: 24px;
  max-width: 560px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.game-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.94), rgba(10, 10, 10, 0.96));
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 63, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 45, 63, 0.12), 0 0 28px rgba(255, 45, 63, 0.16);
}

.game-card--current {
  border-color: rgba(255, 45, 63, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 45, 63, 0.16), 0 0 30px rgba(255, 45, 63, 0.18);
}

.game-card__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.game-card__link {
  color: #ff9ba5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(11, 11, 11, 0.96));
}

.game-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gpu-support {
  padding-top: 46px;
}

.gpu-support__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 9% 11%, rgba(255, 255, 255, 0.08), transparent 0 24%),
    radial-gradient(circle at 0% 100%, rgba(114, 255, 40, 0.1), transparent 0 23%),
    radial-gradient(circle at 100% 100%, rgba(255, 45, 52, 0.12), transparent 0 25%),
    linear-gradient(135deg, rgba(22, 23, 25, 0.82), rgba(5, 5, 6, 0.92));
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07);
  isolation: isolate;
}

.gpu-support__panel::before,
.gpu-support__panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gpu-support__panel::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.24;
}

.gpu-support__panel::after {
  inset: 1px;
  border-radius: 33px;
  padding: 1px;
  background:
    linear-gradient(90deg, rgba(114, 255, 40, 0.14), transparent 17%, transparent 83%, rgba(255, 45, 52, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04));
  opacity: 0.72;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.gpu-support__head,
.gpu-support__grid {
  position: relative;
  z-index: 1;
}

.gpu-support__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 28px;
  margin-bottom: 28px;
}

.gpu-support__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 28px rgba(255, 255, 255, 0.04);
}

.gpu-support__badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #72ff28;
  box-shadow: 0 0 14px #72ff28, 0 0 28px rgba(114, 255, 40, 0.5);
}

.gpu-support__title {
  max-width: 990px;
  margin: 0;
  font-size: clamp(4rem, 7.7vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0.028em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
}

.gpu-title__green {
  color: #72ff28;
  text-shadow: 0 0 24px rgba(114, 255, 40, 0.28), 0 10px 30px rgba(0, 0, 0, 0.75);
}

.gpu-title__red {
  color: #ff2d34;
  text-shadow: 0 0 24px rgba(255, 45, 52, 0.28), 0 10px 30px rgba(0, 0, 0, 0.75);
}

.gpu-support__lead {
  max-width: 970px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.27rem);
  line-height: 1.5;
}

.gpu-support__telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 70px;
  padding: 0 34px;
  margin-top: 58px;
  border: 1px solid rgba(255, 45, 52, 0.88);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 0 38%),
    linear-gradient(135deg, rgba(34, 7, 8, 0.82), rgba(13, 8, 9, 0.92));
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255, 45, 52, 0.18),
    0 0 34px rgba(255, 45, 52, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gpu-support__telegram:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 45, 52, 0.26),
    0 0 48px rgba(255, 45, 52, 0.38),
    0 16px 32px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.gpu-support__telegram svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.22));
}

.gpu-support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gpu-card {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 15, 15, 0.94), rgba(6, 6, 7, 0.97));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 52px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.gpu-card:hover {
  transform: translateY(-5px);
}

.gpu-card::before,
.gpu-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gpu-card::before {
  inset: 0;
  z-index: -2;
  opacity: 0.7;
}

.gpu-card::after {
  inset: 1px;
  border-radius: 23px;
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.gpu-card--nvidia {
  border: 1px solid rgba(114, 255, 40, 0.68);
  box-shadow:
    0 0 0 1px rgba(114, 255, 40, 0.08),
    0 0 44px rgba(114, 255, 40, 0.12),
    inset 0 0 34px rgba(114, 255, 40, 0.035);
}

.gpu-card--nvidia::before {
  background:
    radial-gradient(circle at 0% 100%, rgba(114, 255, 40, 0.36), transparent 0 20%),
    radial-gradient(circle at 100% 0%, rgba(114, 255, 40, 0.18), transparent 0 34%);
}

.gpu-card--nvidia::after {
  background: linear-gradient(145deg, rgba(114, 255, 40, 0.95), transparent 20%, transparent 74%, rgba(114, 255, 40, 0.86));
}

.gpu-card--amd {
  border: 1px solid rgba(255, 45, 52, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 45, 52, 0.08),
    0 0 48px rgba(255, 45, 52, 0.13),
    inset 0 0 34px rgba(255, 45, 52, 0.035);
}

.gpu-card--amd::before {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 45, 52, 0.34), transparent 0 19%),
    radial-gradient(circle at 100% 0%, rgba(255, 45, 52, 0.22), transparent 0 32%);
}

.gpu-card--amd::after {
  background: linear-gradient(145deg, rgba(255, 45, 52, 0.9), transparent 20%, transparent 74%, rgba(255, 45, 52, 0.92));
}

.tech-mark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  filter: drop-shadow(0 0 18px currentColor);
}

.tech-mark--nvidia {
  top: 18px;
  right: -24px;
  width: 310px;
  height: 260px;
  color: #72ff28;
}

.tech-mark--amd {
  top: 0;
  right: -2px;
  width: 260px;
  height: 260px;
  color: #ff2d34;
}

.gpu-card__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 24px;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.gpu-card h3 {
  margin: 0;
  font-size: clamp(3.35rem, 5.1vw, 4.8rem);
  line-height: 0.9;
}

.gpu-card__subtitle {
  display: block;
  margin: 16px 0 14px;
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  font-weight: 900;
  line-height: 1.25;
}

.gpu-card p {
  max-width: 590px;
  margin: 0 0 32px;
  color: #dedede;
  font-size: 1.05rem;
  line-height: 1.58;
}

.gpu-card--nvidia .gpu-card__brand {
  border: 1px solid rgba(114, 255, 40, 0.9);
  color: #72ff28;
  box-shadow: 0 0 18px rgba(114, 255, 40, 0.16);
}

.gpu-card--nvidia .gpu-card__subtitle {
  color: #72ff28;
}

.gpu-card--amd .gpu-card__brand {
  border: 1px solid rgba(255, 45, 52, 0.92);
  color: #ff2d34;
  box-shadow: 0 0 18px rgba(255, 45, 52, 0.17);
}

.gpu-card--amd .gpu-card__subtitle {
  color: #ff2d34;
}

.gpu-card__series {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 38px;
}

.gpu-card__series span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 0 40%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.88), rgba(6, 6, 6, 0.94));
  color: #f4f4f4;
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gpu-card--nvidia .gpu-card__series span {
  border: 1px solid rgba(114, 255, 40, 0.78);
  box-shadow: inset 0 0 18px rgba(114, 255, 40, 0.035);
}

.gpu-card--amd .gpu-card__series span {
  border: 1px solid rgba(255, 45, 52, 0.84);
  box-shadow: inset 0 0 18px rgba(255, 45, 52, 0.035);
}

.gpu-card__series span:hover {
  transform: translateY(-3px);
}

.gpu-card--nvidia .gpu-card__series span:hover {
  box-shadow: 0 0 24px rgba(114, 255, 40, 0.13), inset 0 0 22px rgba(114, 255, 40, 0.05);
}

.gpu-card--amd .gpu-card__series span:hover {
  box-shadow: 0 0 24px rgba(255, 45, 52, 0.16), inset 0 0 22px rgba(255, 45, 52, 0.05);
}

.gpu-card__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: auto;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gpu-card__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e5e5e5;
  font-size: 1rem;
  line-height: 1.35;
}

.gpu-card__info-item + .gpu-card__info-item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 28px;
}

.gpu-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.42);
}

.gpu-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gpu-card--nvidia .gpu-card__icon {
  border: 1px solid rgba(114, 255, 40, 0.65);
  color: #72ff28;
  box-shadow: 0 0 18px rgba(114, 255, 40, 0.11);
}

.gpu-card--amd .gpu-card__icon {
  border: 1px solid rgba(255, 45, 52, 0.7);
  color: #ff2d34;
  box-shadow: 0 0 18px rgba(255, 45, 52, 0.12);
}

.seo-section {
  padding-top: 0;
}

.seo-section__panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top right, rgba(232, 25, 44, 0.18), transparent 44%),
    #111111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.seo-section__panel h2 {
  margin: 0 0 18px;
}

.seo-section__panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.seo-section__lead {
  color: var(--text) !important;
  font-size: 1.05rem;
}

.seo-section__list {
  margin: 0 0 18px;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.seo-section__list li + li {
  margin-top: 8px;
}
.feature-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 2px solid rgba(255, 45, 63, 0.62);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(14, 14, 14, 0.92));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 63, 0.26);
  box-shadow: 0 0 0 1px rgba(255, 45, 63, 0.12), 0 0 34px rgba(255, 45, 63, 0.18);
}
.feature-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 45, 63, 0.24), rgba(255, 45, 63, 0.08));
  font-size: 1.5rem;
}
.feature-card h3,
.workflow__step h3 { font-size: 1.8rem; }
.feature-card p { margin: 12px 0 0; }

.workflow__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
.workflow__line::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 45, 63, 0.22), rgba(255, 45, 63, 0.85), rgba(255, 45, 63, 0.22));
}
.workflow__line::after {
  content: "";
  position: absolute;
  top: 51px;
  left: 10%;
  width: 16%;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 45, 63, 0.95), rgba(255, 45, 63, 0.1));
  filter: blur(2px);
  animation: flow-step 3.2s linear infinite;
}
.workflow__step { position: relative; padding: 0 12px; }
.workflow__number {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--red-bright);
  text-shadow: 0 0 20px rgba(255, 45, 63, 0.26);
}
.workflow__step p {
  margin: 12px 0 0;
  max-width: 300px;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}
.faq__list {
  display: grid;
  gap: 14px;
}
.faq__list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.faq__list summary {
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--red-bright);
}
.faq__list details[open] summary::after { content: "−"; }
.faq__list p { margin: 0; padding: 0 20px 20px; }

.cta { padding-bottom: 120px; }
.cta__panel {
  position: relative;
  overflow: hidden;
  padding: 76px 24px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 45, 63, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 45, 63, 0.16), rgba(255, 45, 63, 0.04)),
    radial-gradient(circle at top, rgba(255, 45, 63, 0.35), rgba(0, 0, 0, 0) 54%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.96), rgba(12, 12, 12, 0.96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  filter: blur(18px) brightness(0.38) saturate(1.05);
  opacity: 0.62;
}

.cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.05) 18%, transparent 36%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.24), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at top, rgba(232, 25, 44, 0.24), transparent 55%);
  pointer-events: none;
}

.cta__panel > * {
  position: relative;
  z-index: 1;
}
.cta__panel p {
  margin: 18px auto 28px;
  max-width: 560px;
  font-size: 1.08rem;
}

.footer { padding: 0 0 46px; }
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 32px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.logo--footer { font-size: 1.8rem; }
.footer__nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}
.footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.preview-tablet .site-preview,
body.preview-phone .site-preview {
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

body.preview-tablet .site-preview {
  width: 820px;
  max-width: calc(100% - 120px);
}

body.preview-phone .site-preview {
  width: 430px;
  max-width: calc(100% - 32px);
}

body.preview-tablet .header,
body.preview-phone .header {
  position: sticky;
}

body.preview-tablet .hero,
body.preview-phone .hero {
  min-height: auto;
}

body.preview-tablet .hero__grid,
body.preview-phone .hero__grid,
body.preview-tablet .faq__layout,
body.preview-phone .faq__layout {
  grid-template-columns: 1fr;
}

body.preview-tablet .hero__media,
body.preview-phone .hero__media {
  justify-content: flex-start;
}

body.preview-tablet .workflow__line,
body.preview-phone .workflow__line {
  grid-template-columns: 1fr;
  gap: 28px;
}

body.preview-tablet .workflow__line::before,
body.preview-tablet .workflow__line::after,
body.preview-phone .workflow__line::before,
body.preview-phone .workflow__line::after {
  display: none;
}

body.preview-tablet .features__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.preview-phone .nav--desktop,
body.preview-tablet .nav--desktop {
  display: none;
}

body.preview-phone .burger,
body.preview-tablet .burger {
  display: inline-block;
}

body.preview-phone .header__inner,
body.preview-tablet .header__inner {
  min-height: 74px;
}

body.preview-phone .hero,
body.preview-tablet .hero {
  padding: 112px 0 72px;
}

body.preview-phone .hero__stats,
body.preview-phone .features__grid {
  grid-template-columns: 1fr;
}

body.preview-tablet .gpu-support__head,
body.preview-phone .gpu-support__head {
  grid-template-columns: 1fr;
}

body.preview-tablet .gpu-support__grid,
body.preview-phone .gpu-support__grid {
  grid-template-columns: 1fr;
}

body.preview-phone .gpu-support__panel {
  padding: 18px;
  border-radius: 24px;
}

body.preview-phone .gpu-card {
  min-height: auto;
  border-radius: 22px;
}

body.preview-phone .gpu-support__telegram {
  width: 100%;
  margin-top: 0;
}

body.preview-phone .gpu-support__title {
  font-size: clamp(3rem, 16vw, 4.2rem);
}

body.preview-phone .gpu-card__series {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.preview-phone .gpu-card__info {
  grid-template-columns: 1fr;
}

body.preview-phone .gpu-card__info-item + .gpu-card__info-item {
  border-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 0;
  padding-top: 16px;
}

body.preview-phone .about__overlay,
body.preview-phone .about__caption,
body.preview-tablet .about__overlay,
body.preview-tablet .about__caption {
  left: 16px;
  right: 16px;
}

body.preview-phone .cta__panel,
body.preview-tablet .cta__panel {
  padding: 60px 18px;
}

body.preview-phone .footer__inner,
body.preview-tablet .footer__inner {
  grid-template-columns: 1fr;
}

body.preview-phone .footer__nav,
body.preview-tablet .footer__nav {
  justify-content: flex-start;
}

body.preview-phone .logo {
  font-size: 1.64rem;
}

body.preview-phone h1 {
  font-size: clamp(3.1rem, 17vw, 4.6rem);
}

body.preview-phone h2 {
  font-size: clamp(2.1rem, 12vw, 3.2rem);
}

body.preview-phone .button,
body.preview-phone .button--xl {
  width: 100%;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(0.98); opacity: 0.65; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes flow-step {
  0% { transform: translateX(0); opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { transform: translateX(430%); opacity: 0; }
}

@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 124px; }
  .hero__grid,
  .faq__layout { grid-template-columns: 1fr; }
  .hero__media { justify-content: flex-start; }
  .features__grid,
  .games__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gpu-support__head {
    grid-template-columns: 1fr;
  }
  .gpu-support__telegram { width: fit-content; margin-top: 0; }
  .gpu-support__grid {
    grid-template-columns: 1fr;
  }
  .workflow__line { grid-template-columns: 1fr; gap: 28px; }
  .workflow__line::before,
  .workflow__line::after { display: none; }
  .game-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root { --container: min(100% - 32px, 1200px); }
  .nav--desktop { display: none; }
  .burger { display: inline-block; }
  .header__inner { min-height: 74px; }
  .hero { padding: 112px 0 72px; }
  .hero__trust { gap: 8px; }
  .hero__trust span { font-size: 0.84rem; }
  .hero__stats,
  .features__grid,
  .games__grid { grid-template-columns: 1fr; }
  .gpu-support {
    padding-top: 24px;
  }
  .gpu-support__panel {
    padding: 20px;
    border-radius: 24px;
  }
  .gpu-support__head {
    gap: 18px;
  }
  .gpu-support__telegram {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    font-size: 0.9rem;
  }
  .gpu-support__title {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }
  .gpu-card {
    min-height: auto;
    border-radius: 22px;
  }
  .gpu-card h3 {
    font-size: clamp(2.7rem, 14vw, 3.6rem);
  }
  .gpu-card p {
    font-size: 0.96rem;
  }
  .gpu-card__series {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
  }
  .gpu-card__series span {
    min-height: 66px;
    font-size: 0.93rem;
  }
  .gpu-card__info {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .gpu-card__info-item + .gpu-card__info-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 16px;
  }
  .tech-mark {
    opacity: 0.16;
    transform: scale(0.78);
    transform-origin: top right;
  }
  .about__overlay,
  .about__caption { left: 16px; right: 16px; }
  .cta__panel { padding: 60px 18px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }
}

@media (max-width: 480px) {
  :root { --container: min(100% - 24px, 1200px); }

  .preview-switcher {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: space-between;
    gap: 6px;
    padding: 8px;
  }

  .preview-switcher__label {
    display: none;
  }

  .preview-switcher__button {
    flex: 1;
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .header__inner {
    min-height: 70px;
  }

  .hero {
    padding: 100px 0 52px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__badge,
  .eyebrow {
    padding: 7px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  h1 {
    gap: 6px;
    font-size: clamp(2.8rem, 15vw, 4rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
  }

  h2 {
    font-size: clamp(2rem, 11.5vw, 3rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
  }

  .hero__text,
  .section-head__text,
  .feature-card p,
  .workflow__step p,
  .faq__list p,
  .cta__panel p,
  .about__caption,
  .footer p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__text {
    margin-top: 16px;
  }

  .hero__actions {
    margin-top: 22px;
    gap: 12px;
  }

  .hero__trust {
    gap: 8px;
    margin-top: 16px;
  }

  .hero__trust span {
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .button,
  .button--xl {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .hero__stats {
    gap: 10px;
    margin-top: 24px;
  }

  .hero__stats article {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .hero__stats strong {
    margin-bottom: 4px;
    font-size: 1.7rem;
  }

  .hero__media-shell {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    border-radius: 24px;
  }

  .hero__media-shell img {
    border-radius: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head__text {
    margin-top: 14px;
  }

  .about__panel {
    margin-top: 24px;
    border-radius: 22px;
  }

  .about__panel img {
    min-height: 280px;
  }

  .about__overlay {
    top: 14px;
    gap: 8px;
  }

  .about__overlay span {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .about__caption {
    bottom: 16px;
    max-width: none;
    font-size: 0.9rem;
  }

  .features__grid {
    margin-top: 24px;
    gap: 14px;
  }

  .games__grid {
    margin-top: 24px;
    gap: 14px;
  }

  .feature-card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .game-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .game-card__name {
    font-size: 1.55rem;
  }

  .feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .feature-card h3,
  .workflow__step h3 {
    font-size: 1.45rem;
    line-height: 0.98;
  }

  .workflow__line {
    margin-top: 28px;
    gap: 24px;
  }

  .workflow__step {
    padding: 0;
  }

  .workflow__number {
    margin-bottom: 10px;
    font-size: 2.5rem;
  }

  .faq__layout {
    gap: 24px;
  }

  .faq__list summary {
    padding: 18px 48px 18px 16px;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .faq__list p {
    padding: 0 16px 18px;
  }

  .cta {
    padding-bottom: 84px;
  }

  .cta__panel {
    padding: 44px 16px;
    border-radius: 24px;
  }

  .cta__panel p {
    margin: 14px auto 22px;
  }

  .game-note {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
  }

  .footer {
    padding-bottom: 88px;
  }

  .footer__inner {
    gap: 14px;
  }
}

body.preview-phone .hero__grid {
  gap: 28px;
}

body.preview-phone .section {
  padding: 64px 0;
}

body.preview-phone .hero__badge,
body.preview-phone .eyebrow {
  padding: 7px 12px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

body.preview-phone h1 {
  gap: 6px;
  font-size: clamp(2.8rem, 15vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

body.preview-phone h2 {
  font-size: clamp(2rem, 11.5vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

body.preview-phone .hero__text,
body.preview-phone .hero__trust span,
body.preview-phone .section-head__text,
body.preview-phone .feature-card p,
body.preview-phone .workflow__step p,
body.preview-phone .faq__list p,
body.preview-phone .cta__panel p,
body.preview-phone .about__caption,
body.preview-phone .footer p {
  font-size: 0.95rem;
  line-height: 1.55;
}

body.preview-phone .hero__trust {
  gap: 8px;
  margin-top: 16px;
}

body.preview-phone .hero__trust span {
  font-size: 0.8rem;
  padding: 8px 10px;
}

body.preview-phone .hero__stats {
  gap: 10px;
  margin-top: 24px;
}

body.preview-phone .hero__stats article {
  padding: 14px 16px;
  border-radius: 16px;
}

body.preview-phone .hero__stats strong {
  margin-bottom: 4px;
  font-size: 1.7rem;
}

body.preview-phone .feature-card {
  padding: 22px 18px 20px;
  border-radius: 18px;
}

body.preview-phone .games__grid {
  grid-template-columns: 1fr;
}

body.preview-phone .game-card {
  padding: 18px 16px;
  border-radius: 18px;
}

body.preview-phone .game-card__name {
  font-size: 1.55rem;
}

body.preview-phone .feature-card h3,
body.preview-phone .workflow__step h3 {
  font-size: 1.45rem;
  line-height: 0.98;
}

body.preview-phone .about__panel {
  margin-top: 24px;
  border-radius: 22px;
}

body.preview-phone .about__panel img {
  min-height: 280px;
}

body.preview-phone .about__overlay {
  top: 14px;
  gap: 8px;
}

body.preview-phone .about__overlay span {
  padding: 8px 12px;
  font-size: 0.82rem;
}

body.preview-phone .cta__panel {
  padding: 44px 16px;
  border-radius: 24px;
}

body.preview-phone .game-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  flex-direction: column;
  align-items: flex-start;
}

.telegram-warning[hidden] { display: none; }

.telegram-warning {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.telegram-warning__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  animation: telegramWarningFade 0.22s ease both;
}

.telegram-warning__dialog {
  position: relative;
  width: min(100%, 470px);
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 45, 63, 0.42);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 45, 63, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(25, 15, 16, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.62), 0 0 42px rgba(255, 45, 63, 0.14);
  animation: telegramWarningIn 0.28s cubic-bezier(.2,.8,.2,1) both;
}

.telegram-warning__dialog::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 45, 63, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 24px rgba(255, 45, 63, 0.03), 0 0 0 48px rgba(255, 45, 63, 0.025);
  pointer-events: none;
}

.telegram-warning__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.telegram-warning__close:hover,
.telegram-warning__close:focus-visible {
  border-color: rgba(255, 45, 63, 0.55);
  background: rgba(255, 45, 63, 0.12);
  color: var(--text);
  outline: none;
}

.telegram-warning__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 45, 63, 0.5);
  border-radius: 16px;
  background: rgba(255, 45, 63, 0.12);
  color: var(--red-bright);
  box-shadow: 0 0 24px rgba(255, 45, 63, 0.18);
}

.telegram-warning__icon svg {
  width: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.telegram-warning__eyebrow {
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.telegram-warning h2 {
  max-width: 100%;
  margin: 10px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.15rem, 6vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.telegram-warning p {
  max-width: 385px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.telegram-warning small {
  display: block;
  margin-top: 14px;
  color: rgba(204, 204, 204, 0.62);
  font-size: 0.78rem;
}

.telegram-warning__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.telegram-warning__actions .button {
  position: relative;
  z-index: 1;
  min-height: 50px;
  padding-inline: 20px;
}

.telegram-warning__cancel {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.telegram-warning__cancel:hover,
.telegram-warning__cancel:focus-visible {
  color: var(--text);
  outline: none;
}

@keyframes telegramWarningFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes telegramWarningIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .telegram-warning {
    padding: 12px;
  }

  .telegram-warning__dialog {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .telegram-warning__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .telegram-warning__actions .button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .telegram-warning__dialog {
    padding: 28px 22px 24px;
  }

  .telegram-warning h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .telegram-warning__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .telegram-warning__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
