:root {
  --bg: #050816;
  --bg-soft: #0b1024;
  --card: rgba(13, 20, 43, 0.72);
  --line: rgba(146, 170, 255, 0.24);
  --text: #eef3ff;
  --muted: #adb7d9;
  --gold: #f8cd72;
  --gold-deep: #cf9226;
  --neon: #68b8ff;
  --max: 1200px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(120, 68, 255, 0.19), transparent 42%),
    radial-gradient(circle at 90% 15%, rgba(0, 179, 255, 0.17), transparent 45%),
    linear-gradient(150deg, #040612 0%, #090f22 45%, #0e1430 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.ambient-piece {
  position: absolute;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.85;
  filter: saturate(1.15);
  animation: ambient-float 26s ease-in-out infinite;
  will-change: transform;
}

.ambient-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: blur(42px);
  transform: scale(1.08);
}

.ambient-piece--a {
  width: min(72vmin, 820px);
  height: min(72vmin, 820px);
  top: -14%;
  left: -18%;
  animation-duration: 32s;
}

.ambient-piece--b {
  width: min(85vmin, 960px);
  height: min(85vmin, 960px);
  bottom: -22%;
  right: -16%;
  animation-duration: 28s;
  animation-delay: -6s;
}

.ambient-piece--c {
  width: min(48vmin, 520px);
  height: min(48vmin, 520px);
  top: 38%;
  right: -8%;
  animation-duration: 24s;
  animation-delay: -12s;
}

.ambient-piece--d {
  width: min(58vmin, 640px);
  height: min(58vmin, 640px);
  bottom: 8%;
  left: -6%;
  animation-duration: 30s;
  animation-delay: -3s;
}

@keyframes ambient-float {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -3%) scale(1.04); }
  66% { transform: translate(-3%, 2%) scale(0.98); }
}

.cursor-spotlight {
  position: fixed;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  margin: calc(min(560px, 90vw) / -2) 0 0 calc(min(560px, 90vw) / -2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 35% 35%, rgba(248, 205, 114, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 62% 58%, rgba(104, 184, 255, 0.14) 0%, transparent 55%);
  transition: opacity 0.45s ease;
}

.cursor-spotlight.cursor-spotlight--on {
  opacity: 1;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  opacity: 0.16;
  z-index: -1;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(14px);
  background: rgba(4, 8, 22, 0.72);
  border-bottom: 1px solid rgba(122, 162, 255, 0.16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-core {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #1f1f1f;
  background: linear-gradient(140deg, #ffd88f, #b7831f);
  box-shadow: 0 0 22px rgba(248, 205, 114, 0.4);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.74rem 1.24rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.btn-magnetic {
  position: relative;
}

.btn-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-shine {
  position: absolute;
  inset: -40%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 253, 235, 0.22) 52%,
    transparent 65%
  );
  animation: btn-shimmer 4.8s ease-in-out infinite;
  opacity: 0.65;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0% { transform: translateX(-55%) rotate(12deg); }
  100% { transform: translateX(55%) rotate(12deg); }
}

.btn-solid.btn-magnetic {
  overflow: hidden;
}

.btn-outline {
  color: var(--text);
  border: 1px solid rgba(173, 183, 217, 0.38);
}

.btn-outline:hover {
  border-color: rgba(248, 205, 114, 0.7);
  box-shadow: 0 0 20px rgba(248, 205, 114, 0.2);
}

.btn-solid {
  color: #201200;
  background: linear-gradient(140deg, #feda92, #ce9127);
  box-shadow: 0 12px 38px rgba(227, 165, 46, 0.33);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(104, 184, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(104, 184, 255, 0.13);
}

.hero {
  padding: 6rem 0 3.5rem;
}

.section-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-premium > .container {
  position: relative;
  z-index: 2;
}

.section-premium::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(56px) saturate(1.25);
  transform: scale(1.08);
  animation: section-bg-pulse 22s ease-in-out infinite;
  pointer-events: none;
}

.section-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(5, 8, 22, 0.93) 0%,
    rgba(5, 8, 22, 0.88) 42%,
    rgba(6, 10, 26, 0.86) 100%
  );
  pointer-events: none;
}

.hero-premium.section-premium::after {
  background: linear-gradient(
    125deg,
    rgba(5, 8, 22, 0.94) 0%,
    rgba(5, 8, 22, 0.76) 48%,
    rgba(8, 12, 28, 0.62) 100%
  );
}

@keyframes section-bg-pulse {
  0%,
  100% { opacity: 0.18; transform: scale(1.06); }
  50% { opacity: 0.26; transform: scale(1.12); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

strong {
  color: #fef6de;
}

.hero-actions {
  margin: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stats {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.9rem;
}

.stats li {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(14, 24, 52, 0.82), rgba(12, 17, 36, 0.52));
  border-radius: 16px;
  padding: 0.85rem 0.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.stats li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(248, 205, 114, 0.09) 48%,
    rgba(104, 184, 255, 0.07) 56%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: stat-glint 7s ease-in-out infinite;
  pointer-events: none;
}

.stats li:hover {
  border-color: rgba(248, 205, 114, 0.42);
  box-shadow: 0 12px 28px rgba(6, 10, 26, 0.42), 0 0 22px rgba(104, 184, 255, 0.12);
  transform: translateY(-3px);
}

@keyframes stat-glint {
  0%,
  65% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.stats span {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
}

.stats small {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media {
  position: relative;
  padding: 1rem;
}

.hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(148, 179, 255, 0.25);
  background: linear-gradient(180deg, rgba(12, 18, 43, 0.8), rgba(6, 11, 26, 0.6));
  box-shadow: 0 28px 56px rgba(8, 10, 20, 0.55), 0 0 40px rgba(104, 184, 255, 0.22);
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(104, 184, 255, 0.28);
  pointer-events: none;
}

.ring-1 {
  width: 160px;
  height: 160px;
  right: -10px;
  top: -20px;
  animation: pulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 230px;
  height: 230px;
  left: -25px;
  bottom: -30px;
  animation: pulse 4s ease-in-out infinite 1.2s;
}

@keyframes pulse {
  0%,
  100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.09); opacity: 0.95; }
}

.section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.game-strip {
  padding-top: 2rem;
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(13, 21, 49, 0.92), rgba(8, 12, 29, 0.86));
  box-shadow: 0 24px 40px rgba(6, 9, 24, 0.44);
  position: relative;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.marquee:hover {
  border-color: rgba(248, 205, 114, 0.34);
  box-shadow: 0 28px 48px rgba(6, 9, 24, 0.52), 0 0 40px rgba(104, 184, 255, 0.14);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 12, 29, 0.96), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 12, 29, 0.96), transparent);
}

.marquee-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  padding: 0.9rem;
  animation: ticker 44s linear infinite;
  will-change: transform;
}

.marquee-track img {
  width: 240px;
  height: 138px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148, 179, 255, 0.3);
  box-shadow: 0 10px 18px rgba(5, 8, 24, 0.46);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.adv,
.entry-box,
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(4, 6, 20, 0.44);
}

.card {
  padding: 1.2rem 1.1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(248, 205, 114, 0.35),
    rgba(104, 184, 255, 0.28),
    rgba(146, 92, 255, 0.22),
    rgba(248, 205, 114, 0.35)
  );
  background-size: 260% 260%;
  animation: card-border-flow 10s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 205, 114, 0.38);
  box-shadow: 0 26px 52px rgba(4, 6, 20, 0.52), 0 0 36px rgba(104, 184, 255, 0.12);
}

@keyframes card-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.adv {
  padding: 1rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.adv:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 205, 114, 0.38);
  box-shadow: 0 26px 46px rgba(4, 6, 20, 0.48), 0 0 28px rgba(104, 184, 255, 0.12);
}

.adv img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(156, 182, 255, 0.23);
  margin-bottom: 0.8rem;
}

.entry-layout {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 1rem;
}

.entry-box {
  padding: 1.15rem;
  align-self: start;
}

.entry-box ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.entry-box li {
  margin-bottom: 0.5rem;
}

.note {
  font-size: 0.9rem;
  color: #f0c874;
}

.seo-text .longread {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(170deg, rgba(14, 20, 43, 0.86), rgba(8, 13, 30, 0.73));
}

.catalog-lead {
  max-width: 820px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-card {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(12, 20, 46, 0.78);
  box-shadow: 0 14px 26px rgba(6, 10, 26, 0.42);
  transform: translateZ(0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(248, 205, 114, 0.64);
  box-shadow: 0 28px 40px rgba(6, 9, 24, 0.58), 0 0 34px rgba(104, 184, 255, 0.18);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 560ms ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.62rem 0.75rem;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  color: #f9f0da;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 28, 0.95));
}

.faq-list {
  display: grid;
  gap: 0.74rem;
}

.faq-item {
  padding: 0.35rem 1rem 0.7rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  padding: 0.64rem 0;
  transition: color 0.25s ease;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: #fef6de;
}

.faq-item p {
  margin: 0.2rem 0 0.35rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(146, 170, 255, 0.2);
  background: rgba(4, 8, 18, 0.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .entry-layout,
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 5rem;
  }
}

@media (max-width: 620px) {
  .site-header .btn-outline {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }

  .marquee-track img {
    width: 190px;
    height: 110px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .ring-1,
  .ring-2 {
    animation: none !important;
  }

  .ambient-piece,
  .section-premium::before,
  .btn-shine,
  .stats li::after,
  .card::before {
    animation: none !important;
  }

  .cursor-spotlight {
    display: none !important;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-spotlight {
    display: none !important;
  }
}
