:root {
  color-scheme: dark;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 15% -10%, rgba(0, 179, 255, 0.12), transparent 60%), radial-gradient(900px 500px at 95% 0%, rgba(255, 46, 99, 0.1), transparent 55%), #07060f;
  background-attachment: fixed;
  color: #f2f0f7;
  font: 16px/1.75 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(255, 46, 99, 0.3);
}
:focus-visible {
  outline: 2px solid #ff2e63;
  outline-offset: 3px;
  border-radius: 4px;
}
a {
  color: #ff2e63;
  text-decoration-color: rgba(255, 46, 99, 0.4);
  text-underline-offset: 0.2em;
  transition: color 0.15s cubic-bezier(0.22, 0.61, 0.36, 1), text-decoration-color 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
}
a:hover {
  color: #ff5781;
  text-decoration-color: currentColor;
}
h1,
h2,
h3 {
  color: #f2f0f7;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
h1 {
  font-size: clamp(2rem, 3.65rem, 2.9rem);
  margin: 0 0 1.5rem;
  font-weight: 750;
}
h2 {
  font-size: clamp(1.3rem, 1.85rem, 1.75rem);
  margin: 4rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid;
  border-image: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%) 1;
  font-weight: 700;
}
h3 {
  font-size: clamp(1.05rem, 1.28rem, 1.22rem);
  margin: 2.5rem 0 0.75rem;
  font-weight: 650;
}
h2:first-child,
h3:first-child {
  margin-top: 0;
}
p,
li {
  color: #cfc9de;
}
p {
  margin: 0 0 1.5rem;
}
ul,
ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}
li {
  margin: 0.5rem 0;
  padding-left: 0.25rem;
}
li::marker {
  color: #ff2e63;
}
strong {
  color: #f2f0f7;
  font-weight: 650;
}
dl {
  margin: 0 0 1.5rem;
}
dt {
  font-weight: 650;
  color: #f2f0f7;
  margin-top: 1.5rem;
}
dd {
  margin: 0.25rem 0 0;
  color: #8d86a8;
}
hr {
  border: 0;
  border-top: 1px solid #1d1834;
  margin: 3rem 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px -6px #ff2e63;
  }
  50% {
    box-shadow: 0 0 34px -2px #00b3ff;
  }
}
@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes sweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.neon-text {
  color: #f2f0f7;
  text-shadow: 0 0 12px rgba(255, 46, 99, 0.55), 0 0 42px rgba(0, 179, 255, 0.35);
}
.panel {
  position: relative;
  padding: 2rem 2rem;
  border-radius: 1.6rem;
  border: 1px solid #2a2244;
  background: linear-gradient(165deg, rgba(18, 15, 34, 0.92), rgba(13, 11, 26, 0.92));
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.9);
}
.panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 46, 99, 0.45), transparent 35%, transparent 65%, rgba(0, 179, 255, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.panel h2 {
  margin-top: 0;
  border-left: 0;
  padding-left: 0;
}
.panel h3 {
  margin-top: 2rem;
}
.page__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #8d86a8;
  max-width: 66ch;
  margin-bottom: 2rem;
}
.page,
.panel,
.card,
.countdown {
  animation: fade-up 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.card:nth-child(2) {
  animation-delay: 0.04s;
}
.card:nth-child(3) {
  animation-delay: 0.08s;
}
.card:nth-child(4) {
  animation-delay: 0.12s;
}
.divider {
  height: 1px;
  border: 0;
  margin: 3rem 0;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 99, 0.5), transparent);
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
html.js [data-reveal="left"] {
  transform: translateX(-32px);
}
html.js [data-reveal="right"] {
  transform: translateX(32px);
}
html.js [data-reveal="zoom"] {
  transform: scale(0.9);
}
html.js [data-reveal="fade"] {
  transform: none;
}
html.js [data-reveal-delay="1"] {
  transition-delay: 0.09s;
}
html.js [data-reveal-delay="2"] {
  transition-delay: 0.18s;
}
html.js [data-reveal-delay="3"] {
  transition-delay: 0.27s;
}
html.js [data-reveal-delay="4"] {
  transition-delay: 0.36s;
}
html.js [data-reveal-delay="5"] {
  transition-delay: 0.45s;
}
html.js [data-reveal-delay="6"] {
  transition-delay: 0.54s;
}
[data-parallax] {
  will-change: transform;
}
.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.35;
}
.hero-banner {
  position: relative;
  min-height: clamp(18rem, 42vw, 30rem);
  margin: 0 0 2.5rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid #2a2244;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.9);
  isolation: isolate;
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-banner:hover img {
  transform: scale(1.12);
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
  min-height: inherit;
  padding: 1.75rem;
}
.hero-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffb347;
}
.hero-banner__title {
  margin: 0;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", system-ui, sans-serif;
  font-size: clamp(2rem, 6rem, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 46, 99, 0.7), 0 2px 0 rgba(0, 179, 255, 0.6);
}
.hero-banner__text {
  max-width: 52ch;
  margin: 0;
  color: #cfc9de;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 6, 15, 0.2) 0%, rgba(7, 6, 15, 0.78) 62%, rgba(7, 6, 15, 0.96) 100%);
}
.scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.35;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 3px);
}
.ticker {
  position: relative;
  margin: 2.5rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid #2a2244;
  border-bottom: 1px solid #2a2244;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 46, 99, 0.1), transparent 30%, transparent 70%, rgba(0, 179, 255, 0.1));
}
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-move 26s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8d86a8;
  white-space: nowrap;
}
.ticker__item::before {
  content: "◆";
  color: #ff2e63;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
@keyframes ticker-move {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.zoom {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #2a2244;
}
.zoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zoom:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
}
.shine {
  position: relative;
  display: inline-block;
  background: linear-gradient(100deg, #f2f0f7 20%, #ff2e63 45%, #00b3ff 70%, #f2f0f7 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-sweep 6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes shine-sweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .ticker__track,
  .hero-banner:hover img,
  .shine {
    animation: none !important;
    transform: none !important;
  }
}
.wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #191430;
  color: #f2f0f7;
  padding: 0.6rem 1rem;
  border-radius: 0.65rem;
  z-index: 40;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.9);
}
main {
  padding: 3rem 0 5.5rem;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  box-shadow: 0 0 28px -4px rgba(255, 46, 99, 0.65);
}
.site-footer {
  position: relative;
  border-top: 1px solid #1d1834;
  background: radial-gradient(900px 300px at 10% 0%, rgba(255, 46, 99, 0.12), transparent 65%), radial-gradient(900px 300px at 90% 0%, rgba(0, 179, 255, 0.12), transparent 65%), #0d0b1a;
  padding: 4rem 0 2.5rem;
  font-size: 0.88rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
}
.site-footer .wrap {
  display: grid;
  gap: 3rem;
}
.site-footer__title {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff2e63;
}
.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__list li {
  margin: 0;
}
.site-footer__list a {
  color: #8d86a8;
  text-decoration: none;
}
.site-footer__list a:hover {
  color: #00b3ff;
}
.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid #1d1834;
}
.site-footer__bottom p {
  margin: 0 0 0.75rem;
  color: #8d86a8;
}
.site-footer__disclaimer {
  max-width: 74ch;
  line-height: 1.7;
}
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.site-footer__meta a {
  color: #8d86a8;
  text-decoration: none;
}
.site-footer__meta a:hover {
  color: #ff2e63;
}
@media (min-width: 52rem) {
  .site-footer .wrap {
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas: "socials nav" "bottom bottom";
  }
  .site-footer__socials {
    grid-area: socials;
  }
  .site-footer__nav {
    grid-area: nav;
  }
  .site-footer__bottom {
    grid-area: bottom;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 46, 99, 0.55);
  background: linear-gradient(120deg, rgba(255, 46, 99, 0.14), rgba(0, 179, 255, 0.1));
  color: #f2f0f7;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: box-shadow 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  color: #fff;
  box-shadow: 0 0 28px -4px rgba(255, 46, 99, 0.65);
}
.badge {
  display: inline-block;
  min-width: 1.7rem;
  padding: 0.05rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  vertical-align: middle;
}
.section-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0.5rem;
}
.brand {
  position: relative;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border-radius: 1.6rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand:hover {
  border-color: rgba(255, 46, 99, 0.3);
  background: linear-gradient(120deg, rgba(255, 46, 99, 0.1), transparent 55%, rgba(0, 179, 255, 0.1));
}
.brand__mark {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.05rem;
  background: radial-gradient(120% 120% at 30% 0%, rgba(176, 38, 255, 0.3), transparent 62%), linear-gradient(155deg, #1a1230, #09070f 72%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 18px 44px -18px rgba(0, 0, 0, 0.9), 0 20px 44px -22px #ff2e63;
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  isolation: isolate;
}
.brand__glyph {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  overflow: visible;
  filter: drop-shadow(0 0 7px rgba(255, 46, 99, 0.6));
}
.brand__ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, #ff2e63, #b026ff, #00b3ff, #ffb347, #ff2e63);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: brand-spin 9s linear infinite;
  pointer-events: none;
}
.brand__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.brand__shine::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -140%;
  width: 55%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(16deg);
  transition: left 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand:hover .brand__shine::after {
  left: 165%;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.1;
  min-width: 0;
}
.brand__name {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand__name-core {
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 1.45em;
  line-height: 0.86;
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #fff 0%, #ff2e63 44%, #b026ff 72%, #00b3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(255, 46, 99, 0.45));
}
.brand__name-tld {
  font-size: 0.66em;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #00b3ff;
  text-shadow: 0 0 16px rgba(0, 179, 255, 0.6);
  transition: color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), text-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8d86a8;
}
.brand__tag::before {
  content: "";
  flex: none;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #ff2e63;
  box-shadow: 0 0 10px rgba(255, 46, 99, 0.9);
  animation: brand-dot 2.8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.brand:hover .brand__mark {
  transform: rotate(3deg) scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 34px 80px -36px #000000, 0 24px 54px -20px #00b3ff;
}
.brand:hover .brand__ring {
  animation-duration: 2.6s;
}
.brand:hover .brand__name-tld {
  color: #ffb347;
  text-shadow: 0 0 18px rgba(255, 179, 71, 0.7);
}
@keyframes brand-spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes brand-dot {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 70rem) {
  .brand {
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  }
  .brand__mark {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
  }
  .brand__name {
    font-size: 1.25rem;
  }
  .brand__tag {
    font-size: 0.64rem;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 6, 15, 0.9);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid #2a2244;
  overflow: hidden;
}
.site-header__glow {
  position: absolute;
  inset: -60% -10% auto -10%;
  height: 220%;
  pointer-events: none;
  background: radial-gradient(400px 160px at 15% 40%, rgba(255, 46, 99, 0.28), transparent 70%), radial-gradient(400px 160px at 85% 40%, rgba(0, 179, 255, 0.28), transparent 70%);
  filter: blur(30px);
  opacity: 0.7;
  animation: header-drift 14s cubic-bezier(0.22, 0.61, 0.36, 1) infinite alternate;
}
.site-header__top {
  position: relative;
  border-bottom: 1px solid #1d1834;
}
.site-header__top .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.site-header__main {
  position: relative;
}
.site-header__main .wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 70rem) {
  .site-header__main .wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
}
.site-header__bottom {
  position: relative;
  border-top: 1px solid #1d1834;
  background: linear-gradient(90deg, rgba(255, 46, 99, 0.12), transparent 45%, rgba(0, 179, 255, 0.12));
}
.site-header__bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.78rem;
}
.site-header__countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8d86a8;
}
.site-header__date {
  color: #f2f0f7;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-shadow: 0 0 16px rgba(255, 46, 99, 0.7);
}
@keyframes header-drift {
  from {
    transform: translate3d(-4%, 0, 0);
  }
  to {
    transform: translate3d(4%, 0, 0);
  }
}
.legal-link {
  color: #8d86a8;
  text-decoration: none;
}
.legal-link:hover {
  color: #00b3ff;
}
.lang-switch {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.76rem;
}
.lang-switch__label {
  color: #8d86a8;
  margin-right: 0.5rem;
}
.lang-switch .lang {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: #8d86a8;
  border: 1px solid transparent;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
}
.lang-switch .lang:hover {
  color: #f2f0f7;
  border-color: rgba(0, 179, 255, 0.6);
  background: rgba(0, 179, 255, 0.12);
}
.lang-switch .lang.is-active {
  color: #fff;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  font-weight: 700;
  box-shadow: 0 0 28px -4px rgba(255, 46, 99, 0.65);
}
.site-nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem 0.3rem;
  min-width: 0;
  font-size: 0.82rem;
}
.site-nav .nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.26rem 0.45rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: #8d86a8;
  white-space: nowrap;
  line-height: 1.5;
  transition: color 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-nav .nav__link .nav__icon {
  flex: none;
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-nav .nav__link:hover .nav__icon {
  opacity: 1;
  color: #ff2e63;
  transform: scale(1.15) rotate(-4deg);
}
.site-nav .nav__link[aria-current="page"] .nav__icon {
  opacity: 1;
  color: #ffb347;
}
.site-nav .nav__link::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.05rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-nav .nav__link:hover {
  color: #f2f0f7;
  background: rgba(18, 15, 34, 0.85);
}
.site-nav .nav__link:hover::after,
.site-nav .nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}
.site-nav .nav__link[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 46, 99, 0.8);
}
.socials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.75rem;
}
.social {
  --social-color: #ff2e63;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid #2a2244;
  background: linear-gradient(150deg, rgba(18, 15, 34, 0.9), rgba(13, 11, 26, 0.9));
  color: #8d86a8;
  text-decoration: none;
  font-size: 0.84rem;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.social__icon {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.social__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social::before {
  content: "";
  position: absolute;
  inset: auto auto -60% -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0), transparent 60%);
  background-color: transparent;
  transition: background-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.social:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: var(--social-color);
  box-shadow: 0 12px 34px -14px var(--social-color);
}
.social:hover .social__icon {
  color: var(--social-color);
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 0 8px var(--social-color));
}
.social:hover::before {
  background-color: rgba(255, 255, 255, 0.06);
}
.breadcrumbs {
  font-size: 0.84rem;
  color: #8d86a8;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.breadcrumbs a {
  color: #8d86a8;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #ff2e63;
}
.page__meta {
  font-size: 0.84rem;
  color: #8d86a8;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1d1834;
}
.page__date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff2e63;
  margin-bottom: 0.75rem;
}
.page__source {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1d1834;
  font-size: 0.86rem;
  color: #8d86a8;
}
.faq {
  margin-top: 3rem;
}
.faq .faq__item {
  border: 1px solid #2a2244;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin: 0.75rem 0;
  background: rgba(18, 15, 34, 0.7);
  transition: border-color 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq .faq__item[open] {
  border-color: rgba(255, 46, 99, 0.45);
  background: #120f22;
  box-shadow: 0 12px 34px -22px #ff2e63;
}
.faq .faq__item:hover {
  border-color: rgba(255, 46, 99, 0.35);
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: #f2f0f7;
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  line-height: 1.6;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::before {
  content: "+";
  flex: none;
  width: 1.1rem;
  color: #ff2e63;
  font-weight: 700;
}
.faq details[open] summary::before {
  content: "–";
}
.faq p {
  margin: 1rem 0 0.25rem 1.8rem;
  color: #8d86a8;
}
.page dl {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.page dt {
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid #1d1834;
}
.page dt:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.92rem;
}
.page table th,
.page table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1d1834;
  vertical-align: top;
}
.page table th {
  color: #f2f0f7;
  font-weight: 650;
  background: rgba(18, 15, 34, 0.6);
}
.page table td {
  color: #cfc9de;
}
.trailer {
  position: relative;
  display: grid;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem;
  border-radius: 2.25rem;
  border: 1px solid #2a2244;
  background: radial-gradient(620px 260px at 10% 0%, rgba(255, 46, 99, 0.16), transparent 72%), linear-gradient(160deg, rgba(18, 15, 34, 0.95), rgba(13, 11, 26, 0.95));
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.trailer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
}
@media (min-width: 62rem) {
  .trailer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
  }
}
.trailer__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.trailer h2 {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-size: clamp(1.3rem, 1.95rem, 1.75rem);
}
.trailer__text {
  max-width: 46ch;
  margin: 0 0 2rem;
  color: #8d86a8;
}
.trailer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}
.trailer__media {
  min-width: 0;
}
.trailer__frame {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 46, 99, 0.28);
  background: #191430;
  box-shadow: 0 28px 64px -32px #ff2e63;
}
.trailer__frame.is-playing {
  border-color: rgba(255, 46, 99, 0.55);
  box-shadow: 0 24px 70px -30px #ff2e63;
}
.trailer__poster,
.trailer__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer__poster {
  object-fit: cover;
  filter: saturate(0.9) brightness(0.68);
}
.trailer__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  cursor: pointer;
  color: #f2f0f7;
  font: inherit;
  font-weight: 650;
  font-size: 0.88rem;
  background: radial-gradient(360px 180px at 50% 50%, rgba(255, 46, 99, 0.3), transparent 72%);
}
.trailer__play-icon {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  padding-left: 0.25rem;
  border-radius: 50%;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  box-shadow: 0 0 0 9px rgba(255, 46, 99, 0.12), 0 18px 44px -16px #ff2e63;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trailer__play:hover .trailer__play-icon {
  transform: scale(1.09);
  box-shadow: 0 0 0 15px rgba(255, 46, 99, 0.16), 0 22px 54px -14px #ff2e63;
}
.trailer__play-label {
  text-shadow: 0 2px 14px rgba(7, 6, 15, 0.95);
}
.trailer__note {
  max-width: 32rem;
  margin: 1rem auto 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #8d86a8;
  text-align: center;
}
.purchase {
  margin: 4rem 0;
  padding: 2.5rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(0, 179, 255, 0.35);
  background: radial-gradient(600px 200px at 15% 0%, rgba(0, 179, 255, 0.16), transparent 70%), linear-gradient(160deg, #120f22, #0d0b1a);
}
.purchase h2 {
  margin-top: 0;
  padding: 0;
  border: 0;
}
.purchase__list {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  color: #cfc9de;
}
.purchase__list li {
  margin: 0.5rem 0;
}
.purchase__list li::marker {
  color: #00b3ff;
}
.purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.purchase__note {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: #8d86a8;
}
.notice {
  position: relative;
  border-bottom: 1px solid rgba(255, 179, 71, 0.35);
  background: radial-gradient(700px 160px at 12% 0%, rgba(255, 179, 71, 0.22), transparent 70%), radial-gradient(700px 160px at 88% 100%, rgba(255, 46, 99, 0.2), transparent 70%), rgba(18, 15, 34, 0.92);
}
.notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.notice__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  color: #07060f;
  background: linear-gradient(120deg, #ffb347 0%, #ff2e63 60%, #b026ff 100%);
  box-shadow: 0 0 22px -6px #ffb347;
  animation: pulse-glow 3.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.notice__body {
  flex: 1 1 22rem;
  min-width: 0;
}
.notice__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f2f0f7;
}
.notice__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #8d86a8;
}
.notice__action {
  flex: none;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  color: #07060f;
  background: linear-gradient(120deg, #ffb347 0%, #ff2e63 60%, #b026ff 100%);
  box-shadow: 0 10px 30px -14px #ffb347;
  transition: transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.notice__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -12px #ffb347;
  color: white;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #ffb347;
}
.section-head {
  margin: 4rem 0 2rem;
}
.section-head h2 {
  margin: 0 0 0.75rem;
  padding: 0;
  border: 0;
  font-size: clamp(1.45rem, 2.3rem, 2.1rem);
}
.section-head p {
  margin: 0;
  max-width: 66ch;
  color: #8d86a8;
}
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin: 2rem 0 3rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  margin: 0;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1.6rem;
  border: 1px solid #2a2244;
  background: linear-gradient(165deg, rgba(18, 15, 34, 0.92), rgba(13, 11, 26, 0.92));
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 99, 0.55);
  box-shadow: 0 20px 46px -22px #ff2e63;
}
.steps strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}
.steps span {
  color: #8d86a8;
  font-size: 0.9rem;
  line-height: 1.65;
}
.features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin: 2rem 0 3rem;
  padding: 0;
  list-style: none;
}
.features li {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  border-radius: 1.6rem;
  border: 1px solid #2a2244;
  background: rgba(18, 15, 34, 0.75);
  transition: border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.features li:hover {
  border-color: rgba(0, 179, 255, 0.55);
  transform: translateY(-3px);
}
.features .features__glyph {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  box-shadow: 0 0 28px -4px rgba(255, 46, 99, 0.65);
}
.features .features__title {
  display: block;
  font-weight: 650;
  color: #f2f0f7;
  margin-bottom: 0.5rem;
}
.features .features__text {
  color: #8d86a8;
  font-size: 0.89rem;
  line-height: 1.65;
}
.quote {
  position: relative;
  margin: 3rem 0;
  padding: 2.5rem 2.5rem 2.5rem 4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(0, 179, 255, 0.35);
  background: linear-gradient(150deg, rgba(0, 179, 255, 0.1), rgba(18, 15, 34, 0.9));
  font-size: 1.12rem;
  line-height: 1.65;
  color: #f2f0f7;
}
.quote::before {
  content: "“";
  position: absolute;
  left: 1rem;
  top: 0.4rem;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(255, 46, 99, 0.7);
}
.quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.86rem;
  font-style: normal;
  color: #8d86a8;
}
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0 3rem;
  font-size: 0.92rem;
  border: 1px solid #2a2244;
  border-radius: 1rem;
  overflow: hidden;
}
.compare th,
.compare td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #1d1834;
}
.compare th {
  background: rgba(255, 46, 99, 0.12);
  color: #f2f0f7;
  font-weight: 650;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}
.compare tr:last-child td {
  border-bottom: 0;
}
.compare tbody tr:hover td {
  background: rgba(0, 179, 255, 0.07);
}
.compare .yes {
  color: #00b3ff;
  font-weight: 700;
}
.compare .no {
  color: #8d86a8;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.tags li {
  margin: 0;
}
.tags a,
.tags span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #2a2244;
  background: rgba(18, 15, 34, 0.7);
  color: #8d86a8;
  font-size: 0.79rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tags a:hover {
  color: #fff;
  border-color: rgba(255, 46, 99, 0.6);
  background: rgba(255, 46, 99, 0.18);
}
.cta {
  position: relative;
  margin: 4rem 0 1.5rem;
  padding: 3rem 2.5rem;
  border-radius: 2.25rem;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(600px 200px at 20% 0%, rgba(255, 46, 99, 0.3), transparent 70%), radial-gradient(600px 200px at 80% 100%, rgba(0, 179, 255, 0.3), transparent 70%), #120f22;
  border: 1px solid rgba(255, 46, 99, 0.3);
}
.cta h2 {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}
.cta p {
  max-width: 58ch;
  margin: 0 auto 2rem;
  color: #cfc9de;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.counters {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  margin: 2rem 0 3rem;
  padding: 0;
  list-style: none;
  text-align: center;
}
.counters li {
  margin: 0;
  padding: 2rem 1rem;
  border-radius: 1.6rem;
  border: 1px solid #2a2244;
  background: linear-gradient(165deg, rgba(18, 15, 34, 0.85), rgba(13, 11, 26, 0.92));
  transition: border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.counters li:hover {
  border-color: rgba(255, 46, 99, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 20px 46px -24px #ff2e63;
}
.counters .counters__value {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(120deg, #ffb347 0%, #ff2e63 60%, #b026ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.counters .counters__label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8d86a8;
}
.hero {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid #2a2244;
  background: #120f22;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.9);
}
.hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #8d86a8;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 15, 0.88));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 6, 15, 0.7) 100%);
  pointer-events: none;
}
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}
.cards > li {
  margin: 0;
  display: flex;
  min-width: 0;
}
.cards .card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem;
  border: 1px solid #2a2244;
  border-radius: 1.6rem;
  background: linear-gradient(160deg, #120f22 0%, #0d0b1a 100%);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cards .card__link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cards .card__link:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 46, 99, 0.55);
  box-shadow: 0 26px 60px -26px #ff2e63;
}
.cards .card__link:hover::before {
  transform: scaleX(1);
}
.cards .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.cards .card__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff2e63;
}
.cards .card__title {
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.35;
  color: #f2f0f7;
  letter-spacing: -0.015em;
  transition: color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cards .card__link:hover .card__title {
  color: #fff;
}
.cards .card__text {
  font-size: 0.88rem;
  color: #8d86a8;
  line-height: 1.65;
}
.cards .card__meta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(141, 134, 168, 0.95);
  transition: color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), letter-spacing 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cards .card__link:hover .card__meta {
  color: #00b3ff;
  letter-spacing: 0.08em;
}
.cards--media {
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}
.cards--media .card__link {
  padding: 0;
}
.cards--media .card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #191430;
  border-bottom: 1px solid #1d1834;
}
.cards--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cards--media .card__link:hover .card__media img {
  transform: scale(1.07);
}
.cards--media .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 2rem;
}
.cards--media .card__text {
  margin-top: 0.25rem;
}
.cards--news {
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
}
.cards--news .card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 46, 99, 0.35);
  background: rgba(255, 46, 99, 0.12);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.cards--news .card__title {
  font-size: 1.15rem;
}
.photo-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  margin: 1.25rem 0 2rem;
  padding: 0;
  list-style: none;
}
.photo-grid li {
  margin: 0;
}
.photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #2a2244;
  border-radius: 1rem;
  background: #191430;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.photo:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 46, 99, 0.55);
  box-shadow: 0 14px 36px -18px #ff2e63;
}
.photo:hover img {
  transform: scale(1.05);
}
.photo:focus-visible {
  outline: 2px solid #ff2e63;
  outline-offset: 3px;
}
.strip {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.strip li {
  margin: 0;
}
.entity-head {
  margin-bottom: 2rem;
}
.entity-head__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #07060f;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
}
.entity-head h1 {
  margin-bottom: 0.6rem;
}
.entity-layout {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.entity-layout .panel h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff2e63;
}
.facts {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}
.entity-gallery h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 2.5rem;
  background: rgba(4, 6, 10, 0.94);
  backdrop-filter: blur(6px);
}
.lightbox.is-open {
  display: grid;
  animation: fade-up 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.lightbox__image {
  max-width: min(96vw, 1600px);
  max-height: 84vh;
  border-radius: 1rem;
  box-shadow: 0 30px 90px -30px #ff2e63, 0 0 0 1px rgba(255, 46, 99, 0.3);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 46, 99, 0.35);
  background: rgba(18, 15, 34, 0.85);
  color: #f2f0f7;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  color: #07060f;
  border-color: transparent;
}
.lightbox__close {
  top: 1.1rem;
  right: 1.1rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev {
  left: 1.1rem;
}
.lightbox__nav--next {
  right: 1.1rem;
}
.lightbox__caption,
.lightbox__counter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #8d86a8;
  font-size: 0.82rem;
  text-align: center;
  max-width: 80vw;
}
.lightbox__caption {
  bottom: 1.6rem;
}
.lightbox__counter {
  bottom: 0.7rem;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 46, 99, 0.85);
}
.has-lightbox {
  overflow: hidden;
}
/* ------------------------------------------------------------------ */
/* Иллюстрации в теле статьи                                           */
/* ------------------------------------------------------------------ */
.page__images {
  margin: 2.25rem 0 0;
}
.page__images h2 {
  margin-bottom: 0.9rem;
}
/* Блок «что это значит для ролевой игры» на страницах людей, мест и новостей */
.entity-roleplay {
  margin: 1.75rem 0 0;
  padding: 1.1rem 1.25rem;
  border: 1px solid #2a2244;
  border-left: 3px solid #ff2e63;
  border-radius: 1rem;
  background: #191430;
}
.entity-roleplay h2 {
  margin-top: 0;
  font-size: 1.05rem;
}
.entity-roleplay p {
  margin-bottom: 0;
}
.page__image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.page__figure {
  margin: 0;
}
.page__figure figcaption {
  margin-top: 0.5rem;
  color: #8d86a8;
  font-size: 0.78rem;
  text-align: center;
}
.page__figure .photo img {
  aspect-ratio: 16 / 9;
}
@media (max-width: 640px) {
  .page__image-grid {
    grid-template-columns: 1fr;
  }
}
.countdown {
  position: relative;
  margin: 0 0 3rem;
  padding: 3rem 2rem 2.5rem;
  border-radius: 2.25rem;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(600px 200px at 50% -20%, rgba(255, 46, 99, 0.22), transparent 70%), linear-gradient(160deg, #120f22, #0d0b1a);
  border: 1px solid rgba(255, 46, 99, 0.3);
  box-shadow: 0 0 0 1px rgba(0, 179, 255, 0.15) inset, 0 24px 60px -30px #ff2e63;
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 46, 99, 0.12) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: sweep 6s linear infinite;
  pointer-events: none;
}
.countdown__title {
  position: relative;
  margin: 0 0 2rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #ff2e63;
}
.countdown__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 44rem;
  margin: 0 auto;
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem;
  border-radius: 1rem;
  background: rgba(7, 6, 15, 0.55);
  border: 1px solid rgba(255, 46, 99, 0.22);
  transition: border-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.countdown__cell:hover {
  border-color: rgba(255, 46, 99, 0.5);
  box-shadow: 0 18px 40px -24px #ff2e63;
}
.countdown__value {
  font-size: clamp(1.8rem, 4.4rem, 3.1rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #f2f0f7;
  text-shadow: 0 0 18px rgba(255, 46, 99, 0.7), 0 0 46px rgba(0, 179, 255, 0.45);
}
.countdown__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8d86a8;
}
.countdown__released {
  margin: 0 0 3rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 700;
  color: #07060f;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  box-shadow: 0 0 40px -10px #ff2e63;
}
.panel--stats {
  margin: 3rem 0;
}
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  margin: 1.5rem 0 2.5rem;
  padding: 0;
  list-style: none;
}
.stats li {
  margin: 0;
}
.stats .stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #2a2244;
  background: linear-gradient(160deg, rgba(25, 20, 48, 0.85), rgba(7, 6, 15, 0.6));
  overflow: hidden;
  transition: border-color 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.stats .stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  opacity: 0.55;
  transition: opacity 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.stats .stat:hover {
  border-color: rgba(255, 46, 99, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px #ff2e63;
}
.stats .stat:hover::before {
  opacity: 1;
}
.stats .stat__value {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #f2f0f7;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px rgba(255, 46, 99, 0.45);
}
.stats .stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #8d86a8;
}
.timeline {
  position: relative;
  margin: 2rem 0 0;
  padding: 0 0 0 2rem;
  list-style: none;
  border-left: 1px solid rgba(255, 46, 99, 0.3);
}
.timeline__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.05rem;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff2e63 0%, #b026ff 45%, #00b3ff 100%);
  box-shadow: 0 0 12px rgba(255, 46, 99, 0.8);
}
.timeline__date {
  min-width: 6rem;
  color: #ff2e63;
  font-variant-numeric: tabular-nums;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.timeline__label {
  color: #cfc9de;
}
.home-news,
.home-gallery {
  margin: 4rem 0;
}
.home-news h2,
.home-gallery h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 60rem) {
  .site-header__main .wrap {
    gap: 0.75rem 1rem;
  }
  .site-nav {
    font-size: 0.84rem;
  }
  .site-nav .nav__link {
    padding: 0.5rem 0.5rem;
  }
  .entity-layout {
    grid-template-columns: 1fr;
  }
  .countdown__grid {
    max-width: 100%;
  }
}
@media (max-width: 40rem) {
  .wrap {
    padding: 0 1rem;
  }
  main {
    padding: 2rem 0 3rem;
  }
  .panel,
  .purchase,
  .cta,
  .quote,
  .trailer {
    padding: 1.5rem;
  }
  .trailer {
    gap: 1.5rem;
  }
  .countdown {
    padding: 2rem 1rem 1.5rem;
  }
  .site-footer {
    padding: 2.5rem 0 2rem;
  }
  .site-footer .wrap {
    gap: 2rem;
  }
  .section-head,
  .home-news,
  .home-gallery,
  .trailer,
  .purchase {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .cards {
    gap: 1rem;
    margin: 1.5rem 0 2rem;
  }
  .cards--media .card__body {
    padding: 1rem 1rem 1.5rem;
  }
  .site-header__top .wrap {
    justify-content: space-between;
  }
  .site-header__bottom .wrap {
    justify-content: center;
  }
  .socials .social {
    padding: 0.5rem 0.75rem;
  }
  .socials .social__label {
    display: none;
  }
  .lang-switch {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .lang-switch__label {
    display: none;
  }
  .lang-switch .lang {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }
  .site-nav {
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    font-size: 0.82rem;
  }
  .site-nav .nav__link {
    padding: 0.5rem 0.75rem;
  }
  .brand {
    width: 100%;
  }
  .brand__text {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }
  .brand__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
  }
  .brand__name {
    font-size: 1.15rem;
  }
  .brand__tag {
    font-size: 0.66rem;
  }
  .countdown {
    margin-bottom: 2.5rem;
  }
  .countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .countdown__cell {
    padding: 1rem 0.5rem;
  }
  .countdown__value {
    font-size: 2rem;
  }
  .cards,
  .cards--media,
  .cards--news {
    grid-template-columns: 1fr;
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps,
  .features,
  .counters {
    gap: 1rem;
  }
  .steps li,
  .features li,
  .counters li {
    padding: 1.5rem;
  }
  .compare th,
  .compare td,
  .page table th,
  .page table td {
    padding: 0.75rem 0.75rem;
  }
  .lightbox {
    padding: 0.75rem;
  }
  .lightbox__image {
    max-height: 72vh;
  }
  .lightbox__nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.6rem;
  }
  .lightbox__nav--prev {
    left: 0.4rem;
  }
  .lightbox__nav--next {
    right: 0.4rem;
  }
  .lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.2rem;
    height: 2.2rem;
  }
  .lightbox__caption {
    bottom: 2.2rem;
    font-size: 0.75rem;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    margin-top: 2.5rem;
    padding-left: 0.75rem;
  }
  .hero figcaption {
    font-size: 0.66rem;
    padding: 0.6rem 0.7rem;
  }
}
@media (max-width: 24rem) {
  .photo-grid,
  .strip,
  .stats {
    grid-template-columns: 1fr;
  }
  .countdown__value {
    font-size: 1.6rem;
  }
}
