/* Dragon Money (Драгон Мани) — casino landing — dragonmoney16.ru */
:root {
  --bg: #0a0514;
  --bg2: #15082a;
  --velvet: #1a0a2e;
  --gold: #ffd700;
  --gold-dim: #c9a227;
  --neon-pink: #ff2d6a;
  --neon-cyan: #00f5d4;
  --neon-purple: #b14cff;
  --red-felt: #8b1538;
  --text: #fff8f0;
  --muted: #c4b8d4;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(0.34, 1.2, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.05rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Sparkle canvas */
.sparkles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Ambient */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float-glow 12s ease-in-out infinite;
}

.ambient__glow--1 {
  width: 55vw;
  height: 55vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, var(--neon-pink), transparent 70%);
  animation-delay: 0s;
}

.ambient__glow--2 {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  right: -15%;
  background: radial-gradient(circle, var(--neon-purple), transparent 70%);
  animation-delay: -4s;
}

.ambient__glow--3 {
  width: 40vw;
  height: 40vw;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, var(--gold), transparent 65%);
  opacity: 0.2;
  animation-delay: -7s;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 3%) scale(1.05); }
  66% { transform: translate(-3%, 5%) scale(0.95); }
}

.ambient__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

/* Marquee */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 32px;
  background: linear-gradient(90deg, #2d0a4e, #5c1266 50%, #2d0a4e);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 32px;
}

.wrap {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 5, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo__flare {
  position: absolute;
  inset: -6px -10px;
  background: conic-gradient(from 180deg, transparent, rgba(255, 215, 0, 0.15), transparent, rgba(255, 45, 106, 0.12), transparent);
  border-radius: 12px;
  animation: spin-flare 6s linear infinite;
  z-index: -1;
  opacity: 0.8;
}

@keyframes spin-flare {
  to { transform: rotate(360deg); }
}

.logo__dragon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  animation: dragon-bob 2.5s ease-in-out infinite;
}

@keyframes dragon-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  opacity: 0.95;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}

.btn--neon {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold) 0%, #ffec80 40%, var(--gold-dim) 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.25) inset,
    0 0 24px rgba(255, 215, 0, 0.55),
    0 6px 0 #8b6914;
}

.btn--neon:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35) inset,
    0 0 36px rgba(255, 215, 0, 0.75),
    0 8px 0 #8b6914;
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 2.8s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  40%, 100% { left: 200%; }
}

.btn--jackpot {
  color: #1a0520;
  font-weight: 800;
  background: linear-gradient(180deg, #fff9c4 0%, var(--gold) 35%, var(--gold-dim) 100%);
  box-shadow:
    0 0 0 2px #fff inset,
    0 0 40px rgba(255, 45, 106, 0.6),
    0 0 80px rgba(255, 215, 0, 0.35);
  animation: jackpot-pulse-border 2s ease-in-out infinite;
}

@keyframes jackpot-pulse-border {
  0%, 100% { box-shadow: 0 0 0 2px #fff inset, 0 0 40px rgba(255, 45, 106, 0.5), 0 0 60px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 0 2px #fff inset, 0 0 56px rgba(255, 45, 106, 0.85), 0 0 100px rgba(255, 215, 0, 0.5); }
}

.btn__pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--neon-pink);
  opacity: 0;
  animation: ring-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

.btn--jackpot:hover {
  transform: scale(1.05);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn--outline:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-2px);
}

.btn--wide {
  width: 100%;
  max-width: 360px;
}

.btn--xl {
  padding: 1.1rem 2.25rem;
  font-size: 0.9rem;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 32px);
  display: flex;
  align-items: center;
  padding: 5.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(177, 76, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(255, 45, 106, 0.12), transparent),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.hero__lights {
  position: absolute;
  top: 12%;
  width: 12px;
  height: 45%;
  background: repeating-linear-gradient(
    180deg,
    var(--gold) 0 8px,
    #333 8px 16px,
    var(--neon-pink) 16px 24px,
    #333 24px 32px,
    var(--neon-cyan) 32px 40px,
    #333 40px 48px
  );
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  animation: bulbs 0.8s steps(1) infinite;
  opacity: 0.85;
}

.hero__lights--left { left: 2%; }
.hero__lights--right { right: 2%; }

@keyframes bulbs {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
  100% { filter: brightness(1); }
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__badge {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--neon-cyan);
  margin: 0 0 0.5rem;
  text-shadow: 0 0 20px var(--neon-cyan);
  animation: flicker-subtle 4s ease-in-out infinite;
}

@keyframes flicker-subtle {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.7; }
  94% { opacity: 1; }
}

.hero__title {
  margin: 0 0 0.75rem;
  line-height: 0.9;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  letter-spacing: 0.06em;
}

.hero__title-line--gold {
  background: linear-gradient(90deg, #fff6d4, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
  animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 45px rgba(255, 215, 0, 0.9)); }
}

.hero__title-line--neon {
  color: var(--text);
  text-shadow:
    0 0 10px var(--neon-pink),
    0 0 30px var(--neon-pink),
    0 0 60px var(--neon-purple);
  animation: neon-flicker 5s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  96% { opacity: 1; }
  97% { opacity: 0.85; }
  98% { opacity: 1; }
}

.hero__tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero__lead {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.5rem;
}

.hero__jackpot {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.6), rgba(45, 10, 78, 0.8));
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow:
    0 0 30px rgba(255, 45, 106, 0.35),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
  animation: jackpot-box-glow 2.5s ease-in-out infinite;
}

@keyframes jackpot-box-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 45, 106, 0.35), inset 0 0 40px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.45), inset 0 0 40px rgba(0, 0, 0, 0.35); }
}

.hero__jackpot-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--neon-cyan);
}

.hero__jackpot-digits {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Slot machine */
.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.slot-machine {
  position: relative;
  width: min(100%, 340px);
  padding: 1rem 1rem 1.25rem;
  background: linear-gradient(180deg, #3d2066 0%, #1a0a2e 40%, #0d0518 100%);
  border-radius: 20px;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 2px rgba(255, 45, 106, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(177, 76, 255, 0.25);
  animation: slot-float 4s ease-in-out infinite;
}

@keyframes slot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.slot-machine__top {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 15px var(--gold);
  margin-bottom: 0.75rem;
}

.slot-machine__window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: #050208;
  border-radius: 12px;
  border: 2px inset rgba(255, 255, 255, 0.1);
}

.slot-reel {
  height: 72px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1025, #0a0610);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.slot-reel__strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: reel-spin 2.8s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}

.slot-reel__strip--2 {
  animation-duration: 3.2s;
  animation-delay: -0.4s;
}

.slot-reel__strip--3 {
  animation-duration: 2.5s;
  animation-delay: -0.8s;
}

.slot-reel__strip span {
  flex-shrink: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
}

@keyframes reel-spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-504px); }
}

.slot-machine__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.15), transparent 65%);
  z-index: -1;
  animation: slot-aura 3s ease-in-out infinite;
}

@keyframes slot-aura {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.floating-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chip {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  border: 3px solid;
  animation: chip-float 5s ease-in-out infinite;
}

.chip--a {
  background: linear-gradient(145deg, #c41e3a, #5c0a18);
  border-color: var(--gold);
  color: var(--gold);
  top: 8%;
  right: 5%;
  animation-delay: 0s;
}

.chip--b {
  background: linear-gradient(145deg, #1a472a, #0a2010);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  bottom: 15%;
  left: 0;
  animation-delay: -1.5s;
}

.chip--c {
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  border-color: #fff;
  color: #1a0520;
  top: 55%;
  right: -5%;
  font-family: var(--font-display);
  animation-delay: -2.5s;
}

.chip--d {
  background: linear-gradient(145deg, #c41e3a, #5c0a18);
  border-color: var(--gold);
  color: var(--gold);
  bottom: 5%;
  right: 12%;
  animation-delay: -3.5s;
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

/* Strip badges */
.strip {
  padding: 2rem 0;
  background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.25), transparent);
  border-block: 1px solid rgba(255, 215, 0, 0.2);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.card-badge {
  padding: 0.65rem 1.4rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(26, 10, 46, 0.9);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.card-badge:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 30px rgba(255, 45, 106, 0.4);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--velvet {
  background: radial-gradient(ellipse at center, rgba(139, 21, 56, 0.2), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--velvet) 50%, var(--bg));
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.section-head__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--neon-pink);
  text-shadow: 0 0 15px var(--neon-pink);
  margin-bottom: 0.5rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: var(--text);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.section-head__text {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.section-head--center .section-head__text {
  margin-left: auto;
  margin-right: auto;
}

.grid-games {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-games {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-games {
    grid-template-columns: repeat(3, 1fr);
  }
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(61, 32, 102, 0.5), rgba(10, 5, 20, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 50px rgba(255, 45, 106, 0.25), 0 0 40px rgba(0, 245, 212, 0.15);
}

.game-card:hover .game-card__media img {
  transform: scale(1.08);
}

.game-card__shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.06), transparent 30%);
  animation: card-shine 8s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes card-shine {
  to { transform: rotate(360deg); }
}

.game-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.game-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 5, 20, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.game-card__body {
  position: relative;
  z-index: 3;
  padding: 1.15rem 1.35rem 1.45rem;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head--spaced {
  margin-top: clamp(3rem, 8vw, 4.5rem);
}

.section-head--tight {
  margin-bottom: 1rem;
}

.section-head--tight .section-head__text {
  margin-bottom: 0;
}

/* Mini game grid */
.grid-mini {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 520px) {
  .grid-mini {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .grid-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-mini {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.35);
  aspect-ratio: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.game-mini:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--neon-pink);
  box-shadow: 0 16px 40px rgba(255, 45, 106, 0.3);
}

.game-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.game-mini:hover img {
  transform: scale(1.1);
}

.game-mini__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.5rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  background: linear-gradient(0deg, rgba(10, 5, 20, 0.95) 0%, rgba(10, 5, 20, 0.4) 55%, transparent);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.9);
}

.neon-frame {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 24px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--velvet), var(--velvet)) padding-box,
    linear-gradient(135deg, var(--gold), var(--neon-pink), var(--neon-cyan), var(--gold)) border-box;
  box-shadow: 0 0 60px rgba(177, 76, 255, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.3);
  animation: frame-neon-pulse 3.5s ease-in-out infinite;
}

@keyframes frame-neon-pulse {
  0%, 100% {
    box-shadow: 0 0 50px rgba(177, 76, 255, 0.25), 0 0 30px rgba(255, 45, 106, 0.15), inset 0 0 60px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 90px rgba(255, 45, 106, 0.4), 0 0 50px rgba(0, 245, 212, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.3);
  }
}

/* Live block (image + copy inside neon frame) */
.live-block {
  text-align: left;
}

.live-block__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .live-block__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.live-block__visual {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 45, 106, 0.2);
}

.live-block__visual img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.live-block__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem 0.85rem;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  background: linear-gradient(0deg, rgba(10, 5, 20, 0.92) 30%, transparent);
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan);
}

.live-block__copy {
  text-align: center;
}

@media (min-width: 900px) {
  .live-block__copy {
    text-align: left;
  }

  .live-block__copy .section-head--center {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .live-block__copy .section-head__text {
    margin-left: 0;
    margin-right: 0;
  }
}

.live-block__extra {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 900px) {
  .live-block__extra {
    margin-left: 0;
    margin-right: 0;
  }
}

.live-block__copy .btn--wide {
  margin-inline: auto;
}

@media (min-width: 900px) {
  .live-block__copy .btn--wide {
    margin-inline: 0;
  }
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.bonus-tile {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 10, 78, 0.8), rgba(10, 5, 20, 0.95));
  border: 1px solid rgba(0, 245, 212, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.bonus-tile__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 245, 212, 0.2);
}

.bonus-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.bonus-tile:hover .bonus-tile__media img {
  transform: scale(1.05);
}

.bonus-tile__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.75rem 1.75rem;
}

.bonus-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: tile-sweep 4s ease-in-out infinite;
}

@keyframes tile-sweep {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.bonus-tile:hover {
  transform: scale(1.02);
}

.bonus-tile--hot {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 106, 0.2);
}

.bonus-tile__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.bonus-tile__label--hot {
  color: var(--neon-pink);
  animation: hot-blink 1.2s ease-in-out infinite;
}

@keyframes hot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.bonus-tile h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.06em;
}

.bonus-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bonus-tile strong {
  color: var(--gold);
}

.bonus-strip {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bonus-strip {
    grid-template-columns: 1fr 1fr;
  }
}

.bonus-strip__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(26, 10, 46, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.22);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.bonus-strip__card:hover {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.bonus-strip__card--alt {
  border-color: rgba(255, 45, 106, 0.35);
}

.bonus-strip__card--alt:hover {
  border-color: rgba(255, 45, 106, 0.55);
  box-shadow: 0 12px 36px rgba(255, 45, 106, 0.12);
}

.bonus-strip__card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.bonus-strip__text strong {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, transparent, rgba(45, 10, 78, 0.12) 40%, transparent);
  border-block: 1px solid rgba(255, 215, 0, 0.12);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 52rem;
  margin-inline: auto;
}

.faq__item {
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.28);
  background: linear-gradient(145deg, rgba(61, 32, 102, 0.35), rgba(10, 5, 20, 0.92));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item:hover {
  border-color: rgba(0, 245, 212, 0.35);
}

.faq__item[open] {
  border-color: rgba(255, 45, 106, 0.45);
  box-shadow: 0 12px 40px rgba(255, 45, 106, 0.12), 0 0 0 1px rgba(255, 215, 0, 0.15);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.1rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__item summary::-moz-list-bullet {
  list-style: none;
}

.faq__q::after {
  content: "+";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.35s var(--ease), color 0.25s, border-color 0.25s;
}

.faq__item[open] .faq__q::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--neon-pink);
  border-color: rgba(255, 45, 106, 0.5);
}

.faq__q:focus {
  outline: none;
}

.faq__q:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.faq__a {
  padding: 0 1.35rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  animation: faq-open 0.35s var(--ease);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__a p {
  margin: 0;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* CTA Vegas */
.cta {
  padding: 4rem 0 5rem;
}

.cta-vegas {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 28px;
  background: radial-gradient(ellipse at center top, rgba(255, 45, 106, 0.25), transparent 55%),
    linear-gradient(180deg, #2d0a4e, #0a0514);
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(255, 215, 0, 0.2);
}

.cta-vegas__rings {
  position: absolute;
  inset: -50%;
  background: repeating-conic-gradient(from 0deg, transparent 0deg 8deg, rgba(255, 215, 0, 0.03) 8deg 16deg);
  animation: cta-spin 40s linear infinite;
  pointer-events: none;
}

@keyframes cta-spin {
  to { transform: rotate(360deg); }
}

.cta-vegas__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold), 0 0 60px var(--neon-pink);
  animation: cta-title-pop 2s ease-in-out infinite;
}

@keyframes cta-title-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.cta-vegas__text {
  position: relative;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.cta-vegas__text strong {
  color: var(--neon-cyan);
}

.cta-vegas .btn {
  position: relative;
}

.cta-vegas__note {
  position: relative;
  margin-top: 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Хлебные крошки (видимые + microdata) */
.breadcrumbs {
  padding: 0.35rem 0 0.5rem;
  position: relative;
  z-index: 5;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs__item a {
  color: var(--neon-cyan);
  text-decoration: none;
}

.breadcrumbs__item a:hover {
  text-decoration: underline;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.breadcrumbs__item--current span {
  color: var(--gold);
  opacity: 0.95;
}

/* Карта разделов (лендинг «погулять») */
.landnav__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .landnav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .landnav__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .landnav__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landnav__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: linear-gradient(155deg, rgba(61, 32, 102, 0.4), rgba(10, 5, 20, 0.92));
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  min-height: 100%;
}

.landnav__card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 14px 36px rgba(255, 45, 106, 0.15);
}

.landnav__card-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
}

.landnav__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.landnav__card-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.landnav__story {
  margin-top: 2.5rem;
  padding: 1.5rem 1.65rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  background: rgba(26, 10, 46, 0.45);
}

.landnav__story-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.landnav__story p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.landnav__story p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  background: #050208;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.footer-seo a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-seo a:hover {
  text-shadow: 0 0 12px var(--gold);
  color: var(--neon-cyan);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Inner SEO landing pages (/mirror/, /login/, …) */
body.page--inner {
  padding-top: 0;
}

body.page--inner .page {
  padding-top: 0;
}

body.page--inner .site-header {
  top: 0;
}

.seo-main {
  padding: 6rem 0 4rem;
  max-width: 42rem;
  margin-inline: auto;
}

.seo-crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.seo-crumbs a {
  color: var(--neon-cyan);
  text-decoration: none;
}

.seo-crumbs a:hover {
  text-decoration: underline;
}

.seo-main h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.35);
}

.seo-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.seo-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.seo-text p {
  margin: 0 0 1.1rem;
}

.seo-text p:last-child {
  margin-bottom: 0;
}

.seo-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.seo-actions .btn--outline {
  border-color: var(--muted);
  color: var(--text);
}

.seo-actions .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-inner a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.footer-inner a:hover {
  text-shadow: 0 0 12px var(--gold);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .ambient__glow,
  .logo__flare,
  .logo__dragon,
  .btn__shine,
  .btn__pulse,
  .btn--jackpot,
  .hero__lights,
  .hero__badge,
  .hero__title-line--gold,
  .hero__title-line--neon,
  .hero__jackpot,
  .slot-machine,
  .slot-reel__strip,
  .slot-reel__strip--2,
  .slot-reel__strip--3,
  .slot-machine__glow,
  .chip,
  .game-card__shine,
  .neon-frame,
  .bonus-tile::after,
  .bonus-tile__label--hot,
  .cta-vegas__rings,
  .cta-vegas__title,
  .faq__a {
    animation: none !important;
  }

  .faq__q::after {
    transition: none;
  }

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

  .sparkles {
    display: none;
  }
}
