/* ============================================================
   LoopLynet — Game Development Studio
   Premium dark theme · looplynet.com
   ============================================================ */

:root {
  --bg: #0a0716;
  --bg-2: #110c26;
  --bg-3: #181136;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #eceaf6;
  --muted: #a49fc0;
  --violet: #8b5cf6;
  --magenta: #d946ef;
  --gold: #f5b014;
  --gold-2: #fbbf24;
  --green: #34d399;
  --grad: linear-gradient(100deg, #8b5cf6 0%, #d946ef 55%, #f59e0b 110%);
  --grad-soft: linear-gradient(100deg, rgba(139,92,246,.16), rgba(217,70,239,.12), rgba(245,158,11,.10));
  --radius: 20px;
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, .65);
  --glow: 0 0 42px rgba(139, 92, 246, .35);
  --tr: .35s cubic-bezier(.22, .68, .35, 1);
  --font: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  min-width: 300px;
}

body::before {
  content: "";
  position: fixed;
  inset: -90px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(139, 92, 246, .16), transparent 60%),
    radial-gradient(700px 500px at -10% 35%, rgba(217, 70, 239, .12), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(245, 158, 11, .08), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: bgDrift 28s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-36px, 24px) scale(1.05); }
  100% { transform: translate(28px, -20px) scale(1.03); }
}

.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: rgba(139, 92, 246, .45); }

/* ---------- Accessibility ---------- */

.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 300;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 0 0 14px 14px;
  transition: top .3s ease;
}

.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Utilities ---------- */

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 96px 0; position: relative; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(245, 176, 20, .35);
  background: rgba(245, 176, 20, .08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px var(--gold-2);
}

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.015em; }

h1 { font-size: clamp(2rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }

.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); margin-top: 18px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(217, 70, 239, .55);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px -8px rgba(217, 70, 239, .7); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--violet);
  background: rgba(139, 92, 246, .12);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: box-shadow var(--tr), border-color var(--tr);
  border-bottom: 1px solid transparent;
}

/* Background + blur live on a pseudo-element: backdrop-filter on the
   header itself would turn it into the containing block for the fixed
   mobile menu and clip it when the page is scrolled. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 7, 22, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.header.scrolled::before { opacity: 1; }

.header.scrolled {
  border-bottom-color: rgba(255, 255, 255, .07);
  box-shadow: 0 10px 40px -16px rgba(0, 0, 0, .6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.02em;
  z-index: 102;
}

.logo svg { width: 38px; height: 38px; transition: transform var(--tr); }
.logo:hover svg { transform: rotate(180deg) scale(1.08); }
.logo span em { font-style: normal; color: var(--gold-2); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-list a {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  transition: color var(--tr);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.nav-list a:hover, .nav-list a.active { color: var(--text); }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 24px; font-size: 14px; }

/* Burger */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
  z-index: 102;
  transition: background var(--tr);
}

.burger:hover { background: rgba(139, 92, 246, .18); }

.burger span {
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
}

.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb.o1 { width: 420px; height: 420px; background: rgba(139, 92, 246, .35); top: -80px; right: -60px; }
.hero-orb.o2 { width: 320px; height: 320px; background: rgba(217, 70, 239, .28); bottom: -40px; left: -80px; animation-delay: -3s; }
.hero-orb.o3 { width: 220px; height: 220px; background: rgba(245, 158, 11, .22); top: 38%; left: 56%; animation-delay: -6s; }

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .lead { max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.hero-stat b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat span { color: var(--muted); font-size: .86rem; }

/* hero visual card */

.hero-visual { position: relative; }

.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform var(--tr), box-shadow var(--tr);
}

.hero-card:hover { transform: translateY(-8px) rotate(-.6deg); box-shadow: var(--shadow), var(--glow); }

.hero-card .hero-photo {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .7);
  transition: transform var(--tr), box-shadow var(--tr);
}

.hero-card:hover .hero-photo {
  transform: scale(1.02);
  box-shadow: 0 22px 50px -14px rgba(0, 0, 0, .8), 0 0 36px rgba(139, 92, 246, .25);
}

.hero-card .hc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, .12);
  color: var(--muted);
  font-size: .85rem;
}

.hero-card .hc-foot b { color: var(--gold-2); font-size: 1.05rem; }

.hero-badge {
  position: absolute;
  top: -22px; right: -14px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 14px 30px -8px rgba(217, 70, 239, .6);
  animation: bob 4s ease-in-out infinite;
}

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Cards / features ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr), background var(--tr);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity var(--tr);
}

.card:hover {
  transform: translateY(-9px);
  border-color: rgba(139, 92, 246, .45);
  box-shadow: var(--shadow), var(--glow);
}

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

.card > * { position: relative; }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(139, 92, 246, .35);
  margin-bottom: 22px;
  transition: transform var(--tr);
}

.card:hover .card-icon { transform: scale(1.12) rotate(-6deg); }

.card-icon svg { width: 30px; height: 30px; }

.card h3 { margin-bottom: 11px; }
.card p { color: var(--muted); font-size: .95rem; }

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-2);
  transition: gap var(--tr);
}

.card:hover .card-link { gap: 13px; }

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--grad-soft);
  border-block: 1px solid var(--card-border);
  padding: 56px 0;
}

.stats-band .grid-4 { text-align: center; }

.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Game showcase ---------- */

.game-tease {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.game-tease-card {
  border-radius: 28px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  isolation: isolate;
  background: var(--bg-3);
}

.game-tease-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .09) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .9s ease;
  pointer-events: none;
  z-index: 3;
}

.game-tease-card:hover {
  transform: translateY(-12px);
  border-color: rgba(245, 176, 20, .55);
  box-shadow: 0 34px 80px -22px rgba(0, 0, 0, .85), 0 0 60px rgba(245, 176, 20, .14);
}

.game-tease-card:hover::after { transform: translateX(130%); }

/* visual stage */

.gt-visual {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gt-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 7, 22, .55) 100%);
  pointer-events: none;
}

.gt-photo {
  width: 100%;
  height: clamp(190px, 26vw, 280px);
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.22, .68, .35, 1), filter .5s ease;
}

.game-tease-card:hover .gt-photo {
  transform: scale(1.07);
  filter: saturate(1.15) brightness(1.06);
}

.gt-ribbon {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a0f04;
  background: linear-gradient(120deg, #fde68a, #f5b014);
  padding: 7px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 22px -6px rgba(245, 176, 20, .6);
  animation: bob 4.5s ease-in-out infinite;
}

/* body */

.gt-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 30px 32px;
  flex: 1;
}

.gt-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(245, 176, 20, .08);
  border: 1px solid rgba(245, 176, 20, .4);
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.game-tease-card h3 { font-size: 1.65rem; margin-bottom: 8px; }
.game-tease-card p { color: var(--muted); font-size: .93rem; max-width: 420px; margin-bottom: 18px; }

.gt-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

.gt-chip {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--card-border);
  padding: 6px 13px;
  border-radius: 100px;
  transition: border-color var(--tr), color var(--tr);
}

.gt-chip-gold { color: var(--gold-2); border-color: rgba(245, 176, 20, .4); background: rgba(245, 176, 20, .08); }

.game-tease-card:hover .gt-chip { border-color: rgba(139, 92, 246, .45); color: var(--text); }
.game-tease-card:hover .gt-chip-gold { border-color: rgba(245, 176, 20, .65); color: var(--gold-2); }

.gt-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 12px 30px -8px rgba(217, 70, 239, .55);
  transition: box-shadow var(--tr), transform var(--tr);
}

.gt-cta i { font-style: normal; transition: transform var(--tr); }

.game-tease-card:hover .gt-cta {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -8px rgba(217, 70, 239, .75);
}

.game-tease-card:hover .gt-cta i { transform: translateX(6px); }

/* ---------- Slot machine ---------- */

.slot-section { padding: 80px 0; }

.slot-machine {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 30px clamp(14px, 4vw, 38px) 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.slot-machine.theme-neon { background: linear-gradient(170deg, #251052 0%, #150933 55%, #0d0722 100%); }
.slot-machine.theme-royal { background: linear-gradient(170deg, #46270c 0%, #271305 55%, #140a04 100%); }

.slot-machine::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(245, 176, 20, .12) 80%, transparent 90%);
  animation: rotateSheen 10s linear infinite;
  pointer-events: none;
}

@keyframes rotateSheen { to { transform: rotate(360deg); } }

.slot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  position: relative;
}

.slot-title { font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-weight: 800; display: flex; align-items: center; gap: 12px; }
.slot-title svg { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(217, 70, 239, .45)); animation: bob 4s ease-in-out infinite; }

/* marquee lights */

.slot-lights {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 0 4px 18px;
  position: relative;
}

.slot-lights i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4a3a12;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .6);
  animation: bulb 1.8s linear infinite;
  animation-delay: calc(var(--i) * .14s);
}

@keyframes bulb {
  0%, 100% { background: #4a3a12; box-shadow: inset 0 1px 2px rgba(0, 0, 0, .6); }
  50% { background: #ffd34d; box-shadow: 0 0 10px #f5b014, 0 0 20px rgba(245, 176, 20, .55); }
}

.slot-machine.win .slot-lights i { animation-duration: .45s; }

.slot-rtp {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0, 0, 0, .3);
}

.slot-screen {
  background: rgba(0, 0, 0, .55);
  border: 2px solid rgba(245, 176, 20, .35);
  border-radius: 22px;
  padding: clamp(10px, 2.6vw, 20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 2vw, 16px);
  position: relative;
  box-shadow: inset 0 4px 30px rgba(0, 0, 0, .8), 0 0 40px rgba(245, 176, 20, .08);
}

.slot-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 16%),
    linear-gradient(0deg, rgba(255, 255, 255, .04), transparent 12%);
  pointer-events: none;
  z-index: 3;
}

.slot-screen::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  top: 50%;
  height: 0;
  border-top: 2px dashed rgba(245, 176, 20, .4);
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity .3s;
  z-index: 4;
}

.slot-machine.win .slot-screen::after {
  border-top: 3px solid #ffd34d;
  filter: drop-shadow(0 0 9px rgba(245, 176, 20, .9));
  animation: lineFlash .45s ease-in-out 5;
}

@keyframes lineFlash { 50% { opacity: .25; } }

/* payline arrows */

.pl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border: 8px solid transparent;
  z-index: 5;
  opacity: .75;
  filter: drop-shadow(0 0 6px rgba(245, 176, 20, .5));
}

.pl-arrow.left { left: 3px; border-left: 11px solid var(--gold-2); }
.pl-arrow.right { right: 3px; border-right: 11px solid var(--gold-2); }

.slot-machine.win .pl-arrow { animation: arrowPulse .45s ease-in-out 5; }

@keyframes arrowPulse {
  50% { opacity: .2; transform: translateY(-50%) scale(1.35); }
}

.reel {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02) 30%, rgba(255,255,255,.02) 70%, rgba(255,255,255,.07));
  overflow: hidden;
  position: relative;
  height: clamp(216px, 46vw, 330px);
  border: 1px solid rgba(255, 255, 255, .08);
}

.reel::before, .reel::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 26%;
  z-index: 2;
  pointer-events: none;
}

.reel::before { top: 0; background: linear-gradient(180deg, rgba(5,3,12,.85), transparent); }
.reel::after { bottom: 0; background: linear-gradient(0deg, rgba(5,3,12,.85), transparent); }

.reel-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: filter .25s ease;
}

.reel.spinning .reel-strip { filter: blur(1.7px) saturate(1.2) brightness(1.08); }

.reel-cell {
  height: calc(clamp(216px, 46vw, 330px) / 3);
  display: grid;
  place-items: center;
  padding: 9%;
  flex: none;
  position: relative;
}

.reel-cell::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .09), transparent 70%);
  pointer-events: none;
}

.reel-cell svg {
  width: 100%; height: 100%;
  max-width: 84px; max-height: 84px;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .55));
}

.reel-cell.win-cell { animation: winPulse .55s ease-in-out 4; }

@keyframes winPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(245, 176, 20, 0)); }
  50% { transform: scale(1.16); filter: drop-shadow(0 0 22px rgba(245, 176, 20, .95)); }
}

.slot-msg {
  text-align: center;
  min-height: 56px;
  display: grid;
  place-items: center;
  margin: 18px 0 6px;
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  position: relative;
}

.slot-msg .msg-win {
  color: var(--gold-2);
  text-shadow: 0 0 24px rgba(245, 176, 20, .65);
  animation: msgPop .5s cubic-bezier(.34, 1.56, .64, 1);
}

.slot-msg .msg-lose { color: var(--muted); font-weight: 600; font-size: .95rem; }

@keyframes msgPop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.slot-controls {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1.5fr 1.1fr;
  align-items: stretch;
  gap: 12px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(0, 0, 0, .3));
  border: 1px solid rgba(245, 176, 20, .22);
  border-radius: 22px;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 34px -16px rgba(0, 0, 0, .7);
}

.slot-meter {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .3));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 11px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}

.slot-meter:hover { border-color: rgba(245, 176, 20, .4); transform: translateY(-2px); }

.sm-ico {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: radial-gradient(circle at 32% 28%, rgba(245, 176, 20, .32), rgba(245, 176, 20, .07));
  border: 1px solid rgba(245, 176, 20, .4);
  box-shadow: 0 0 14px rgba(245, 176, 20, .15), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.sm-ico svg { width: 20px; height: 20px; }

.sm-txt { min-width: 0; }

.slot-meter span {
  display: block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.slot-meter b {
  display: block;
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(245, 176, 20, .35);
  white-space: nowrap;
}

.slot-machine.win .win-meter {
  border-color: rgba(245, 176, 20, .75);
  box-shadow: 0 0 22px rgba(245, 176, 20, .35), inset 0 1px 0 rgba(255, 255, 255, .1);
  animation: meterPulse .55s ease-in-out 4;
}

@keyframes meterPulse { 50% { transform: scale(1.04); } }

.bet-stepper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.bet-btn {
  width: 27px; height: 27px;
  border-radius: 50%;
  border: 1px solid rgba(245, 176, 20, .45);
  background: linear-gradient(180deg, rgba(245, 176, 20, .22), rgba(245, 176, 20, .07));
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  line-height: 1;
}

.bet-btn:hover { background: rgba(245, 176, 20, .38); transform: scale(1.14); box-shadow: 0 0 12px rgba(245, 176, 20, .4); }
.bet-btn:disabled { opacity: .3; cursor: not-allowed; transform: none; box-shadow: none; }

.spin-btn {
  border: none;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  cursor: pointer;
  padding: 14px 24px;
  box-shadow: 0 14px 34px -10px rgba(217, 70, 239, .65);
  transition: transform var(--tr), box-shadow var(--tr), filter var(--tr);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.spin-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, .3) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}

.spin-btn:hover:not(:disabled)::before { transform: translateX(130%); }

.spin-btn em {
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.spin-btn svg {
  width: 22px; height: 22px;
  flex: none;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
}

.spin-btn:hover:not(:disabled) svg { transform: rotate(180deg); }
.spin-btn:disabled svg { animation: spinRotate .7s linear infinite; }

@keyframes spinRotate { to { transform: rotate(360deg); } }

.spin-btn:not(:disabled) { animation: spinGlow 2.6s ease-in-out infinite; }
.spin-btn:hover:not(:disabled) { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 46px -10px rgba(217, 70, 239, .85); animation: none; }
.spin-btn:active:not(:disabled) { transform: scale(.97); }
.spin-btn:disabled { filter: grayscale(.6) brightness(.7); cursor: wait; }

@keyframes spinGlow {
  0%, 100% { box-shadow: 0 14px 34px -10px rgba(217, 70, 239, .65); }
  50% { box-shadow: 0 14px 42px -8px rgba(245, 176, 20, .7), 0 0 26px rgba(217, 70, 239, .4); }
}

/* big win overlay */

.bigwin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 70;
  pointer-events: none;
}

.bigwin span {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff7d6 0%, #f5b014 55%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 28px rgba(245, 176, 20, .6));
  animation: bigwinPop 1.8s cubic-bezier(.22, .68, .35, 1) forwards;
}

@keyframes bigwinPop {
  0% { transform: scale(.2) rotate(-6deg); opacity: 0; }
  18% { transform: scale(1.18) rotate(2deg); opacity: 1; }
  32% { transform: scale(1); }
  78% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* paytable */

.paytable { margin-top: 26px; position: relative; }

.paytable summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  list-style: none;
  padding: 10px;
  transition: color var(--tr);
}

.paytable summary:hover { color: var(--gold-2); }
.paytable summary::-webkit-details-marker { display: none; }

.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: .85rem;
}

.pay-row svg { width: 30px; height: 30px; flex: none; }
.pay-row b { color: var(--gold-2); margin-left: auto; font-variant-numeric: tabular-nums; }

/* confetti particles */

.particle {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 50;
  animation: confettiFall 1.3s cubic-bezier(.21, .61, .35, 1) forwards;
}

.particle.coin-p {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff7d6, #f5b014 48%, #92400e) !important;
  box-shadow: 0 0 10px rgba(245, 176, 20, .55);
  animation-duration: 1.55s;
}

@keyframes confettiFall {
  0% { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(720deg); }
}

.slot-note {
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 20px;
  position: relative;
}

/* ---------- Process / steps ---------- */

.steps { counter-reset: step; }

.step-card { padding-left: 86px; }

.step-card::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 30px; left: 26px;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .9;
}

/* ---------- Testimonials ---------- */

.testimonial { display: flex; flex-direction: column; gap: 20px; }

.testimonial .stars { display: flex; gap: 4px; }
.testimonial .stars svg { width: 19px; height: 19px; fill: var(--gold-2); filter: drop-shadow(0 0 6px rgba(245, 176, 20, .5)); }

.testimonial blockquote { color: var(--text); font-size: .98rem; font-style: italic; line-height: 1.7; }

.testimonial .t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex: none;
}

.t-author b { display: block; font-size: .95rem; }
.t-author span { color: var(--muted); font-size: .8rem; }

/* ---------- CTA band ---------- */

.cta-band {
  border-radius: 30px;
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  background:
    radial-gradient(600px 280px at 30% 0%, rgba(139, 92, 246, .35), transparent 65%),
    radial-gradient(600px 280px at 75% 100%, rgba(245, 158, 11, .22), transparent 65%),
    var(--bg-3);
  border: 1px solid rgba(139, 92, 246, .35);
  position: relative;
  overflow: hidden;
}

.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band .lead { max-width: 520px; margin-inline: auto; }
.cta-band .btn { margin-top: 34px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 170px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .lead { max-width: 640px; margin-inline: auto; }

/* ---------- About ---------- */

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg-3);
  padding: 36px;
  box-shadow: var(--shadow);
}

.value-list { list-style: none; display: grid; gap: 16px; margin-top: 28px; }

.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform var(--tr), border-color var(--tr);
}

.value-list li:hover { transform: translateX(8px); border-color: rgba(245, 176, 20, .4); }

.value-list svg { width: 24px; height: 24px; flex: none; margin-top: 2px; }
.value-list b { display: block; margin-bottom: 2px; }
.value-list p { color: var(--muted); font-size: .9rem; }

.timeline { position: relative; padding-left: 34px; display: grid; gap: 30px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--magenta), var(--gold));
  border-radius: 2px;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--magenta);
  box-shadow: 0 0 14px rgba(217, 70, 239, .7);
}

.timeline-item b { color: var(--gold-2); font-size: .85rem; letter-spacing: .1em; }
.timeline-item h3 { margin: 4px 0 6px; }
.timeline-item p { color: var(--muted); font-size: .93rem; }

.team-card { text-align: center; }

.team-avatar {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, .15);
  transition: transform var(--tr), border-color var(--tr);
}

.team-card:hover .team-avatar { transform: scale(1.1) rotate(5deg); border-color: var(--gold-2); }
.team-card span { color: var(--gold-2); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.team-card p { margin-top: 10px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }

.contact-info-card { display: grid; gap: 14px; }

.ci-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  transition: transform var(--tr), border-color var(--tr);
}

.ci-row:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, .45); }
.ci-row svg { width: 26px; height: 26px; flex: none; margin-top: 3px; }
.ci-row b { display: block; margin-bottom: 3px; }
.ci-row p, .ci-row a { color: var(--muted); font-size: .92rem; }
.ci-row a:hover { color: var(--gold-2); }

.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label { font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(0, 0, 0, .35);
  border: 1.5px solid var(--card-border);
  border-radius: 13px;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  padding: 14px 16px;
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}

.form-field textarea { min-height: 130px; resize: vertical; }

.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .18);
}

.form-success {
  display: none;
  background: rgba(52, 211, 153, .1);
  border: 1px solid rgba(52, 211, 153, .4);
  color: var(--green);
  border-radius: 13px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: .92rem;
  margin-top: 16px;
}

.form-success.show { display: block; animation: msgPop .4s ease; }

/* ---------- Legal pages ---------- */

.legal-wrap { max-width: 860px; margin: 0 auto; }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.legal-meta span {
  font-size: .8rem;
  color: var(--muted);
  border: 1px solid var(--card-border);
  background: var(--card);
  padding: 7px 15px;
  border-radius: 100px;
}

.legal-body h2 { font-size: 1.45rem; margin: 44px 0 14px; padding-top: 8px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--gold-2); }
.legal-body p { color: var(--muted); margin-bottom: 14px; }
.legal-body ul { color: var(--muted); margin: 0 0 16px 22px; display: grid; gap: 8px; }
.legal-body a { color: var(--gold-2); border-bottom: 1px dashed rgba(245, 176, 20, .4); transition: border-color var(--tr); }
.legal-body a:hover { border-bottom-style: solid; }

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: .88rem;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
}

.legal-body th, .legal-body td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--card-border);
  color: var(--muted);
  vertical-align: top;
}

.legal-body th { background: rgba(139, 92, 246, .14); color: var(--text); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-body tr:last-child td { border-bottom: none; }

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45)), var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 320px; margin-bottom: 20px; }

.footer-badges { display: flex; flex-wrap: wrap; gap: 9px; }

.footer-badges span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .04);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-badges .b-18 { color: var(--gold-2); border-color: rgba(245, 176, 20, .45); }

.footer-list { list-style: none; display: grid; gap: 11px; }

.footer-list a {
  color: var(--muted);
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--tr), transform var(--tr);
}

.footer-list a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0;
  transition: opacity var(--tr);
}

.footer-list a:hover { color: var(--text); transform: translateX(5px); }
.footer-list a:hover::before { opacity: 1; }

.footer-contact { list-style: none; display: grid; gap: 15px; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .9rem; }
.footer-contact svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-contact b { color: var(--text); display: block; font-size: .82rem; margin-bottom: 1px; }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 26px 0;
}

.footer-disclaimer p {
  color: #7d77a0;
  font-size: .78rem;
  line-height: 1.7;
  max-width: 1040px;
}

.footer-disclaimer p + p { margin-top: 10px; }
.footer-disclaimer strong { color: var(--muted); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-bottom p { color: var(--muted); font-size: .84rem; }

.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; }

.footer-legal-links a {
  color: var(--muted);
  font-size: .84rem;
  transition: color var(--tr);
  position: relative;
}

.footer-legal-links a:hover { color: var(--gold-2); }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22, .68, .35, 1), transform .8s cubic-bezier(.22, .68, .35, 1);
  transition-delay: var(--d, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .burger { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 5, 18, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 90px 20px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    z-index: 101;
  }

  /* centres the menu when it fits, allows scrolling when it doesn't */
  .nav-menu .nav-list { margin-top: auto; }
  .nav-menu .nav-cta-mobile { margin-bottom: auto; }

  .nav-menu.open { opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; gap: 8px; }

  .nav-list a {
    font-size: 1.45rem;
    padding: 12px 28px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .45s ease, transform .45s ease, color .3s ease;
  }

  .nav-menu.open .nav-list a { opacity: 1; transform: none; }
  .nav-menu.open .nav-list li:nth-child(1) a { transition-delay: .08s; }
  .nav-menu.open .nav-list li:nth-child(2) a { transition-delay: .14s; }
  .nav-menu.open .nav-list li:nth-child(3) a { transition-delay: .2s; }
  .nav-menu.open .nav-list li:nth-child(4) a { transition-delay: .26s; }
  .nav-menu.open .nav-list li:nth-child(5) a { transition-delay: .32s; }

  .nav-cta-desktop { display: none; }

  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .game-tease { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
}

@media (min-width: 992px) {
  .nav-cta-mobile { display: none; }
}

@media (max-width: 700px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .hero-stats { gap: 14px 28px; }
  .page-hero { padding: 140px 0 50px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { width: calc(100% - 28px); }
  .hero-actions .btn { width: 100%; }
  .slot-controls { grid-template-columns: 1fr 1fr; padding: 11px; gap: 9px; }
  .slot-controls .slot-meter:first-child { grid-column: 1 / -1; }
  .spin-btn { grid-column: 1 / -1; grid-row: 3; padding: 15px 20px; }
  .slot-meter { padding: 10px 12px; }
  .sm-ico { width: 32px; height: 32px; }
  .sm-ico svg { width: 17px; height: 17px; }
  .hero-badge { right: 0; }
  .step-card { padding-left: 30px; padding-top: 78px; }
  .step-card::after { left: 30px; }
  .card { padding: 28px 22px; }
  .gt-photo { height: 180px; }
  .gt-body { padding: 22px 20px 26px; }
  .gt-cta { width: 100%; justify-content: center; }
}

@media (max-width: 340px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 20px); }
  .nav { height: 68px; }
  .logo { font-size: 17px; }
  .logo svg { width: 30px; height: 30px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .slot-machine { padding: 20px 10px 24px; border-radius: 20px; }
  .reel-cell { padding: 6%; }
}
