/* Spindora Studio — Coin Pusher landing */

:root {
  --bg0: #070b10;
  --bg1: #0f1624;
  --panel: rgba(22, 32, 48, 0.72);
  --panel-border: rgba(232, 184, 74, 0.22);
  --text: #e8edf5;
  --muted: #9aa8bc;
  --gold: #e8b84a;
  --gold-dim: #b8923a;
  --ember: #d4652e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Syne", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: radial-gradient(1200px 700px at 15% -10%, rgba(212, 101, 46, 0.18), transparent 55%),
    radial-gradient(900px 500px at 95% 20%, rgba(232, 184, 74, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg0) 0%, var(--bg1) 45%, #0a0f18 100%);
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 16, 0.82);
  border-bottom: 1px solid rgba(232, 184, 74, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--gold);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

.store-badge {
  display: inline-block;
  line-height: 0;
}

.store-badge img {
  height: 46px;
  width: auto;
}

.store-badge:hover {
  opacity: 0.9;
}

/* ---------- Hero & panels ---------- */

.hero {
  padding: 3.2rem 0 3rem;
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.kicker {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.subkicker {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.hero-icon {
  width: min(200px, 58vw);
  height: min(200px, 58vw);
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--ember), var(--gold), #f4e8c8, var(--ember));
  padding: 4px;
  box-shadow: var(--shadow);
}

.hero-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg1);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-icon-inner img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.deco-stack {
  position: relative;
  min-height: 280px;
}

.deco-card {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: var(--shadow);
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.deco-1 {
  inset: 0 12% 18% 0;
  background-image: url("../images/logo1.webp");
  background-size: contain;
}

.deco-2 {
  inset: 14% 0 0 18%;
  background-image: url("../images/logo2.webp");
  background-size: contain;
  opacity: 0.95;
}

.glass-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem;
  box-shadow: var(--shadow);
}

.intro-block {
  margin-top: 2.25rem;
}

.intro-block p {
  margin: 0 0 1rem;
  color: #c5d0e0;
}

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

/* ---------- Video ---------- */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--gold);
}

.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1335 / 751;
  height: auto;
  max-height: 70vh;
}

/* ---------- Horizontal screenshots ---------- */

.shots-section {
  padding: 3rem 0;
}

.shots-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shots-strip::-webkit-scrollbar {
  height: 8px;
}

.shots-strip::-webkit-scrollbar-thumb {
  background: rgba(232, 184, 74, 0.35);
  border-radius: 99px;
}

.shot-card {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: linear-gradient(145deg, rgba(30, 42, 62, 0.9), rgba(14, 20, 32, 0.95));
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 200px;
}

.shot-media {
  flex: 0 0 56%;
  min-height: 180px;
  background: #0a0f16;
  display: grid;
  place-items: center;
  padding: 0.5rem;
}

.shot-media img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
}

.shot-copy {
  flex: 1;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.shot-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}

.shot-copy p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.shot-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-top: 0.35rem;
  object-fit: contain;
  border: 1px solid var(--panel-border);
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Feature rows ---------- */

.features {
  padding: 2.5rem 0 4rem;
}

.feature-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

@media (min-width: 840px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.reverse .feature-visual {
    order: 2;
  }

  .feature-row.reverse .feature-text {
    order: 1;
  }
}

.feature-visual {
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: var(--panel);
  min-height: 220px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/favicon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
}

.feature-bubble {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(232, 184, 74, 0.45);
  display: grid;
  place-items: center;
  background: rgba(10, 14, 22, 0.65);
  box-shadow: 0 0 40px rgba(232, 184, 74, 0.15);
}

.feature-bubble img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.feature-text h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

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

/* ---------- CTA bottom ---------- */

.cta-band {
  text-align: center;
  padding: 3rem 1rem 3.5rem;
  border-top: 1px solid rgba(232, 184, 74, 0.12);
  border-bottom: 1px solid rgba(232, 184, 74, 0.12);
  background: linear-gradient(180deg, transparent, rgba(232, 184, 74, 0.06), transparent);
}

.cta-band .round-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.cta-band .round-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(232, 184, 74, 0.1);
  background: rgba(5, 8, 12, 0.6);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid var(--panel-border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

@media (max-width: 759px) {
  .footer-copy {
    text-align: left;
  }
}

.disclaimer {
  font-size: 0.82rem;
  color: #7d8a9c;
  margin-top: 2rem;
  max-width: 72ch;
}

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

.page-main {
  padding: 2.5rem 0 4rem;
}

.article {
  max-width: 720px;
}

.article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 0;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--gold);
}

.article p,
.article li {
  color: #c5d0e0;
}

.article ul {
  padding-left: 1.2rem;
}

.inline-cta {
  margin: 2rem 0;
  text-align: center;
}

/* ---------- Age gate ---------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 6, 10, 0.92);
  backdrop-filter: blur(12px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-panel {
  width: min(440px, 100%);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: linear-gradient(160deg, rgba(30, 40, 58, 0.95), rgba(10, 14, 22, 0.98));
  box-shadow: var(--shadow);
}

.age-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.age-panel p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.slide-field {
  position: relative;
  user-select: none;
  touch-action: none;
}

.slide-track {
  position: relative;
  height: 52px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 184, 74, 0.25);
  overflow: hidden;
}

.slide-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(212, 101, 46, 0.35), rgba(232, 184, 74, 0.35));
  pointer-events: none;
}

.slide-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: grab;
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #1a1206;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}

.slide-knob:active {
  cursor: grabbing;
}

.slide-hint {
  display: block;
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.age-error {
  color: #ff8b7a;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
}
