/* Kiber Haus — Premium Airy Dark + Glassmorphism */

:root {
  --void: #030306;
  --pitch: #050508;
  --glass: rgba(0, 0, 0, 0.45);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.07);
  --text: #f4f6fb;
  --text-muted: rgba(244, 246, 251, 0.58);
  --neon: #22d3ee;
  --violet: #a78bfa;
  --tactical: #f97316;
  --tactical-glow: rgba(249, 115, 22, 0.45);
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --hud-clip: polygon(
    0 12px,
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  --hud-clip-sm: polygon(
    0 8px,
    8px 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
  --hud-grid: linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  --hud-scanline: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.14) 2px,
    rgba(0, 0, 0, 0.14) 3px
  );
  /* Fluid type scale */
  --text-fluid-xs: clamp(0.58rem, 0.54rem + 0.12vw, 0.68rem);
  --text-fluid-sm: clamp(0.8125rem, 0.76rem + 0.22vw, 0.9375rem);
  --text-fluid-base: clamp(0.9375rem, 0.86rem + 0.32vw, 1.0625rem);
  --text-fluid-lg: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  --text-fluid-xl: clamp(1.2rem, 1.05rem + 0.65vw, 1.5rem);
  --title-fluid: clamp(1.75rem, 1.2rem + 2.4vw, 2.85rem);
  --display-fluid: clamp(1.75rem, 1rem + 3.2vw, 3.35rem);
  --price-fluid: clamp(1.65rem, 1.2rem + 1.8vw, 2.65rem);
  --ease-magnetic: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--void);
  color: var(--text);
  font-size: var(--text-fluid-base);
  overflow-x: hidden;
}

/* Canvas (unchanged layout hooks) */
#scroll-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: var(--void);
}

.canvas-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    var(--hud-scanline),
    radial-gradient(ellipse 90% 55% at 15% 20%, rgba(249, 115, 22, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(34, 211, 238, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(3, 3, 6, 0.2) 0%, rgba(3, 3, 6, 0.88) 100%);
  background-blend-mode: overlay, normal, normal, normal;
  opacity: 0.92;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--void);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--tactical);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.loader-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.loader-progress {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tactical);
  text-shadow: 0 0 16px var(--tactical-glow);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— HUD system (competitive menu aesthetic) —— */
.hud-status {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.5rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.88);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(34, 211, 238, 0.35);
  clip-path: var(--hud-clip-sm);
  box-shadow:
    inset 0 0 12px rgba(34, 211, 238, 0.08),
    0 0 14px rgba(34, 211, 238, 0.12);
}

.hud-status--online {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.45);
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.45);
}

.hud-status--online::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.9);
  animation: hud-pulse 2s ease-in-out infinite;
}

.hud-status--ready {
  color: var(--neon);
  border-color: rgba(34, 211, 238, 0.5);
}

.hud-status--warn {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.45);
}

.hud-status--hot {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.55);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(0, 0, 0, 0.6));
}

@keyframes hud-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.hud-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: var(--hud-grid);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 10%, transparent 75%);
}

.hud-grid-bg > * {
  position: relative;
  z-index: 1;
}

/* Shared glass + HUD frame */
.glass-panel {
  position: relative;
  isolation: isolate;
  border-radius: 0;
  clip-path: var(--hud-clip-sm);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: var(--hud-grid);
  background-size: 18px 18px;
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  background: var(--hud-scanline);
  mix-blend-mode: overlay;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

/* —— Magnetic & fluid border interactions —— */
.fluid-border {
  --mx: 50%;
  --my: 50%;
  position: relative;
}

.fluid-border:hover,
.fluid-border:focus-within {
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.fluid-border-ring {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  clip-path: inherit;
  transition: opacity 0.45s var(--ease-magnetic);
  background: radial-gradient(
    520px circle at var(--mx) var(--my),
    rgba(34, 211, 238, 0.75) 0%,
    rgba(249, 115, 22, 0.45) 20%,
    transparent 48%
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1.5px;
}

.fluid-border:hover .fluid-border-ring,
.fluid-border:focus-within .fluid-border-ring {
  opacity: 1;
}

[data-magnetic] {
  will-change: transform;
  transition: box-shadow 0.35s var(--ease-magnetic), border-color 0.35s ease;
}

.hardware-card[data-magnetic]:hover,
.promo-card[data-magnetic]:hover {
  transform: none;
}

.hardware-card[data-magnetic].is-magnetic-hover {
  box-shadow:
    0 0 48px rgba(34, 211, 238, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.5);
}

.promo-card[data-magnetic].is-magnetic-hover {
  box-shadow:
    0 0 40px rgba(249, 115, 22, 0.18),
    0 20px 40px rgba(0, 0, 0, 0.45);
}

[data-magnetic].btn-glass:hover,
[data-magnetic].btn-hero-cta:hover,
[data-magnetic].btn-route:hover {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fluid-border-ring {
    display: none;
  }

  [data-magnetic] {
    will-change: auto;
  }

  .hardware-card[data-magnetic]:hover,
  .promo-card[data-magnetic]:hover {
    transform: translateY(-6px);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 1px 0 rgba(249, 115, 22, 0.12);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: var(--hud-grid);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 95%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.55) 20%,
    rgba(249, 115, 22, 0.45) 80%,
    transparent
  );
  pointer-events: none;
}

.logo-wrap {
  position: relative;
  z-index: 1;
}

.yandex-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.45rem;
  line-height: 0;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  box-shadow:
    inset 0 0 14px rgba(34, 211, 238, 0.06),
    0 0 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.yandex-rating-badge iframe {
  display: block;
  width: 150px;
  max-width: 100%;
  height: 50px;
  border: 0;
}

.brand-logo {
  font-family: "Syne", system-ui, sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
}

/* Layout */
#scroll-root {
  position: relative;
  z-index: 10;
}

.section {
  position: relative;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.section-shell {
  width: min(76rem, 100%);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Hero (asymmetric) —— */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  width: min(76rem, 100%);
  margin: 0 auto;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 62%);
    gap: 3rem;
  }
}

.hero-copy {
  text-align: left;
  max-width: 42rem;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 115, 22, 0.95);
}

.eyebrow-line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--tactical), var(--neon), transparent);
}

.hero-title {
  margin: 0 0 1.5rem;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 11vw, 7rem);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line--accent {
  background: linear-gradient(135deg, var(--neon) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(34, 211, 238, 0.25));
}

.hero-title--tactical,
.hero-title {
  font-size: var(--display-fluid);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
  text-shadow:
    0 0 40px rgba(249, 115, 22, 0.15),
    0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-title-accent {
  display: block;
  margin-top: 0.35em;
  font-size: 0.82em;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fde68a 0%, #f97316 55%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.35));
}

.hero-lead {
  margin: 0.35rem 0 1.35rem;
  max-width: 28rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-deal {
  --deal-accent: #f97316;
  --deal-glow: rgba(249, 115, 22, 0.22);
  position: relative;
  max-width: 32rem;
  margin: 0 0 1.25rem;
  padding: 1px;
  border-radius: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--deal-accent) 55%, transparent), rgba(255, 255, 255, 0.08) 45%, color-mix(in srgb, var(--deal-accent) 35%, transparent));
  box-shadow: 0 0 28px var(--deal-glow);
}

.hero-deal-inner {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: calc(1rem - 1px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%, rgba(0, 0, 0, 0.35) 100%),
    rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-deal-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--deal-accent), transparent 72%);
  opacity: 0.85;
}

.hero-deal-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
}

.hero-deal-day {
  margin: 0 0 0.35rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--deal-accent) 70%, #fff);
}

.hero-deal-title {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 0 22px var(--deal-glow);
}

.hero-deal-hint {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.hero-deal-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: color-mix(in srgb, var(--deal-accent) 75%, #fff);
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-deal-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.hero-deal--mon { --deal-accent: #fbbf24; --deal-glow: rgba(251, 191, 36, 0.22); }
.hero-deal--tue { --deal-accent: #22d3ee; --deal-glow: rgba(34, 211, 238, 0.22); }
.hero-deal--wed { --deal-accent: #818cf8; --deal-glow: rgba(129, 140, 248, 0.24); }
.hero-deal--thu { --deal-accent: #fb923c; --deal-glow: rgba(251, 146, 60, 0.24); }
.hero-deal--fri { --deal-accent: #f472b6; --deal-glow: rgba(244, 114, 182, 0.24); }
.hero-deal--weekend { --deal-accent: #a78bfa; --deal-glow: rgba(167, 139, 250, 0.24); }

.spec-panel {
  margin: 1.5rem 0 1.75rem;
  clip-path: var(--hud-clip);
  border-radius: 0;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 24px rgba(34, 211, 238, 0.04);
}

.spec-panel.flex {
  gap: 0.85rem;
}

.spec-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-line:last-child {
  border-bottom: none;
  padding-bottom: 0.15rem;
}

.spec-line:first-child {
  padding-top: 0.15rem;
}

.spec-line--price .spec-strong {
  color: #fde68a;
  font-weight: 800;
}

.spec-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.84em;
}

.btn-hero-cta:focus-visible {
  outline: 2px solid #fde68a;
  outline-offset: 3px;
}

.btn-hero-cta {
  position: relative;
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.spec-bullet {
  flex-shrink: 0;
  font-size: 0.65rem;
  line-height: 1.6;
  text-shadow:
    0 0 10px rgba(249, 115, 22, 0.9),
    0 0 20px rgba(249, 115, 22, 0.45);
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.8));
}

.btn-glass--tactical:hover {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow:
    0 0 22px rgba(249, 115, 22, 0.4),
    0 0 44px rgba(34, 211, 238, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-sub {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-size: var(--text-fluid-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn-glass:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.35),
    0 0 48px rgba(249, 115, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-glass--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease-out),
    text-shadow 0.3s ease;
}

.btn-link:hover {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
}

/* Hero side panel */
.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-self: center;
}

@media (min-width: 900px) {
  .hero-panel {
    max-width: 22rem;
    justify-self: end;
  }
}

.hero-stat {
  padding: 1.1rem 1.15rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.25);
}

.hero-stat--wide {
  grid-column: 1 / -1;
}

.hero-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.hero-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  50% {
    opacity: 0.35;
    transform: scaleX(0.7);
    transform-origin: left;
  }
}

/* —— Section heads —— */
.section-head {
  margin-bottom: 2rem;
  text-align: center;
}

.section-head--left {
  text-align: left;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(34, 211, 238, 0.28);
  clip-path: var(--hud-clip-sm);
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.35);
}

.section-kicker::before {
  content: "[ ";
  color: rgba(249, 115, 22, 0.85);
}

.section-kicker::after {
  content: " ]";
  color: rgba(249, 115, 22, 0.85);
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--title-fluid);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow:
    0 0 40px rgba(34, 211, 238, 0.12),
    0 2px 0 rgba(0, 0, 0, 0.5);
}

.section-desc {
  margin: 0;
  max-width: 36rem;
  font-size: var(--text-fluid-lg);
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.section-head--left .section-desc {
  max-width: 32rem;
}

.section-head:not(.section-head--left) .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* —— Hardware — tactical cards + SVG icons —— */
.hardware-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (max-width: 900px) {
  .hardware-grid {
    grid-template-columns: 1fr;
  }
}

.hardware-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: 1.35rem 1.35rem 1.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(34, 211, 238, 0.2) !important;
  border-radius: 0;
  clip-path: var(--hud-clip-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hardware-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 90%);
  pointer-events: none;
}

.hardware-card-glow {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 55%;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hardware-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.hardware-card:hover .hardware-card-glow {
  opacity: 0.9;
}

.hardware-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--ease-out);
}

.hardware-card:hover .hardware-icon-wrap {
  transform: scale(1.06);
}

.hardware-icon {
  width: 2.75rem;
  height: 2.75rem;
}

.hardware-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--neon);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(34, 211, 238, 0.35);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
}

.hardware-tag::before {
  content: "[ ";
  color: rgba(249, 115, 22, 0.8);
}

.hardware-tag::after {
  content: " ]";
  color: rgba(249, 115, 22, 0.8);
}

.hardware-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--text-fluid-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hardware-specs {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.hardware-specs li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #d1d5db;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hardware-specs li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-size: 0.45rem;
  color: var(--tactical);
  text-shadow: 0 0 8px var(--tactical-glow);
}

.hardware-specs li:last-child {
  border-bottom: none;
}

/* GPU — cyan */
.hardware-card--gpu .hardware-card-glow { background: rgba(34, 211, 238, 0.5); }
.hardware-card--gpu .hardware-icon-wrap {
  color: var(--neon);
  box-shadow: inset 0 0 24px rgba(34, 211, 238, 0.12);
}
.hardware-card--gpu:hover {
  border-color: rgba(34, 211, 238, 0.4) !important;
  box-shadow: 0 0 48px rgba(34, 211, 238, 0.15), 0 24px 48px rgba(0, 0, 0, 0.45);
}
.hardware-card--gpu:hover .hardware-icon-wrap {
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

/* CPU — violet */
.hardware-card--cpu .hardware-card-glow { background: rgba(167, 139, 250, 0.45); }
.hardware-card--cpu .hardware-icon-wrap {
  color: var(--violet);
  box-shadow: inset 0 0 24px rgba(167, 139, 250, 0.12);
}
.hardware-card--cpu:hover {
  border-color: rgba(167, 139, 250, 0.4) !important;
  box-shadow: 0 0 48px rgba(167, 139, 250, 0.15), 0 24px 48px rgba(0, 0, 0, 0.45);
}
.hardware-card--cpu:hover .hardware-icon-wrap {
  box-shadow: 0 0 28px rgba(167, 139, 250, 0.35);
}

/* Display — orange */
.hardware-card--display .hardware-card-glow { background: rgba(249, 115, 22, 0.45); }
.hardware-card--display .hardware-icon-wrap {
  color: var(--tactical);
  box-shadow: inset 0 0 24px rgba(249, 115, 22, 0.12);
}
.hardware-card--display:hover {
  border-color: rgba(249, 115, 22, 0.45) !important;
  box-shadow: 0 0 48px var(--tactical-glow), 0 24px 48px rgba(0, 0, 0, 0.45);
}
.hardware-card--display:hover .hardware-icon-wrap {
  box-shadow: 0 0 28px var(--tactical-glow);
}

/* —— Pricing tabs —— */
.pricing-section {
  min-height: auto;
}

.pricing-shell {
  padding: clamp(1.1rem, 3vw, 1.65rem);
  overflow: hidden;
}

.pricing-shell.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(249, 115, 22, 0.85) 35%,
      rgba(34, 211, 238, 0.75) 65%,
      transparent 100%
    ),
    var(--hud-grid);
  background-size: 100% 3px, 20px 20px;
  background-position: top center, 0 0;
  background-repeat: no-repeat, repeat;
}

.pricing-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(249, 115, 22, 0.04);
}

.zone-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(34, 211, 238, 0.15);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .zone-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.zone-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.7rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(0.72rem, 2.4vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  cursor: pointer;
  transition:
    color 0.3s var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

.zone-tab:hover:not(:disabled) {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}

.zone-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(34, 211, 238, 0.08));
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow:
    0 0 28px rgba(249, 115, 22, 0.2),
    0 0 36px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.zone-tab--soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.zone-tab-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  color: #e9d5ff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(167, 139, 250, 0.4);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
}

.zone-panels {
  position: relative;
  min-height: 12rem;
}

.zone-panel {
  display: none;
  animation: panel-in 0.4s var(--ease-out);
}

.zone-panel.is-active {
  display: block;
}

.zone-panel[hidden] {
  display: none !important;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zone-panel-head {
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem 1.1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zone-name {
  margin: 0 0 0.35rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.25rem, 1.05rem + 0.75vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
}

.zone-meta {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Promo card — video hero (Акции) */
.promo-card--video {
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  clip-path: var(--hud-clip);
  border-color: rgba(249, 115, 22, 0.35) !important;
}

.promo-card--video::before,
.promo-card--video::after {
  z-index: 1;
}

.promo-card--video::before {
  opacity: 0.15;
}

.promo-card--video .promo-card-glow {
  opacity: 0.25;
}

.promo-card--video .promo-card-body {
  position: relative;
  width: 100%;
  padding: 0;
}


.promo-card--video .promo-card-index {
  color: rgba(255, 255, 255, 0.2);
}

.promo-card--video .promo-featured-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.promo-card--video .promo-card-head {
  margin-bottom: 0;
}

.promo-card--video .promo-card-top {
  flex-shrink: 0;
}

.promo-card-cta {
  align-self: flex-start;
  padding: 0.55rem 1.15rem;
}

.promo-card--video:hover {
  border-color: rgba(249, 115, 22, 0.55) !important;
  box-shadow:
    0 0 48px rgba(249, 115, 22, 0.22),
    0 0 56px rgba(34, 211, 238, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45) !important;
}

.promo-card--video video {
  object-position: 80% center;
}

@media (min-width: 768px) {
  .promo-card--video video {
    object-position: right center;
  }
}

.price-card-video-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.45);
}

.price-card-video-title {
  margin: 0 0 0.35rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.price-card-video-meta {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(244, 246, 251, 0.72);
}

.price-card-video-price {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
  color: #e0fafe;
  text-shadow:
    0 0 24px rgba(34, 211, 238, 0.5),
    0 2px 12px rgba(0, 0, 0, 0.8);
}

.price-card-video-currency {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.9;
}

.price-card-video-cta {
  position: relative;
  z-index: 20;
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
}

/* Price table — tactical board */
.price-table {
  --price-accent: #f97316;
  --price-accent-soft: rgba(249, 115, 22, 0.14);
  --price-glow: rgba(249, 115, 22, 0.22);
  display: grid;
  grid-template-columns: minmax(5.5rem, 1.2fr) minmax(5rem, 1fr) minmax(5rem, 1fr);
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.42),
    0 0 40px var(--price-glow);
}

.price-table--vip {
  --price-accent: #22d3ee;
  --price-accent-soft: rgba(34, 211, 238, 0.14);
  --price-glow: rgba(34, 211, 238, 0.16);
}

.price-table--ps {
  --price-accent: #a78bfa;
  --price-accent-soft: rgba(167, 139, 250, 0.16);
  --price-glow: rgba(167, 139, 250, 0.18);
}

.price-table-head,
.price-table-row {
  display: contents;
}

.price-table-head > .price-col {
  padding: 0.9rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.55);
  background: linear-gradient(180deg, var(--price-accent-soft) 0%, rgba(0, 0, 0, 0.62) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table-head > .price-col--day {
  text-align: right;
  color: color-mix(in srgb, var(--price-accent) 65%, #fff);
}

.price-table-row > .price-col {
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.32);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.price-table-row:hover > .price-col {
  background: rgba(255, 255, 255, 0.04);
}

.price-table-row:hover > .price-col--value {
  box-shadow: inset 0 0 24px var(--price-accent-soft);
}

.price-table-row:last-child > .price-col {
  border-bottom: none;
}

.price-table-row--featured > .price-col {
  background: linear-gradient(90deg, var(--price-accent-soft), rgba(0, 0, 0, 0.28));
}

.price-table-row--best > .price-col--label::after {
  content: "ТОП";
  display: inline-flex;
  margin-left: 0.45rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fde68a, var(--price-accent));
  vertical-align: middle;
}

.price-table-row--night > .price-col--label {
  color: #c4b5fd;
}

.price-col--label {
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgb(156 163 175);
}

.price-col--value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  min-height: 3.5rem;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.price-sum {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  line-height: 1;
}

.price-amount {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: #f8fafc;
  text-shadow: 0 0 18px var(--price-glow);
}

.price-currency {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--price-accent);
}

.price-col--value .price-amount,
.price-col--value .price-currency {
  display: inline;
}

.price-table-row--featured .price-amount,
.price-table-row--best .price-amount {
  color: #fff;
  font-weight: 800;
}

.price-hourly,
.price-save {
  display: inline-flex;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--price-accent) 35%, transparent);
  background: color-mix(in srgb, var(--price-accent) 10%, rgba(0, 0, 0, 0.35));
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--price-accent) 70%, #fff);
}

.price-save {
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(134, 239, 172, 0.1);
  color: #bbf7d0;
}

@media (max-width: 420px) {
  .price-table {
    grid-template-columns: minmax(4.5rem, 1fr) minmax(3.8rem, 1fr) minmax(3.8rem, 1fr);
  }

  .price-table-head > .price-col,
  .price-table-row > .price-col {
    padding: 0.75rem 0.65rem;
  }

  .price-amount {
    font-size: 1.2rem;
  }

  .price-table-row--best > .price-col--label::after {
    display: block;
    margin: 0.35rem 0 0;
    width: fit-content;
  }
}

/* Trio soon */
.zone-panel--soon .zone-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  gap: 0.75rem;
}

.zone-soon-icon {
  font-size: 2rem;
  color: var(--violet);
  opacity: 0.6;
}

.zone-soon p {
  margin: 0 0 1rem;
  max-width: 22rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* —— Fortune wheel —— */
.fortune-section {
  isolation: isolate;
}

.fortune-dashboard {
  position: relative;
}

.fortune-wheel-ring {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 20px rgba(153, 27, 27, 0.2),
    inset 0 0 24px rgba(0, 0, 0, 0.65);
}

.fortune-wheel__disk.fortune-wheel__disk--instant {
  transition-duration: 0ms !important;
}

.fortune-wheel__disk {
  background:
    repeating-conic-gradient(
      from -22.5deg at 50% 50%,
      #141414 0deg 45deg,
      #0a0a0a 45deg 90deg
    ) !important;
}

.fortune-wheel__slices {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.fortune-wheel__slice {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  transform-origin: 0 50%;
  transform: rotate(calc(var(--i) * 45deg));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.fortune-wheel__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fortune-wheel__label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  transform-origin: 0% 50%;
  transform: rotate(calc(var(--i) * 45deg + 22.5deg)) translateX(22%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fortune-wheel__label .fortune-prize {
  transform: rotate(90deg);
  transform-origin: center center;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.fortune-hub-ring {
  pointer-events: none;
}

.fortune-prize {
  display: block;
  max-width: 6.5rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(0.5rem, 1.7vw, 0.68rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.fortune-prize--cyan {
  color: #22d3ee;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
}

.fortune-prize--common {
  color: rgba(248, 250, 252, 0.92);
}

.fortune-prize--rare {
  color: #c4b5fd;
  text-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
}

.fortune-prize--epic {
  color: #fb923c;
  text-shadow: 0 0 14px rgba(249, 115, 22, 0.45);
}

.fortune-prize--legend {
  color: #fcd34d;
  text-shadow:
    0 0 8px rgba(252, 211, 77, 0.9),
    0 0 18px rgba(234, 179, 8, 0.55);
}

.fortune-wheel-stage::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 27, 27, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fortune-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.fortune-modal[hidden] {
  display: none;
}

.fortune-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fortune-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 2rem 1.75rem 1.75rem;
  background: rgba(12, 12, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow:
    0 0 60px rgba(153, 27, 27, 0.15),
    0 0 40px rgba(34, 211, 238, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.55);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  animation: fortune-modal-in 0.35s var(--ease-out) both;
}

@keyframes fortune-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fortune-modal__title.fortune-modal__title--legend {
  color: #fcd34d;
  text-shadow: 0 0 20px rgba(234, 179, 8, 0.35);
}

.fortune-modal__title.fortune-modal__title--epic {
  color: #fdba74;
}

.fortune-modal__title.fortune-modal__title--rare {
  color: #c4b5fd;
}

.fortune-modal__title.fortune-modal__title--cyan {
  color: #67e8f9;
}

@media (prefers-reduced-motion: reduce) {
  .fortune-wheel__disk {
    transition-duration: 0.01ms !important;
  }

  .fortune-modal__panel {
    animation: none;
  }
}

/* —— Loyalty tiers — expressive rank cards —— */
.loyalty-section {
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
}

.loyalty-section .section-shell {
  position: relative;
  z-index: 1;
}

.loyalty-grid {
  margin-top: 0.75rem;
}

.loyalty-card {
  --loyalty-accent: #f97316;
  --loyalty-accent-soft: rgba(249, 115, 22, 0.35);
  --loyalty-glow: rgba(249, 115, 22, 0.22);
  --loyalty-value-from: #fde68a;
  --loyalty-value-to: #ea580c;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--loyalty-accent) 38%, transparent);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, transparent 38%, rgba(0, 0, 0, 0.45) 100%),
    rgba(8, 10, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px var(--loyalty-glow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.loyalty-card-glow {
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, var(--loyalty-accent-soft), transparent 68%);
  opacity: 0.95;
}

.loyalty-card-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 42%,
    transparent 58%
  );
  opacity: 0.55;
}

.loyalty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--loyalty-accent), transparent);
  opacity: 0.85;
}

.loyalty-card-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 11.5rem;
  text-align: center;
}

.loyalty-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--loyalty-accent);
  border: 1px solid color-mix(in srgb, var(--loyalty-accent) 45%, transparent);
  background: color-mix(in srgb, var(--loyalty-accent) 12%, rgba(0, 0, 0, 0.35));
  box-shadow: 0 0 18px var(--loyalty-glow);
}

.loyalty-card-tier {
  margin: 0.15rem 0 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--loyalty-accent) 72%, #fff);
  text-shadow: 0 0 20px var(--loyalty-glow);
}

.loyalty-card-value {
  margin: 0.15rem 0 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, var(--loyalty-value-from) 38%, var(--loyalty-value-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px var(--loyalty-glow));
}

.loyalty-card-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.loyalty-card--bronze {
  --loyalty-accent: #d97706;
  --loyalty-accent-soft: rgba(217, 119, 6, 0.42);
  --loyalty-glow: rgba(217, 119, 6, 0.28);
  --loyalty-value-from: #fcd34d;
  --loyalty-value-to: #b45309;
}

.loyalty-card--silver {
  --loyalty-accent: #cbd5e1;
  --loyalty-accent-soft: rgba(203, 213, 225, 0.35);
  --loyalty-glow: rgba(203, 213, 225, 0.22);
  --loyalty-value-from: #f8fafc;
  --loyalty-value-to: #94a3b8;
}

.loyalty-card--gold {
  --loyalty-accent: #facc15;
  --loyalty-accent-soft: rgba(250, 204, 21, 0.4);
  --loyalty-glow: rgba(250, 204, 21, 0.3);
  --loyalty-value-from: #fef9c3;
  --loyalty-value-to: #f59e0b;
}

.loyalty-card--diamond {
  --loyalty-accent: #22d3ee;
  --loyalty-accent-soft: rgba(34, 211, 238, 0.42);
  --loyalty-glow: rgba(34, 211, 238, 0.32);
  --loyalty-value-from: #ecfeff;
  --loyalty-value-to: #06b6d4;
}

.loyalty-card--gold .loyalty-card-shine,
.loyalty-card--diamond .loyalty-card-shine {
  animation: loyalty-shimmer 4.5s ease-in-out infinite;
}

.loyalty-card--diamond {
  border-color: color-mix(in srgb, var(--loyalty-accent) 55%, #fff 10%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 36px var(--loyalty-glow),
    0 0 64px rgba(34, 211, 238, 0.12);
}

.loyalty-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: color-mix(in srgb, var(--loyalty-accent) 72%, #fff 12%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 42px var(--loyalty-glow);
}

.loyalty-card:hover .loyalty-card-glow {
  opacity: 1;
  transform: scale(1.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

@keyframes loyalty-shimmer {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-8%);
  }
  50% {
    opacity: 0.75;
    transform: translateX(8%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loyalty-card:hover {
    transform: none;
  }

  .loyalty-card--gold .loyalty-card-shine,
  .loyalty-card--diamond .loyalty-card-shine {
    animation: none;
  }
}

/* —— Games library —— */
.games-section {
  padding-bottom: 4rem;
}

.games-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.65rem);
}

@media (min-width: 768px) {
  .games-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .games-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.games-category {
  position: relative;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.games-category--ps {
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(155deg, rgba(167, 139, 250, 0.08), rgba(0, 0, 0, 0.32));
}

.games-category-title {
  margin: 0 0 0.85rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.games-category--ps .games-category-title {
  color: #d8b4fe;
}

.games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.game-chip:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
  transform: translateY(-1px);
}

.game-chip--ps {
  border-color: rgba(167, 139, 250, 0.22);
  background: rgba(167, 139, 250, 0.08);
}

.game-chip--ps:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.14);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.16);
}

/* —— Promos — bento tactical cards —— */
.promos-section {
  padding-bottom: 4rem;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .promos-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
  }

  .promo-card {
    grid-column: span 2;
  }

  .promo-card--cashback { grid-column: 1 / span 2; }
  .promo-card--pack { grid-column: 3 / span 2; }
  .promo-card--night { grid-column: 5 / span 2; }
  .promo-card--balance { grid-column: 1 / span 3; }
  .promo-card--ps { grid-column: 4 / span 3; }
}

@media (max-width: 767px) {
  .promo-card--featured {
    grid-column: 1 / -1;
  }
}

.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0;
  clip-path: var(--hud-clip-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 20px 20px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  pointer-events: none;
}

.promo-card-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 80%;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.promo-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.promo-card:hover .promo-card-glow {
  opacity: 0.85;
}

.promo-card-index {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.12);
}

.promo-card-inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  padding: 1.15rem 1.2rem 1.25rem;
}

.promo-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0;
  flex-shrink: 0;
}

.promo-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.28rem 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--neon);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(34, 211, 238, 0.35);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
}

.promo-day::before {
  content: "[";
  margin-right: 0.15rem;
  color: rgba(249, 115, 22, 0.85);
}

.promo-day::after {
  content: "]";
  margin-left: 0.15rem;
  color: rgba(249, 115, 22, 0.85);
}

.promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-label {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-value {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--price-fluid);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.promo-value-unit {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.85;
}

.promo-value--dual {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.promo-value-sep {
  opacity: 0.35;
  font-weight: 400;
}

.promo-value--sm {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.promo-hint {
  margin: 0;
  padding-top: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.promo-featured-badge {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.35), rgba(0, 0, 0, 0.75));
  border: 1px solid rgba(249, 115, 22, 0.55);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
  box-shadow: 0 0 16px var(--tactical-glow);
}

.promo-card--featured:not(.promo-card--video) {
  min-height: 12rem;
  padding-top: 2rem;
}

.promo-card--featured .promo-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

/* Per-day accent colors */
.promo-card--cashback .promo-card-glow { background: rgba(34, 211, 238, 0.45); }
.promo-card--cashback .promo-icon {
  color: var(--neon);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}
.promo-card--cashback:hover {
  border-color: rgba(34, 211, 238, 0.4) !important;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card--pack .promo-card-glow { background: rgba(167, 139, 250, 0.4); }
.promo-card--pack .promo-icon {
  color: var(--violet);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.25);
}
.promo-card--pack:hover {
  border-color: rgba(167, 139, 250, 0.4) !important;
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card--night .promo-card-glow { background: rgba(99, 102, 241, 0.45); }
.promo-card--night .promo-icon {
  color: #a5b4fc;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}
.promo-card--night:hover {
  border-color: rgba(129, 140, 248, 0.4) !important;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.18), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card--balance .promo-card-glow { background: rgba(249, 115, 22, 0.4); }
.promo-card--balance .promo-icon {
  color: var(--tactical);
  font-size: 0.7rem;
  box-shadow: 0 0 20px var(--tactical-glow);
}
.promo-card--balance:hover {
  border-color: rgba(249, 115, 22, 0.45) !important;
  box-shadow: 0 0 40px var(--tactical-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card--ps .promo-card-glow {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(34, 211, 238, 0.35));
}
.promo-card--ps .promo-icon--ps {
  color: #fff;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.25), rgba(34, 211, 238, 0.2));
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.35);
}
.promo-card--ps:hover {
  border-color: rgba(249, 115, 22, 0.5) !important;
  box-shadow:
    0 0 50px rgba(249, 115, 22, 0.2),
    0 0 60px rgba(34, 211, 238, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.45);
}

/* —— Club floor map —— */
.club-map-section {
  padding-bottom: 2rem;
}

.club-map-title {
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 0 28px rgba(251, 191, 36, 0.35));
}

.club-map-shell {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(34, 211, 238, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(249, 115, 22, 0.1), transparent 50%),
    rgba(0, 0, 0, 0.55) !important;
  border: 1px solid rgba(34, 211, 238, 0.22) !important;
  box-shadow:
    0 0 60px rgba(34, 211, 238, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.club-map-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 191, 36, 0.9) 30%,
    rgba(34, 211, 238, 0.75) 70%,
    transparent
  );
  pointer-events: none;
}

.club-map-circuit {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

.club-map-legend {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.club-map-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.club-legend-swatch {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 0.15rem;
  box-shadow: 0 0 10px currentColor;
}

.club-legend-swatch--standard {
  background: var(--neon);
  color: var(--neon);
}

.club-legend-swatch--vip {
  background: var(--tactical);
  color: var(--tactical);
}

.club-legend-swatch--ps {
  background: var(--violet);
  color: var(--violet);
}

.club-legend-swatch--trio {
  background: #e879f9;
  color: #e879f9;
  box-shadow: 0 0 10px rgba(232, 121, 249, 0.55);
}

/* Blueprint floor plan */
.club-blueprint {
  position: relative;
  z-index: 1;
}

.club-plan-frame {
  position: relative;
  padding: 1.15rem 1.2rem 1.35rem;
  border-radius: 0.85rem;
  border: 2px solid rgba(251, 191, 36, 0.42);
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(34, 211, 238, 0.1), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(249, 115, 22, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.42);
  box-shadow:
    inset 0 0 60px rgba(34, 211, 238, 0.05),
    0 0 36px rgba(251, 191, 36, 0.1);
}

.club-plan-frame > * {
  position: relative;
  z-index: 1;
}

.club-plan-frame::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  pointer-events: none;
}

.club-plan-frame::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border-radius: 0.5rem;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 92% 85% at 50% 50%, #000 10%, transparent 80%);
  pointer-events: none;
}

.club-plan-eyebrow {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.club-plan-heading {
  margin: 0.25rem 0 1rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 48%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(251, 191, 36, 0.28));
}

.club-plan-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.club-plan-services-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.club-plan-service {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 0.35rem;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.club-plan-service--entrance {
  flex: 1 1 7rem;
  border-style: solid;
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

.club-plan-upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.club-plan-zone {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  min-height: 4.75rem;
  padding: 0.75rem 0.9rem;
  text-align: left;
  color: #fff;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.club-plan-zone-kicker {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.club-plan-zone-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.club-plan-zone-meta {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.48);
}

.club-plan-zone-badge {
  margin-top: 0.2rem;
  font-size: 0.5rem;
}

.club-plan-zone--ps {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: inset 0 0 30px rgba(167, 139, 250, 0.1);
}

.club-plan-zone--ps:hover,
.club-plan-zone--ps:focus-visible {
  border-color: rgba(167, 139, 250, 0.75);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.22);
  transform: translateY(-2px);
}

.club-plan-zone--trio {
  border-color: rgba(232, 121, 249, 0.45);
  background: linear-gradient(145deg, rgba(192, 38, 211, 0.12), rgba(0, 0, 0, 0.42));
}

.club-plan-zone--trio:hover,
.club-plan-zone--trio:focus-visible {
  border-color: rgba(232, 121, 249, 0.8);
  box-shadow: 0 0 24px rgba(232, 121, 249, 0.25);
  transform: translateY(-2px);
}

.club-plan-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: stretch;
}

.club-plan-block {
  padding: 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.club-plan-block--standard {
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow: inset 0 0 40px rgba(34, 211, 238, 0.05);
}

.club-plan-block--vip {
  min-width: clamp(4.5rem, 12vw, 6.5rem);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: inset 0 0 36px rgba(249, 115, 22, 0.07);
}

.club-plan-block-label {
  margin: 0 0 0.65rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.club-plan-grid {
  display: grid;
  gap: 0.45rem;
}

.club-plan-grid--standard {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.club-plan-grid--vip {
  grid-template-columns: 1fr;
}

button.club-seat {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  min-height: 3.1rem;
  padding: 0.35rem 0.25rem 0.4rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s var(--ease-out),
    background 0.2s ease;
}

.club-seat-screen {
  display: block;
  width: 72%;
  height: 1.35rem;
  border-radius: 0.22rem 0.22rem 0.1rem 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.06);
}

.club-seat-screen::after {
  content: "";
  display: block;
  width: 38%;
  height: 0.18rem;
  margin: 0.12rem auto 0;
  border-radius: 0 0 0.12rem 0.12rem;
  background: rgba(255, 255, 255, 0.12);
}

.club-seat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.club-seat--standard {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: inset 0 0 16px rgba(34, 211, 238, 0.08);
}

.club-seat--standard .club-seat-screen {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: inset 0 0 14px rgba(34, 211, 238, 0.12);
}

.club-seat--standard:hover,
.club-seat--standard:focus-visible,
.club-seat--standard.is-active {
  border-color: rgba(34, 211, 238, 0.65);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.22);
  transform: translateY(-2px);
}

.club-seat--vip {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: inset 0 0 16px rgba(249, 115, 22, 0.1);
}

.club-seat--vip .club-seat-screen {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: inset 0 0 14px rgba(249, 115, 22, 0.15);
}

.club-seat--vip:hover,
.club-seat--vip:focus-visible,
.club-seat--vip.is-active {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .club-plan-upper {
    grid-template-columns: 1fr;
  }

  .club-plan-main {
    grid-template-columns: 1fr;
  }

  .club-plan-block--vip {
    min-width: 0;
  }

  .club-plan-grid--vip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .club-plan-grid--standard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .club-plan-grid--standard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .club-seat {
    min-height: 2.75rem;
  }
}

.club-blueprint--legacy {
  position: absolute;
  inset: 0.4rem;
  border: 2px solid rgba(251, 191, 36, 0.45);
  border-radius: 0.6rem;
  box-shadow:
    0 0 24px rgba(251, 191, 36, 0.12),
    inset 0 0 40px rgba(34, 211, 238, 0.04);
  pointer-events: none;
}

.blueprint-grid-bg {
  position: absolute;
  inset: 0.65rem;
  border-radius: 0.45rem;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 15%, transparent 78%);
  pointer-events: none;
}

.blueprint-services {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
}

.blueprint-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 0.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blueprint-service--entrance {
  flex: 1 1 8rem;
  justify-content: flex-start;
  border-style: solid;
  border-color: rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(0, 0, 0, 0.35));
}

.blueprint-service-arrow {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.55);
}

.blueprint-upper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 5.5rem;
}

.blueprint-room {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  min-height: 5rem;
  padding: 0.85rem 1rem;
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

button.blueprint-room {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.blueprint-room-kicker {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blueprint-room-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.blueprint-room-meta {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.blueprint-room-badge {
  margin-top: 0.25rem;
  padding: 0.18rem 0.45rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5d0fe;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(232, 121, 249, 0.5);
  clip-path: var(--hud-clip-sm);
  border-radius: 0;
  box-shadow: 0 0 14px rgba(232, 121, 249, 0.35);
}

.blueprint-room--ps {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: inset 0 0 36px rgba(167, 139, 250, 0.1);
}

.blueprint-room--ps:hover,
.blueprint-room--ps:focus-visible {
  border-color: rgba(167, 139, 250, 0.75);
  box-shadow:
    0 0 28px rgba(167, 139, 250, 0.25),
    inset 0 0 40px rgba(167, 139, 250, 0.12);
  transform: translateY(-2px);
}

.blueprint-room--trio {
  border-color: rgba(232, 121, 249, 0.5);
  background: linear-gradient(145deg, rgba(192, 38, 211, 0.14), rgba(0, 0, 0, 0.45));
  box-shadow:
    inset 0 0 48px rgba(232, 121, 249, 0.1),
    0 0 32px rgba(192, 38, 211, 0.08);
}

.blueprint-room--trio .blueprint-room-title {
  text-shadow: 0 0 20px rgba(232, 121, 249, 0.45);
}

.blueprint-room--trio:hover,
.blueprint-room--trio:focus-visible {
  border-color: rgba(232, 121, 249, 0.85);
  box-shadow:
    0 0 32px rgba(232, 121, 249, 0.35),
    inset 0 0 48px rgba(192, 38, 211, 0.15);
  transform: translateY(-2px);
}

.blueprint-aisle {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 6, 0.55);
}

.blueprint-aisle--horizontal {
  min-height: 1.35rem;
  margin: 0.15rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.blueprint-aisle--horizontal.blueprint-aisle--wide {
  min-height: 1.65rem;
}

.blueprint-aisle--vertical {
  width: clamp(1.1rem, 2.8vw, 1.85rem);
  min-height: 100%;
  border-left: 1px dashed rgba(255, 255, 255, 0.1);
  border-right: 1px dashed rgba(255, 255, 255, 0.1);
}

.blueprint-aisle--major {
  width: clamp(1.35rem, 3.2vw, 2.1rem);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.06), rgba(3, 3, 6, 0.6), rgba(249, 115, 22, 0.06));
}

.blueprint-aisle-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.blueprint-aisle--horizontal .blueprint-aisle-label {
  writing-mode: horizontal-tb;
  transform: none;
}

.blueprint-arena {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  min-height: 14rem;
}

.blueprint-wing {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.65rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.blueprint-wing--standard {
  flex: 1 1 auto;
  border-color: rgba(34, 211, 238, 0.12);
  box-shadow: inset 0 0 50px rgba(34, 211, 238, 0.04);
}

.blueprint-wing--vip {
  flex: 0 0 clamp(4.5rem, 11vw, 6.5rem);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.06);
}

.blueprint-wing-label {
  margin: 0;
  padding: 0 0.25rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blueprint-rows {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
}

.blueprint-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.blueprint-row-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(34, 211, 238, 0.55);
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

.blueprint-desks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  flex: 1;
  justify-content: flex-start;
}

.blueprint-row--short .blueprint-desks {
  justify-content: flex-start;
}

.blueprint-desk-spacer {
  flex: 1;
  min-height: 2.35rem;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 0.3rem;
  opacity: 0.35;
}

.blueprint-vip-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

button.club-desk,
button.blueprint-room {
  appearance: none;
  -webkit-appearance: none;
}

.club-desk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.35rem;
  padding: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.6rem, 1.6vw, 0.7rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0.35rem;
  border-width: 1px;
  border-style: solid;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.club-desk--standard {
  border-color: rgba(34, 211, 238, 0.5);
}

.club-desk--vip {
  border-color: rgba(249, 115, 22, 0.5);
}

.club-desk--standard:hover,
.club-desk--standard:focus-visible {
  transform: scale(1.05);
  border-color: rgba(34, 211, 238, 0.85);
  background: rgba(34, 211, 238, 0.08);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.club-desk--vip:hover,
.club-desk--vip:focus-visible {
  transform: scale(1.05);
  border-color: rgba(249, 115, 22, 0.85);
  background: rgba(249, 115, 22, 0.08);
  box-shadow:
    0 0 18px rgba(249, 115, 22, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.club-desk.is-active {
  transform: scale(1.06);
  outline: 2px solid #fde68a;
  outline-offset: 2px;
}

.club-map-tooltip {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  z-index: 5;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.club-map-tooltip[hidden] {
  display: none;
}

.club-map-hint {
  position: relative;
  z-index: 2;
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .blueprint-upper {
    flex-direction: column;
    min-height: auto;
  }

  .blueprint-aisle--horizontal:not(.blueprint-aisle--wide) {
    min-height: 0.85rem;
    width: 100%;
  }

  .blueprint-arena {
    flex-direction: column;
    gap: 0.65rem;
  }

  .blueprint-aisle--vertical.blueprint-aisle--major {
    width: 100%;
    min-height: 1.25rem;
    border-left: none;
    border-right: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }

  .blueprint-aisle--vertical.blueprint-aisle--major .blueprint-aisle-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .blueprint-rows {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .blueprint-row {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 0.5rem);
  }

  .blueprint-aisle--vertical:not(.blueprint-aisle--major) {
    display: none;
  }

  .blueprint-wing--vip {
    flex: 1 1 auto;
  }

  .blueprint-vip-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .club-desk {
    min-width: 2.5rem;
    flex: 1 1 2.5rem;
    max-width: 3.25rem;
  }
}

@media (max-width: 640px) {
  .nav-links a[href="#club-map"] {
    display: none;
  }
}

/* —— Map & route —— */
.map-section {
  padding-bottom: 4rem;
}

.map-layout {
  max-width: 56rem;
  margin: 0 auto;
}

.map-card {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.map-card:hover {
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow:
    0 0 50px rgba(249, 115, 22, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.map-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.map-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.map-stars {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fbbf24;
  text-shadow:
    0 0 12px rgba(251, 191, 36, 0.55),
    0 0 24px rgba(251, 191, 36, 0.25);
}

.map-rating-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.map-rating-strong {
  color: #fbbf24;
  font-weight: 700;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0b10;
  text-decoration: none;
  background: linear-gradient(135deg, #fde68a 0%, var(--tactical) 55%, #ea580c 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 24px var(--tactical-glow),
    0 4px 16px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}

.btn-route:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 36px rgba(249, 115, 22, 0.65),
    0 6px 20px rgba(0, 0, 0, 0.45);
}

.map-frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
  min-height: 280px;
  background: rgba(0, 0, 0, 0.45);
}

.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-footnote {
  margin: 0.85rem 0 0;
  text-align: center;
}

.map-org-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neon);
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-org-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Rules block (under map) */
.rules-block {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.rules-callout {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  border-color: rgba(249, 115, 22, 0.35);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(34, 211, 238, 0.08) 100%);
  box-shadow:
    inset 0 0 32px rgba(249, 115, 22, 0.08),
    0 0 40px rgba(249, 115, 22, 0.12);
}

.rules-callout-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .rules-callout-head {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
  }
}

.rules-callout-badge {
  flex-shrink: 0;
  font-size: 0.58rem;
  animation: rules-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes rules-badge-pulse {
  50% {
    box-shadow:
      inset 0 0 12px rgba(249, 115, 22, 0.15),
      0 0 22px rgba(249, 115, 22, 0.35);
  }
}

.rules-callout-title {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--text-fluid-xl);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.rules-callout-text {
  margin: 0;
  max-width: 52rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.rules-callout-text strong {
  color: #fde68a;
  font-weight: 600;
}

.rules-footnote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.rules-footnote-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--neon);
  font-weight: 500;
  text-decoration: none;
}

.rules-footnote-link:hover {
  color: #fff;
  text-decoration: underline;
}

.map-section .rules-grid {
  margin-bottom: 0;
}

.map-section .legal-card-title {
  font-size: var(--text-fluid-base);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 6, 0.85);
  backdrop-filter: blur(20px);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

.site-footer-brand {
  min-width: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(76, 117, 163, 0.55);
  background: rgba(76, 117, 163, 0.16);
  box-shadow: 0 0 22px rgba(76, 117, 163, 0.22);
  transform: translateY(-1px);
}

.footer-social-link--vk:hover {
  color: #dce9f8;
}

.footer-social-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.footer-social-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

@media (min-width: 640px) {
  .site-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

@media (max-width: 479px) {
  .site-header .yandex-rating-badge iframe {
    width: 128px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .nav-links a:not(:first-child):not(:last-child) {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
}

.legal-main {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.rules-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.legal-card,
.legal-doc {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 1rem;
}

.legal-card-title {
  margin: 0 0 1rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--text-fluid-lg);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.legal-card--allowed {
  border-color: rgba(52, 211, 153, 0.22);
  box-shadow: inset 0 0 24px rgba(52, 211, 153, 0.06);
}

.legal-card--allowed .legal-card-title {
  color: #a7f3d0;
}

.legal-card--forbidden {
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: inset 0 0 24px rgba(249, 115, 22, 0.06);
}

.legal-card--forbidden .legal-card-title {
  color: #fdba74;
}

.legal-doc h2 {
  margin: 1.75rem 0 0.75rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: var(--text-fluid-lg);
  font-weight: 700;
  color: var(--text);
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.legal-card--allowed .legal-list li::before {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.55);
}

.legal-card--forbidden .legal-list li::before {
  background: var(--tactical);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.55);
}

.legal-list--plain li::before {
  background: var(--neon);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.35);
}

.legal-note {
  margin-top: 1.25rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42) !important;
}

.legal-inline-link {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-inline-link:hover {
  color: #fff;
}

.legal-back {
  margin: 1.5rem 0 0;
}

.legal-back-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-back-link:hover {
  color: var(--neon);
}

.site-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-legal a:hover,
.site-footer-legal a[aria-current="page"] {
  color: var(--neon);
}

@media (min-width: 640px) {
  .site-footer-meta {
    align-items: flex-end;
    text-align: right;
  }
}

/* ——— FAQ ——— */
.faq-section .section-shell {
  max-width: 52rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

.faq-question {
  cursor: pointer;
  font-family: var(--font-display, "Syne", system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  color: var(--neon);
  content: "+";
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 1.1rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  color: var(--mist, #9aa3b5);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-answer strong {
  color: #e8ecf4;
  font-weight: 600;
}

.faq-link {
  color: var(--neon);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.35);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: #67e8f9;
}

/* ——— Contact NAP ——— */
.contact-nap {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
}

.contact-nap-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-nap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.contact-nap-label {
  color: var(--neon);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.contact-nap-value {
  color: #e8ecf4;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.contact-nap-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-nap-link:hover {
  color: var(--neon);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .zone-panel,
  .hero-scroll-line,
  .loader-ring,
  .rules-callout-badge {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
