:root {
  --bg-deep: #0c0608;
  --bg-card: rgba(22, 12, 18, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --gold: #f0c85c;
  --gold-dim: #b8891f;
  --casino-red: #c41e3a;
  --casino-red-dark: #7f1022;
  --felt: #0d2818;
  --felt-glow: rgba(16, 120, 72, 0.25);
  --cyan: #5eead4;
  --text: #f4f0e8;
  --text-muted: #a89890;
  --border: rgba(240, 200, 92, 0.35);
  --radius: 16px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-casino: "Bebas Neue", "Syne", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: 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-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(196, 30, 58, 0.18), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.12) 3px,
      rgba(0, 0, 0, 0.12) 6px
    );
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

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

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

/* Animated mesh background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(196, 30, 58, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 40%, rgba(240, 200, 92, 0.08), transparent 45%),
    radial-gradient(ellipse 55% 50% at 95% 60%, rgba(13, 40, 24, 0.5), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(240, 200, 92, 0.06), transparent 45%),
    var(--bg-deep);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(64px, 64px);
  }
}

.orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 14s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 320px;
  height: 320px;
  background: var(--casino-red);
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: 48%;
  right: -10%;
  animation-delay: -4s;
  opacity: 0.22;
}

.orb:nth-child(3) {
  width: 260px;
  height: 260px;
  background: #0d5c2e;
  bottom: 12%;
  left: 35%;
  animation-delay: -7s;
  opacity: 0.28;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -24px) scale(1.05);
  }
}

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

/* Marquee — лента как в зале */
.casino-marquee {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: linear-gradient(90deg, var(--casino-red-dark), #1a0a0e 40%, #1a0a0e 60%, var(--casino-red-dark));
  border-block: 1px solid rgba(240, 200, 92, 0.35);
  box-shadow: 0 0 24px rgba(196, 30, 58, 0.25);
}

.casino-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.45rem 0;
  font-family: var(--font-casino);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(240, 200, 92, 0.5);
  animation: marquee-scroll 22s linear infinite;
}

.casino-marquee__track span {
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .casino-marquee__track {
    animation: none;
    justify-content: center;
    width: auto;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: rgba(12, 6, 8, 0.88);
  border-bottom: 1px solid var(--border);
}

.site-header--casino {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(196, 30, 58, 0.35);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--gold) 0%, var(--casino-red) 100%);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #1a0508;
  box-shadow: 0 0 28px rgba(196, 30, 58, 0.55), 0 0 20px rgba(240, 200, 92, 0.25);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(120deg, #ffd56b 0%, var(--gold) 35%, #c41e3a 95%);
  background-size: 200% auto;
  color: #1a0508;
  box-shadow: 0 6px 28px rgba(196, 30, 58, 0.45), 0 0 20px rgba(240, 200, 92, 0.2);
  animation: shine 4s ease infinite;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 197, 71, 0.45);
}

@keyframes shine {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.btn-ghost {
  background: rgba(196, 30, 58, 0.12);
  color: var(--text);
  border: 1px solid rgba(196, 30, 58, 0.45);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 200, 92, 0.08);
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s var(--ease-out) both;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-up 0.8s var(--ease-out) 0.08s both;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  animation: fade-up 0.8s var(--ease-out) 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fade-up 0.8s var(--ease-out) 0.24s both;
}

.hero-visual {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 30, 58, 0.4),
    0 0 60px rgba(240, 200, 92, 0.12);
  animation: fade-up 1s var(--ease-out) 0.32s both;
}

.casino-screen {
  position: relative;
}

.casino-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.casino-screen img {
  position: relative;
  z-index: 0;
}

/* Витрина под героем */
.hero-lobby {
  margin-top: 2.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 40, 24, 0.35), rgba(22, 12, 18, 0.75));
  border: 1px solid rgba(240, 200, 92, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-lobby__label {
  margin: 0 0 1rem;
  font-family: var(--font-casino);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
}

.hero-lobby__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
  align-items: stretch;
}

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

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

.hero-lobby__tile {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 92, 0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  background: #0a0608;
}

.hero-lobby__tile:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.35);
}

.hero-lobby__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 72px;
  aspect-ratio: 16 / 10;
}

.hero-lobby__tile:last-child img {
  aspect-ratio: 10 / 16;
  min-height: 100px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-felt {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Stats — фишки со снимками */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.stat-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  backdrop-filter: blur(12px);
}

.stat-card strong {
  font-family: var(--font-casino);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(240, 200, 92, 0.35);
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-card--casino {
  padding: 0.85rem 1rem 1.15rem;
  border-radius: 999px 999px 24px 24px;
  border-color: rgba(196, 30, 58, 0.35);
  background: linear-gradient(180deg, rgba(30, 10, 14, 0.95), rgba(13, 40, 24, 0.2));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.stat-card__thumb {
  width: 88px;
  height: 56px;
  margin: 0 auto 0.65rem;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.stat-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats--casino .stat-card strong {
  font-size: 1.65rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-head-casino {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head-casino .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-suits {
  display: block;
  font-size: 1.1rem;
  color: var(--casino-red);
  letter-spacing: 0.5em;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 12px rgba(196, 30, 58, 0.6);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-title--casino {
  font-family: var(--font-casino);
  font-size: clamp(2rem, 5vw, 2.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff6dd, var(--gold), #fff6dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(196, 30, 58, 0.45));
}

.section-sub {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 2.5rem;
}

/* Карточки игр — как в лобби казино */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.game-card {
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, rgba(35, 18, 22, 0.95), rgba(10, 6, 8, 0.98));
  border: 1px solid rgba(240, 200, 92, 0.28);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 30, 58, 0.25), 0 0 40px rgba(240, 200, 92, 0.08);
  border-color: rgba(240, 200, 92, 0.55);
}

.game-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050304;
}

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

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

.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-casino);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  background: var(--casino-red);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.game-card__badge--green {
  background: #0d5c2e;
}

.game-card__badge--gold {
  background: linear-gradient(120deg, var(--gold-dim), var(--gold));
  color: #1a0508;
}

.game-card__badge--muted {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-casino);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  z-index: 1;
  text-shadow: 0 2px 8px #000;
}

.game-card:hover .game-card__play {
  opacity: 1;
}

.game-card__body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.game-card__body h3 {
  font-family: var(--font-casino);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  color: var(--gold);
}

.game-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Article + media */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

  .nav-links {
    display: none;
  }
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.media-frame--casino {
  border: 2px solid rgba(240, 200, 92, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(196, 30, 58, 0.25);
}

.prose {
  color: var(--text-muted);
}

.prose p {
  margin: 0 0 1rem;
}

.prose strong {
  color: var(--text);
}

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

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

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out);
}

.gallery figure:hover {
  transform: scale(1.02);
}

.gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

.gallery--casino .gallery-tile {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(240, 200, 92, 0.35);
  background: linear-gradient(180deg, rgba(26, 10, 12, 0.9), rgba(8, 4, 6, 0.95));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.gallery--casino .gallery-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.gallery-tile__link {
  position: relative;
  display: block;
  color: inherit;
}

.gallery-tile__link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-tile__cta {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-casino);
  font-size: 1rem;
  letter-spacing: 0.15em;
  background: linear-gradient(120deg, var(--gold), #ffd56b);
  color: #1a0508;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-tile:hover .gallery-tile__cta {
  opacity: 1;
  transform: translateY(0);
}

.gallery--casino figcaption {
  font-family: var(--font-body);
  border-top: 1px solid rgba(196, 30, 58, 0.25);
}

/* FAQ — полоса превью */
.faq-visuals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(13, 40, 24, 0.2);
  border: 1px dashed rgba(240, 200, 92, 0.25);
}

.faq-visuals img {
  border-radius: 8px;
  border: 1px solid rgba(240, 200, 92, 0.35);
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.25s, opacity 0.25s;
}

.faq-visuals img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s;
}

details.faq-item[open] {
  border-color: rgba(232, 197, 71, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  text-align: left;
  transition: background 0.25s;
}

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

.faq-item summary:hover {
  background: var(--bg-glass);
}

.faq-item summary::after {
  content: "▼";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(232, 197, 71, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  transition: transform 0.35s var(--ease-out);
}

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

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0;
}

.faq-answer p {
  margin: 0;
}

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

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer .btn {
  margin-top: 1rem;
}

.site-footer--casino {
  background: linear-gradient(180deg, transparent, rgba(196, 30, 58, 0.08));
  border-top-color: rgba(196, 30, 58, 0.35);
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-chips img {
  border-radius: 8px;
  border: 1px solid rgba(240, 200, 92, 0.35);
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}

.footer-chips img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

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

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

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.stagger-children.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-children.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-children.is-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-children.is-visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-children.is-visible > *:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-children.is-visible > *:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
