:root {
  --bg-deep: #031510;
  --bg-card: rgba(6, 40, 28, 0.72);
  --bg-card-solid: #062a1c;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-glow: rgba(16, 185, 129, 0.35);
  --gold: #d4af37;
  --gold-soft: #e8c547;
  --text: #ecfdf5;
  --text-muted: #a7d4c0;
  --border: rgba(52, 211, 153, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-ui: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(5, 150, 105, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212, 175, 55, 0.06), transparent 45%),
    linear-gradient(180deg, #031510 0%, #052a1a 40%, #031510 100%);
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 30%, var(--green-400) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px, 64px 64px;
  pointer-events: none;
}

a {
  color: var(--green-400);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--green-600);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(3, 21, 16, 0.92) 0%, rgba(3, 21, 16, 0.75) 100%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
}

.header-inner > .btn-primary {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .header-inner .logo {
    grid-column: 1;
  }

  .header-inner .nav-main {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid rgba(52, 211, 153, 0.12);
    margin-top: 0.35rem;
    padding-top: 0.65rem;
  }

  .header-inner .btn-primary {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 24px var(--green-glow);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.35rem;
}

.nav-main a {
  color: rgba(236, 253, 245, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--green-400);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, var(--green-600) 45%, var(--green-700) 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 28px rgba(16, 185, 129, 0.45),
    0 20px 50px rgba(5, 150, 105, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 36px rgba(16, 185, 129, 0.55),
    0 24px 56px rgba(5, 150, 105, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--green-400);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--green-500);
  color: var(--text);
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-badge span {
  color: var(--gold);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Градиент на бренде: без clip — сплошной цвет; с clip — золото-изумруд */
.hero-brand {
  font-style: normal;
  font-weight: 700;
  color: #6ee7b7;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-brand {
    background-image: linear-gradient(135deg, #6ee7b7 0%, var(--green-400) 38%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.hero-title-line {
  font-weight: 600;
  color: rgba(236, 253, 245, 0.96);
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  color: rgba(167, 212, 192, 0.98);
  max-width: 36em;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: var(--green-400);
  display: block;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.12),
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(16, 185, 129, 0.14);
  min-height: min(320px, 52vw);
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(6, 50, 32, 0.6) 0%, #030d0a 100%),
    linear-gradient(145deg, #062a1c 0%, #041a12 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(16, 185, 129, 0.15));
  pointer-events: none;
}

/* Sections */
section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(52, 211, 153, 0.45);
  transform: translateY(-2px);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--text);
  font-weight: 700;
}

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

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.game-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.game-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.game-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* CTA strip */
.cta-strip {
  margin: 2rem 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.25) 0%, rgba(3, 21, 16, 0.9) 50%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--border);
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta-strip p {
  margin: 0 auto 1.25rem;
  max-width: 560px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green-400);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-body p {
  margin: 0 0 0.75rem;
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  background: rgba(3, 21, 16, 0.85);
}

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

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

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--green-400);
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Inner page */
.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.page-hero .lead {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
  font-size: 1.05rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose ul {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-aside-grid {
  display: grid;
  grid-template-columns: 1fr min(320px, 36vw);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .layout-aside-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Главная: премиум-казино, эффекты, сетки ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-home .fx-lights {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 15% 20%, rgba(16, 185, 129, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 30%, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(ellipse 35% 25% at 50% 95%, rgba(5, 150, 105, 0.12), transparent 50%);
  animation: fx-breathe 10s ease-in-out infinite alternate;
}

.page-home .fx-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 0%, rgba(1, 10, 6, 0.55) 100%);
}

@keyframes fx-breathe {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes btn-pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 8px 28px rgba(16, 185, 129, 0.45),
      0 0 40px rgba(52, 211, 153, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 10px 36px rgba(16, 185, 129, 0.65),
      0 0 56px rgba(52, 211, 153, 0.45);
  }
}

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

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .fx-lights,
  .btn-pulse,
  .marquee-track,
  .hero-badge-pulse,
  .hero-visual--framed,
  .cta-mega__shine,
  .hero-chip,
  .lux-card,
  .stat-card,
  .photo-wall__item,
  .section-eyebrow,
  .logo img,
  .highlight-card,
  .steps-row__item,
  .split-showcase__mini .mini-tile {
    animation: none !important;
  }

}

.hero--premium {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero--premium .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.hero-chips {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: rgba(236, 253, 245, 0.35);
}

.hero-chip--gold {
  color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-chip {
  display: inline-block;
  animation: chip-float 3.2s ease-in-out infinite;
}

.hero-chip:nth-child(1) {
  animation-delay: 0s;
}

.hero-chip:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-chip:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-chip:nth-child(4) {
  animation-delay: 1.2s;
}

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

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-400);
}

.hero-badge-pulse {
  animation: badge-pulse 2.5s ease-in-out infinite;
  border-radius: 4px;
  padding: 0.1em 0.35em;
}

.hero-meta--cards {
  gap: 0.75rem;
}

.hero-meta-card {
  flex: 1;
  min-width: 140px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(6, 40, 28, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero-meta-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.hero-meta-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 0.15rem;
}

.btn-gold {
  background: linear-gradient(135deg, #ca8a04 0%, var(--gold) 40%, var(--gold-soft) 100%);
  color: #1a1508;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  color: #1a1508;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15),
    0 12px 32px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-pulse {
  animation: btn-pulse-glow 2.8s ease-in-out infinite;
}

.hero-visual--framed {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 40px rgba(16, 185, 129, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.5);
  animation: hero-frame-pulse 4s ease-in-out infinite;
}

@keyframes hero-frame-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.35),
      0 0 40px rgba(16, 185, 129, 0.18),
      0 20px 50px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(52, 211, 153, 0.45),
      0 0 56px rgba(16, 185, 129, 0.32),
      0 24px 56px rgba(0, 0, 0, 0.55);
  }
}

.hero-visual--framed .hero-visual-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1a1508;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
}

.hero-visual--framed > img {
  position: relative;
  z-index: 1;
}

.marquee-wrap {
  border-block: 1px solid rgba(52, 211, 153, 0.15);
  background: linear-gradient(90deg, rgba(6, 42, 28, 0.95), rgba(3, 25, 18, 0.98), rgba(6, 42, 28, 0.95));
  padding: 0.65rem 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee-x 38s linear infinite;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(236, 253, 245, 0.55);
}

.marquee-track span:nth-child(odd) {
  color: var(--green-400);
}

.section-band {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.section-band--stats {
  position: relative;
  overflow: hidden;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, rgba(3, 21, 16, 0.97) 0%, rgba(3, 18, 12, 0.94) 100%);
  border-block: 1px solid rgba(52, 211, 153, 0.1);
}

/* Декор только за контентом, не пересекает карточки */
.section-band--stats::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(240px, 32vw);
  height: min(240px, 32vw);
  background: url("../../images/roulette.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.section-band--stats .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section-band--stats::after {
    display: none;
  }
}

.section-band--dark {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.1), transparent 55%),
    linear-gradient(135deg, rgba(2, 18, 12, 0.96) 0%, rgba(2, 12, 8, 0.94) 100%);
  border-block: 1px solid rgba(212, 175, 55, 0.12);
}

.section-band--dark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(180px, 22vw);
  max-width: 100%;
  background: url("../../images/bj.png") left center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.section-band--dark .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section-band--dark::before {
    opacity: 0.06;
    width: min(120px, 28vw);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: var(--radius);
  background: rgba(4, 26, 17, 0.96);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-card--accent {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, rgba(22, 40, 28, 0.98), rgba(35, 30, 12, 0.96));
}

.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: #f0fdf4;
  text-shadow: 0 0 28px rgba(52, 211, 153, 0.45);
}

.stat-card__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-400);
}

.section-eyebrow--gold {
  color: var(--gold-soft);
}

.section-head--line .section-eyebrow + h2 {
  position: relative;
  padding-bottom: 1rem;
}

.section-head--line h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--green-400), transparent);
}

.section-head--left {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-head--left h2::after {
  margin-left: 0;
}

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

@media (max-width: 900px) {
  .cards-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .cards-grid--6 {
    grid-template-columns: 1fr;
  }
}

.lux-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(8, 48, 32, 0.75) 0%, rgba(4, 24, 16, 0.85) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.06), transparent 45%, rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.lux-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 185, 129, 0.12);
}

.lux-card:hover::before {
  opacity: 1;
}

.lux-card--hot {
  border-color: rgba(212, 175, 55, 0.35);
}

.lux-card--hot::after {
  content: "HOT";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
}

.lux-card--new::after {
  content: "NEW";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-400);
}

.lux-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.lux-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.lux-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

@media (max-width: 1100px) {
  .highlight-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .highlight-row {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(3, 20, 14, 0.94);
  border: 1px solid rgba(52, 211, 153, 0.18);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.highlight-card--jackpot {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(160deg, rgba(45, 36, 10, 0.96), rgba(4, 28, 18, 0.96));
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--gold-soft);
}

.highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .split-showcase {
    grid-template-columns: 1fr;
  }
}

.split-showcase__mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mini-tile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(6, 40, 28, 0.5);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.mini-tile span {
  font-weight: 700;
  font-size: 0.95rem;
}

.mini-tile small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mini-tile:hover {
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: var(--text);
}

.mini-tile--accent {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, rgba(40, 32, 8, 0.35), rgba(6, 40, 28, 0.5));
}

.split-showcase__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 60px rgba(16, 185, 129, 0.1);
  background: linear-gradient(165deg, #041a12 0%, #020806 100%);
}

.split-showcase__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(520px, 72vh);
  min-height: 280px;
  background: #020a07;
}

.split-showcase__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.split-showcase__tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(5, 150, 105, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.section-games {
  position: relative;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(16, 185, 129, 0.06), transparent 55%);
}

.bento-games {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(100px, 120px);
  gap: 0.85rem;
}

.bento-item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: var(--bg-card-solid);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.bento-item:hover {
  transform: scale(1.02);
  z-index: 2;
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(16, 185, 129, 0.15);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 100%;
}

.bento-item--hero {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  min-height: 220px;
}

.bento-item--tall {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
  min-height: 220px;
}

.bento-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0.75rem 0.75rem 0.55rem;
  background: linear-gradient(0deg, rgba(1, 12, 8, 0.95) 0%, rgba(1, 12, 8, 0.5) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.72rem;
  color: rgba(236, 253, 245, 0.92);
  pointer-events: none;
}

.bento-item__cap strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-soft);
}

@media (max-width: 900px) {
  .bento-games {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(95px, 110px);
  }

  .bento-item--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }

  .bento-item--tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }
}

@media (max-width: 520px) {
  .bento-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steps-row {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

.steps-row__item {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: rgba(6, 40, 28, 0.45);
  border: 1px solid var(--border);
  text-align: center;
}

.steps-row__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.steps-row__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.steps-row__item span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.trust-pill {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: rgba(6, 40, 28, 0.5);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--text-muted);
}

.cta-mega {
  padding: 0 0 1rem;
}

.cta-mega__inner {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(165deg, rgba(8, 55, 38, 0.55) 0%, rgba(3, 16, 12, 0.92) 50%, rgba(30, 25, 8, 0.35) 100%);
  overflow: hidden;
}

.cta-mega__shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 120%;
  background: linear-gradient(55deg, transparent 30%, rgba(255, 255, 255, 0.06) 45%, transparent 60%);
  animation: cta-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shine {
  0%,
  100% {
    transform: translateX(-10%) rotate(12deg);
  }
  50% {
    transform: translateX(25%) rotate(12deg);
  }
}

.cta-mega__inner h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

.cta-mega__inner p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.cta-mega__inner code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--green-400);
}

.cta-mega__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ——— Доп. анимации и витрины (главная) ——— */
@keyframes lux-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stat-pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes eyebrow-shine {
  0%,
  100% {
    filter: brightness(1);
    letter-spacing: 0.32em;
  }
  50% {
    filter: brightness(1.15);
    letter-spacing: 0.34em;
  }
}

@keyframes logo-soft {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
  }
  50% {
    box-shadow: 0 0 32px rgba(52, 211, 153, 0.55);
  }
}

.page-home .lux-card {
  animation: lux-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.page-home .lux-card:nth-child(1) {
  animation-delay: 0.04s;
}

.page-home .lux-card:nth-child(2) {
  animation-delay: 0.1s;
}

.page-home .lux-card:nth-child(3) {
  animation-delay: 0.16s;
}

.page-home .lux-card:nth-child(4) {
  animation-delay: 0.22s;
}

.page-home .lux-card:nth-child(5) {
  animation-delay: 0.28s;
}

.page-home .lux-card:nth-child(6) {
  animation-delay: 0.34s;
}

.page-home .lux-card:nth-child(7) {
  animation-delay: 0.4s;
}

.page-home .lux-card:nth-child(8) {
  animation-delay: 0.46s;
}

.page-home .lux-card:nth-child(9) {
  animation-delay: 0.52s;
}

.page-home .stat-card {
  animation: stat-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.page-home .stat-card:nth-child(1) {
  animation-delay: 0.05s;
}

.page-home .stat-card:nth-child(2) {
  animation-delay: 0.12s;
}

.page-home .stat-card:nth-child(3) {
  animation-delay: 0.19s;
}

.page-home .stat-card:nth-child(4) {
  animation-delay: 0.26s;
}

.page-home .section-head--line .section-eyebrow {
  animation: eyebrow-shine 4s ease-in-out infinite;
}

.page-home .logo img {
  animation: logo-soft 3.5s ease-in-out infinite;
}

.section-wall {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.section-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 21, 16, 0.92) 0%, rgba(3, 14, 10, 0.96) 100%),
    url("../../images/crazy.png") 12% 50% / min(55vw, 520px) auto no-repeat,
    url("../../images/6.png") 92% 20% / min(28vw, 220px) auto no-repeat;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.section-wall .container {
  position: relative;
  z-index: 1;
}

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

@media (max-width: 900px) {
  .photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .photo-wall {
    grid-template-columns: 1fr;
  }
}

.photo-wall__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.22);
  text-decoration: none;
  color: inherit;
  background-color: #041a12;
  background-image: linear-gradient(165deg, rgba(2, 12, 8, 0.15) 0%, rgba(1, 8, 5, 0.92) 65%), var(--photo-wall-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.35s;
  animation: lux-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.photo-wall__item:nth-child(1) {
  animation-delay: 0.06s;
}

.photo-wall__item:nth-child(2) {
  animation-delay: 0.12s;
}

.photo-wall__item:nth-child(3) {
  animation-delay: 0.18s;
}

.photo-wall__item:nth-child(4) {
  animation-delay: 0.24s;
}

.photo-wall__item:nth-child(5) {
  animation-delay: 0.3s;
}

.photo-wall__item:nth-child(6) {
  animation-delay: 0.36s;
}

.photo-wall__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.photo-wall__item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(16, 185, 129, 0.15);
}

.photo-wall__item:hover::after {
  transform: translateX(100%);
}

.photo-wall__item:hover h3,
.photo-wall__item:focus-visible h3 {
  color: #fff;
}

.photo-wall__item:hover p,
.photo-wall__item:focus-visible p {
  color: rgba(236, 253, 245, 0.92);
}

.photo-wall__item h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.photo-wall__item p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(236, 253, 245, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.photo-wall__item--a {
  --photo-wall-img: url("../../images/1.png");
}

.photo-wall__item--b {
  --photo-wall-img: url("../../images/2.png");
}

.photo-wall__item--c {
  --photo-wall-img: url("../../images/4.png");
}

.photo-wall__item--d {
  --photo-wall-img: url("../../images/5.png");
}

.photo-wall__item--e {
  --photo-wall-img: url("../../images/roulette.png");
}

.photo-wall__item--f {
  --photo-wall-img: url("../../images/dc.png");
}

.split-showcase__mini .mini-tile:nth-child(1) {
  animation: lux-rise 0.5s 0.05s backwards;
}

.split-showcase__mini .mini-tile:nth-child(2) {
  animation: lux-rise 0.5s 0.12s backwards;
}

.split-showcase__mini .mini-tile:nth-child(3) {
  animation: lux-rise 0.5s 0.19s backwards;
}

.split-showcase__mini .mini-tile:nth-child(4) {
  animation: lux-rise 0.5s 0.26s backwards;
}

.highlight-card {
  animation: lux-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.highlight-card:nth-child(1) {
  animation-delay: 0.04s;
}

.highlight-card:nth-child(2) {
  animation-delay: 0.1s;
}

.highlight-card:nth-child(3) {
  animation-delay: 0.16s;
}

.highlight-card:nth-child(4) {
  animation-delay: 0.22s;
}

.highlight-card:nth-child(5) {
  animation-delay: 0.28s;
}

.highlight-card:nth-child(6) {
  animation-delay: 0.34s;
}

.steps-row__item {
  animation: stat-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.steps-row__item:nth-child(1) {
  animation-delay: 0.08s;
}

.steps-row__item:nth-child(2) {
  animation-delay: 0.14s;
}

.steps-row__item:nth-child(3) {
  animation-delay: 0.2s;
}

.steps-row__item:nth-child(4) {
  animation-delay: 0.26s;
}
