/* LunaSpinz – pink neon casino */
:root {
  --bg: #0c0610;
  --bg-deep: #08040c;
  --bg-elevated: #160a1c;
  --card: #1a0d22;
  --card-hover: #24122e;
  --text: #fff5fb;
  --muted: #c9a8bc;
  --line: rgba(255, 105, 180, 0.18);
  --pink: #ff4fa3;
  --pink-2: #ff7ac8;
  --pink-soft: #ffb3de;
  --pink-hot: #ff2d95;
  --purple: #b44dff;
  --gold: #ffd6ef;
  --green: #2ecc71;
  --radius: 1.25rem;
  --shadow-pink: 0 14px 44px -10px rgba(255, 45, 149, 0.5);
  --font: Inter, system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --ig: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.page { position: relative; min-height: 100vh; }

.top-strip {
  position: relative; z-index: 55;
  background: linear-gradient(90deg, #1a0820, #3a0a2e 40%, #5a1040 60%, #1a0820);
  border-bottom: 1px solid rgba(255, 105, 180, 0.3);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--pink-soft);
}
.top-strip strong { color: #fff; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 100;
  background: linear-gradient(90deg, var(--pink-soft), var(--pink), var(--purple));
  box-shadow: 0 0 12px rgba(255, 79, 163, 0.7);
  transition: width 0.05s linear;
}

.particles { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.55; }
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 45, 149, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(180, 77, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 79, 163, 0.1), transparent 50%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.orb-1 { width: 420px; height: 420px; top: -10%; left: -8%; background: rgba(255, 45, 149, 0.28); }
.orb-2 { width: 380px; height: 380px; top: 40%; right: -12%; background: rgba(180, 77, 255, 0.18); animation-delay: -6s; }
.orb-3 { width: 300px; height: 300px; bottom: 5%; left: 30%; background: rgba(255, 122, 200, 0.12); animation-delay: -12s; }
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.12); }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(8, 4, 12, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; min-height: 4rem; padding: 0.5rem 0;
}
.nav-brand { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.nav-logo {
  height: 2.75rem; width: auto; max-width: 7rem; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 79, 163, 0.55));
}
.nav-wordmark {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, #fff, var(--pink-soft), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links {
  display: none; align-items: center; gap: 0.35rem;
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
}
.nav-links a {
  padding: 0.45rem 0.9rem; border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--pink-soft); background: rgba(255, 79, 163, 0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.nav-ig-desktop, .nav-cta-desktop { display: none; }

.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.6rem; height: 2.6rem; padding: 0.55rem; border-radius: 0.75rem;
  border: 1px solid var(--line); background: rgba(255, 79, 163, 0.08);
}
.nav-burger span {
  display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--pink-soft);
  transition: transform 0.28s, opacity 0.2s; transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; display: flex; align-items: flex-start;
  justify-content: center; padding: 0.75rem;
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s, visibility 0.28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.open[hidden] { display: flex !important; }
.mobile-menu-panel {
  width: min(100%, 26rem); margin-top: 3.5rem; border-radius: 1.35rem;
  border: 1px solid rgba(255, 105, 180, 0.35);
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(255, 79, 163, 0.18), transparent 55%),
    linear-gradient(165deg, #2a1035 0%, #100818 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 1rem 1rem 1.15rem;
  transform: translateY(-16px) scale(0.97); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.mobile-menu.open .mobile-menu-panel { transform: translateY(0) scale(1); opacity: 1; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 105, 180, 0.15);
}
.mobile-menu-brand { display: flex; align-items: center; gap: 0.7rem; }
.mobile-menu-logo {
  width: 2.75rem; height: 2.75rem; object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(255, 79, 163, 0.5));
}
.mobile-menu-brand strong {
  display: block; font-family: var(--display); font-size: 1.05rem;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mobile-menu-brand span { display: block; font-size: 0.75rem; color: var(--muted); }
.mobile-menu-close {
  width: 2.4rem; height: 2.4rem; border-radius: 0.7rem; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--pink-soft);
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.mobile-menu-links a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 0.95rem;
  border-radius: 0.95rem; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 105, 180, 0.12); font-weight: 600; font-size: 0.95rem;
}
.mobile-menu-links a:hover {
  background: rgba(255, 79, 163, 0.12); border-color: rgba(255, 105, 180, 0.35);
}
.mm-ico {
  width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0.55rem; background: rgba(255, 79, 163, 0.14); font-size: 1rem; flex-shrink: 0;
}
.mm-arrow { margin-left: auto; color: var(--pink); opacity: 0.7; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.mobile-menu-btn { width: 100%; border-radius: 0.9rem !important; min-height: 3rem; }
.mobile-menu-note {
  margin-top: 0.9rem; text-align: center; font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav-inner { min-height: 4.35rem; }
  .nav-logo { height: 3rem; max-width: 8rem; }
  .nav-wordmark { font-size: 1.15rem; }
  .nav-links { display: flex; flex: 1; justify-content: center; }
  .nav-ig-desktop, .nav-cta-desktop { display: inline-flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none !important; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border-radius: 999px; font-weight: 700; font-size: 0.875rem; padding: 0.6rem 1.15rem;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-xl { padding: 0.95rem 1.75rem; font-size: 1rem; }
.btn-cta {
  background: linear-gradient(135deg, #ffb3de 0%, var(--pink) 40%, var(--pink-hot) 100%);
  color: #2a0518;
  box-shadow: var(--shadow-pink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 18px 50px -8px rgba(255, 45, 149, 0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 79, 163, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.35);
  color: var(--pink-soft);
}
.btn-ghost:hover { background: rgba(255, 79, 163, 0.16); }
.btn-ig {
  background: rgba(255, 79, 163, 0.1); border: 1px solid rgba(255, 105, 180, 0.3);
  color: var(--pink-soft); border-radius: 999px; width: 2.35rem; height: 2.35rem; padding: 0;
}
.btn-ig:hover {
  background: var(--ig); border-color: transparent; color: #fff;
}
.btn-ig-gradient {
  background: var(--ig); color: #fff;
  box-shadow: 0 12px 32px -8px rgba(221, 42, 123, 0.45);
}
.btn-ig-gradient:hover { filter: brightness(1.08); transform: translateY(-1px); }
.pulse-glow { animation: pulse-glow 2.4s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 40px -10px rgba(255, 45, 149, 0.45); }
  50% { box-shadow: 0 16px 54px -6px rgba(255, 79, 163, 0.75); }
}
.btn-icon {
  display: inline-flex; width: 1.4rem; height: 1.4rem; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(0, 0, 0, 0.18); font-size: 0.65rem;
}
.gradient-text {
  background: linear-gradient(135deg, #fff, var(--pink-soft) 40%, var(--pink-hot));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero { position: relative; z-index: 2; padding: 1.5rem 0 3.5rem; }
.hero-main {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 720px; margin-inline: auto;
}
.brand-logo-wrap {
  position: relative; width: min(22rem, 88vw); min-height: 10rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.brand-logo {
  position: relative; z-index: 3; width: 100%; max-width: 22rem; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255, 79, 163, 0.55));
  animation: logo-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both,
             logo-float 4.8s ease-in-out 0.9s infinite;
}
.brand-logo-glow {
  position: absolute; inset: 10% 5%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 163, 0.4), transparent 70%);
  animation: glow-breathe 3s ease-in-out infinite; z-index: 1; pointer-events: none;
}
@keyframes logo-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.brand-name {
  font-family: var(--display); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 0.8rem; color: var(--pink-soft); margin-bottom: 0.25rem;
}
.brand-tagline {
  font-size: 0.95rem; color: var(--muted); font-weight: 500; margin-bottom: 1.25rem;
}
.brand-tagline em { font-style: normal; color: var(--pink-soft); font-weight: 600; }

.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.8rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 600; color: var(--muted);
  border: 1px solid rgba(255, 105, 180, 0.22); background: rgba(40, 10, 35, 0.5);
}
.pill.live { color: var(--pink-soft); border-color: rgba(255, 105, 180, 0.4); }
.pill .dot {
  width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 8px var(--pink); animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: var(--display); font-size: clamp(2rem, 6vw, 3.15rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.05rem; color: var(--muted); max-width: 34rem; margin: 0 auto 1.5rem; line-height: 1.65;
}
.hero-stack { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; width: 100%; }
.hero-play { min-width: min(100%, 18rem); }

.trust-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1rem;
  padding: 0.9rem 1.25rem; border-radius: 1rem;
  border: 1px solid rgba(255, 105, 180, 0.25);
  background: linear-gradient(165deg, rgba(40, 12, 40, 0.9), rgba(12, 4, 16, 0.95));
}
.trust-item { display: flex; flex-direction: column; align-items: center; min-width: 4.5rem; }
.trust-item strong { font-family: var(--display); font-size: 1.15rem; color: var(--pink-soft); line-height: 1.2; }
.trust-item span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-divider { width: 1px; height: 2rem; background: rgba(255, 105, 180, 0.25); }

.section { position: relative; z-index: 2; padding: 3.5rem 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(80, 10, 50, 0.2), transparent); }
.section-header { text-align: center; max-width: 36rem; margin: 0 auto 2.25rem; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.65rem; padding: 0.3rem 0.75rem;
  border-radius: 999px; border: 1px solid rgba(255, 105, 180, 0.3); background: rgba(255, 79, 163, 0.1);
}
.section-header h2 {
  font-family: var(--display); font-size: clamp(1.65rem, 4vw, 2.35rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.55rem;
}
.section-header p { color: var(--muted); font-size: 1rem; }

.deals-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; }
.deal-card {
  position: relative; border-radius: 1.35rem; padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid rgba(255, 105, 180, 0.35);
  background:
    radial-gradient(400px 180px at 100% 0%, rgba(255, 79, 163, 0.18), transparent 55%),
    linear-gradient(165deg, #2a1235 0%, #120818 100%);
  box-shadow: 0 0 0 1px rgba(255, 79, 163, 0.12), 0 24px 60px -18px rgba(255, 45, 149, 0.4);
  overflow: hidden;
}
.deal-card.featured::after {
  content: "HOT FOR LUNA";
  position: absolute; top: 0.9rem; right: 0.9rem; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.06em; color: #2a0518;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
  padding: 0.28rem 0.55rem; border-radius: 999px;
}
.deal-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; padding-right: 5.5rem; }
.deal-logo {
  width: 3.5rem; height: 3.5rem; border-radius: 0.9rem; background: #fff;
  display: flex; align-items: center; justify-content: center; padding: 0.35rem; flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.deal-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.deal-rank {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.15rem;
}
.deal-name { font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.deal-bonus {
  margin-bottom: 0.85rem; padding: 0.9rem 1rem; border-radius: 0.95rem;
  background: rgba(0, 0, 0, 0.28); border: 1px solid rgba(255, 105, 180, 0.2);
}
.bonus-label {
  display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.2rem;
}
.pct {
  font-family: var(--display); font-size: 1.45rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--pink-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.2;
}
.deal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tag {
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); color: var(--muted);
}
.tag-ex {
  background: rgba(255, 79, 163, 0.18) !important; color: var(--pink-soft) !important;
  border-color: rgba(255, 105, 180, 0.4) !important;
}
.tag-ns {
  background: rgba(46, 204, 113, 0.12); color: #7dffa8; border-color: rgba(46, 204, 113, 0.3);
}
.deal-actions { display: flex; flex-direction: column; gap: 0.65rem; }
.no-code { font-size: 0.78rem; color: var(--muted); text-align: center; }
.deal-actions .btn-cta { width: 100%; min-height: 3rem; font-size: 0.95rem; }

.why-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  padding: 1.35rem 1.2rem; border-radius: 1.15rem;
  border: 1px solid rgba(255, 105, 180, 0.16);
  background: linear-gradient(165deg, rgba(40, 14, 45, 0.9), rgba(12, 4, 16, 0.95));
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: rgba(255, 105, 180, 0.4); transform: translateY(-2px); }
.why-icon {
  font-size: 1.5rem; margin-bottom: 0.65rem; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center; border-radius: 0.75rem;
  background: rgba(255, 79, 163, 0.12); border: 1px solid rgba(255, 105, 180, 0.25);
}
.why-card h3 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--pink-soft); }
.why-card p { font-size: 0.92rem; color: var(--muted); }

.steps { display: flex; flex-direction: column; gap: 1rem; max-width: 40rem; margin-inline: auto; }
.step {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.2rem; border-radius: 1.1rem;
  border: 1px solid rgba(255, 105, 180, 0.16); background: rgba(30, 10, 35, 0.5);
}
.step-num { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--pink); min-width: 2.5rem; }
.step-body h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-body p { font-size: 0.92rem; color: var(--muted); }

.ig-panel {
  position: relative; width: 100%; max-width: 28rem; margin-inline: auto; border-radius: 1.25rem;
  border: 1px solid rgba(255, 105, 180, 0.28); overflow: hidden;
  background: linear-gradient(165deg, rgba(45, 12, 40, 0.95), rgba(12, 4, 16, 0.98));
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.55); text-align: left;
}
.ig-panel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(400px 160px at 20% 0%, rgba(221, 42, 123, 0.18), transparent 55%);
  pointer-events: none;
}
.ig-panel-content {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.35rem 1.2rem 1.4rem; text-align: center;
}
.ig-avatar-wrap { position: relative; width: 4.25rem; height: 4.25rem; flex-shrink: 0; }
.ig-avatar { width: 100%; height: 100%; object-fit: contain; }
.ig-ring {
  position: absolute; inset: -4px; border-radius: 50%; border: 2px solid transparent;
  background: linear-gradient(#1a0d22, #1a0d22) padding-box, var(--ig) border-box;
  pointer-events: none;
}
.ig-copy h2 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 0.4rem; }
.ig-copy p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.85rem; line-height: 1.5; }
.ig-copy p strong { color: var(--pink-soft); }
.ig-stats { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.ig-stats div { display: flex; flex-direction: column; align-items: center; min-width: 4rem; }
.ig-stats strong { font-family: var(--display); font-size: 0.95rem; color: var(--pink-soft); }
.ig-stats span { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
@media (min-width: 640px) {
  .ig-panel-content { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.15rem; padding: 1.4rem 1.35rem; }
  .ig-copy { flex: 1; }
  .ig-stats { justify-content: flex-start; }
}

.seo-longform { padding-bottom: 3rem; }
.seo-wrap { max-width: 42rem; margin-inline: auto; }
.seo-content h3 { font-family: var(--display); font-size: 1.15rem; color: var(--pink-soft); margin: 1.5rem 0 0.55rem; }
.seo-content p, .seo-content li { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.75rem; }
.seo-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.seo-content a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.seo-faq details {
  border: 1px solid rgba(255, 105, 180, 0.16); border-radius: 0.85rem;
  padding: 0.85rem 1rem; margin-bottom: 0.55rem; background: rgba(0, 0, 0, 0.2);
}
.seo-faq summary {
  cursor: pointer; font-weight: 600; color: var(--text); font-family: var(--display); list-style: none;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq details[open] summary { color: var(--pink); margin-bottom: 0.45rem; }
.seo-faq p { margin: 0; font-size: 0.92rem; }

.section-final { padding-top: 1rem; }
.final-cta {
  text-align: center; padding: 2.5rem 1.5rem; border-radius: 1.5rem;
  border: 1px solid rgba(255, 105, 180, 0.4);
  background:
    radial-gradient(500px 200px at 50% 0%, rgba(255, 79, 163, 0.25), transparent 55%),
    linear-gradient(165deg, #3a1040 0%, #120818 100%);
  box-shadow: 0 24px 60px -20px rgba(255, 45, 149, 0.4);
}
.final-cta h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: 0.55rem;
}
.final-cta p { color: var(--muted); margin-bottom: 1.35rem; max-width: 28rem; margin-inline: auto; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.footer {
  position: relative; z-index: 2; border-top: 1px solid var(--line);
  padding: 2.75rem 0 5.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 1.75rem; }
.footer-top {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center;
}
.footer-brand img {
  height: 3.5rem; width: auto; max-width: 10rem; object-fit: contain; margin: 0 auto 0.5rem;
  filter: drop-shadow(0 0 14px rgba(255, 79, 163, 0.45));
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); }
.footer-location { margin-top: 0.35rem !important; font-size: 0.9rem !important; color: var(--text) !important; }
.footer-location strong { color: var(--pink-soft); }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.25rem;
  font-size: 0.85rem; color: var(--muted);
}
.footer-nav a:hover { color: var(--pink-soft); }

.footer-help {
  border: 1px solid rgba(255, 105, 180, 0.22); border-radius: 1.15rem;
  padding: 1.25rem 1.15rem 1.35rem;
  background:
    radial-gradient(500px 160px at 10% 0%, rgba(255, 79, 163, 0.1), transparent 55%),
    linear-gradient(165deg, #24102e 0%, #100818 100%);
  text-align: left;
}
.footer-18-block { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.1rem; }
.badge-18 {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  min-width: 3rem; height: 3rem; padding: 0 0.55rem; border-radius: 0.75rem;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: #2a0518;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
  box-shadow: 0 8px 24px -8px rgba(255, 45, 149, 0.55);
}
.footer-help h2 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.35rem; }
.footer-help p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.footer-help p strong { color: var(--pink-soft); }
.help-label {
  font-size: 0.72rem !important; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pink) !important; font-weight: 700; margin-bottom: 0.45rem !important;
}
.help-links ul { display: flex; flex-direction: column; gap: 0.4rem; margin: 0 0 1rem; }
.help-links a { color: var(--text); font-size: 0.88rem; font-weight: 500; border-bottom: 1px solid transparent; }
.help-links a:hover { color: var(--pink-soft); border-color: rgba(255, 105, 180, 0.4); }
.help-note { display: inline-block; margin-left: 0.35rem; font-size: 0.75rem; color: var(--muted); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.fbadge {
  display: inline-flex; align-items: center; padding: 0.35rem 0.7rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--pink-soft); border: 1px solid rgba(255, 105, 180, 0.3); background: rgba(255, 79, 163, 0.1);
}
.footer-legal {
  font-size: 0.72rem; color: var(--muted); opacity: 0.9; max-width: 48rem;
  margin-inline: auto; text-align: center; line-height: 1.55;
}
.footer-legal a { color: var(--pink); }

.age-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(8, 4, 12, 0.94); border-top: 1px solid rgba(255, 105, 180, 0.35);
  backdrop-filter: blur(14px); box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.age-banner-inner {
  width: min(1120px, calc(100% - 1.25rem)); margin-inline: auto;
  display: flex; align-items: center; gap: 0.75rem; padding: 0.55rem 0; min-height: 2.75rem;
}
.age-banner-18 {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 2.15rem; height: 2.15rem; border-radius: 0.45rem; font-family: var(--display);
  font-weight: 800; font-size: 0.85rem; color: #2a0518;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}
.age-banner p { margin: 0; font-size: 0.72rem; line-height: 1.4; color: #d4b8c8; }
.age-banner strong { color: #fff; font-weight: 700; }
.age-banner a { color: var(--pink-soft); text-decoration: underline; text-underline-offset: 2px; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

body.age-locked { overflow: hidden; }
.age-gate {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center;
  justify-content: center; padding: 1rem;
}
.age-gate[hidden] { display: none !important; }
.age-gate-backdrop {
  position: absolute; inset: 0; background: rgba(8, 4, 12, 0.9); backdrop-filter: blur(12px);
}
.age-gate-card {
  position: relative; width: min(100%, 24rem); padding: 1.75rem 1.35rem 1.35rem;
  border-radius: 1.35rem; text-align: center; border: 1px solid rgba(255, 105, 180, 0.4);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(255, 79, 163, 0.2), transparent 55%),
    linear-gradient(165deg, #2a1235 0%, #100818 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: gate-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes gate-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.age-gate-logo {
  width: auto; max-width: 12rem; height: 4.5rem; object-fit: contain; margin: 0 auto 0.75rem;
  filter: drop-shadow(0 8px 20px rgba(255, 79, 163, 0.5));
}
.age-gate-badge {
  display: inline-flex; margin-bottom: 0.65rem; padding: 0.25rem 0.7rem; border-radius: 999px;
  font-weight: 800; font-size: 0.85rem; color: #2a0518;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}
.age-gate-card h1 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.55rem; }
.age-gate-text { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.15rem; }
.age-gate-text strong { color: var(--pink-soft); }
.age-gate-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.age-gate-yes, .age-gate-no { width: 100%; min-height: 2.85rem; }
.age-gate-note { margin-top: 0.9rem; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.03em; }

@media (max-width: 640px) {
  .age-banner p { font-size: 0.65rem; }
  .footer { padding-bottom: 6.25rem; }
}
