:root {
  --ink: #27162e;
  --muted: #765f7d;
  --paper: #fff8ef;
  --card: rgba(255, 255, 255, 0.82);
  --white: #ffffff;
  --pink: #ff5fb1;
  --hotpink: #ff2f92;
  --softpink: #ffe1f1;
  --blue: #0b83ff;
  --deepblue: #0537b8;
  --sky: #8fe7ff;
  --yellow: #ffd84c;
  --orange: #ff9d1c;
  --purple: #7b46ff;
  --green: #4cdb77;
  --line: rgba(39, 22, 46, 0.12);
  --shadow: 0 28px 70px rgba(74, 25, 77, 0.22);
  --small-shadow: 0 14px 36px rgba(74, 25, 77, 0.14);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 130px; }
body {
  margin: 0;
  font-family: ui-rounded, "Nunito", "Avenir Next", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 76, .48), transparent 25%),
    radial-gradient(circle at 90% 5%, rgba(11, 131, 255, .38), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 95, 177, .32), transparent 25%),
    linear-gradient(180deg, #fff5e8 0%, #fff9f2 42%, #eef9ff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(39, 22, 46, .055) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, .75) 1.6px, transparent 1.6px);
  background-size: 30px 30px, 90px 90px;
  mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.55), transparent 76%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, .button:focus-visible {
  outline: 4px solid #1b66ff;
  outline-offset: 4px;
  border-radius: 10px;
}
.navbar a:focus-visible, .button:focus-visible, .store-button:focus-visible { border-radius: 999px; }
.nav-links a[aria-current="page"] { color: var(--ink); background: rgba(255, 95, 177, .17); border-color: rgba(255, 95, 177, .24); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 18px 0;
}
.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(238,247,255,.78));
  border: 1px solid rgba(255, 255, 255, .98);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(39, 22, 46, .12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hotpink), var(--purple), var(--blue));
  color: white;
  font-weight: 1000;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 26px rgba(255, 47, 146, .28);
}
.brand-logo::after { content: "CS"; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-logo:has(img:not([src=""]))::after { content: none; }
.brand-text { display: grid; line-height: 1.06; }
.brand-text strong { font-size: 1.03rem; letter-spacing: -.02em; }
.brand-text small { color: var(--muted); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 10px 15px;
  color: #594063;
  font-weight: 1000;
  font-size: .94rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 95, 177, .14);
  border-color: rgba(255, 95, 177, .18);
  transform: translateY(-1px);
}

.shell { max-width: 1180px; margin: 0 auto; padding: 88px 22px; }
.section-tight { padding-top: 58px; padding-bottom: 58px; }
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 54px;
  padding-top: 86px;
}
.hero.compact { min-height: auto; padding-bottom: 42px; }
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8177a;
  font-size: .82rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.spark-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(76, 219, 119, .18);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 16px 0 22px;
  max-width: 780px;
  font-size: clamp(3.25rem, 8.2vw, 7rem);
  line-height: .92;
  letter-spacing: -.075em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}
h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.12; letter-spacing: -.025em; }
p { color: var(--muted); font-size: 1.04rem; }
.lead { max-width: 660px; font-size: clamp(1.08rem, 2vw, 1.32rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button.primary { color: white; background: linear-gradient(135deg, var(--hotpink), var(--purple)); box-shadow: 0 18px 34px rgba(255, 47, 146, .28); }
.button.blue { color: white; background: linear-gradient(135deg, var(--blue), var(--deepblue)); box-shadow: 0 18px 34px rgba(11, 131, 255, .25); }
.button.light { color: var(--ink); background: white; border: 1px solid var(--line); }
.button:hover { transform: translateY(-3px); }

.hero-logo-wrap { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-stage {
  position: relative;
  width: min(460px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.86), transparent 24%),
    conic-gradient(from 220deg, var(--yellow), var(--hotpink), var(--purple), var(--blue), var(--sky), var(--yellow));
  filter: blur(18px);
  opacity: .58;
  transform: scale(1.06);
}
.logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(39,22,46,.04), 0 18px 45px rgba(39,22,46,.08);
  pointer-events: none;
}
.orbit-one { inset: 4%; transform: rotate(-9deg); }
.orbit-two { inset: 13%; transform: rotate(14deg); border-style: dashed; opacity: .58; }
.logo-spark {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 7px rgba(255,255,255,.25), 0 0 24px rgba(255,216,76,.75);
}
.spark-one { top: 12%; right: 16%; }
.spark-two { left: 8%; bottom: 28%; width: 12px; height: 12px; }
.spark-three { right: 8%; bottom: 18%; width: 10px; height: 10px; }
.hero-logo-card {
  position: relative;
  width: min(350px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(135deg, rgba(255,95,177,.98), rgba(123,70,255,.95) 52%, rgba(11,131,255,.92));
  border: 8px solid rgba(255,255,255,.9);
  box-shadow:
    0 32px 80px rgba(74,25,77,.26),
    inset 0 2px 0 rgba(255,255,255,.9),
    inset 0 -18px 44px rgba(39,22,46,.14);
  rotate: -3deg;
}
.logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.46), transparent 62%);
  pointer-events: none;
}
.studio-logo-img {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.86);
  background: #08080a;
  box-shadow: 0 20px 38px rgba(39,22,46,.32);
}
.logo-fallback {
  display: none;
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  font-size: 4.4rem;
  line-height: .9;
  font-weight: 1000;
  letter-spacing: -.08em;
  text-shadow: 0 10px 0 rgba(39,22,46,.16);
}
.hero-logo-card.image-missing .studio-logo-img { display: none; }
.hero-logo-card.image-missing .logo-fallback { display: block; }
.float-badge {
  position: absolute;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-weight: 1000;
}
.float-badge span { display: block; color: var(--muted); font-size: .9rem; font-weight: 800; }
.float-one { top: 96px; right: 10px; rotate: -8deg; }
.float-two { left: 5px; bottom: 98px; rotate: 7deg; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.card, .game-card, .feature-card, .legal-card, .screenshot-frame, .contact-card, .download-panel {
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--small-shadow);
}
.card {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--card);
}
.studio-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.studio-note { background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,225,241,.82)); }
.studio-highlight { color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); }
.studio-highlight p { color: rgba(255,255,255,.88); }

.games-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.game-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,216,76,.52), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(143,231,255,.7), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,225,241,.9));
  transition: transform .2s ease, box-shadow .2s ease;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.game-icon-wrap {
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--yellow), var(--hotpink));
  border: 6px solid white;
  box-shadow: 0 18px 40px rgba(255,47,146,.22);
}
.game-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.game-icon-wrap::after { content: "Sp"; color: white; font-weight: 1000; font-size: 3rem; text-shadow: 0 4px 0 rgba(39,22,46,.18); }
.game-icon-wrap:has(img:not([src=""]))::after { content: none; }
.game-card h3 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 8px; color: #9d1458; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }
.pill { padding: 7px 11px; border-radius: 999px; background: rgba(255,95,177,.12); color: #9d1458; font-weight: 1000; font-size: .86rem; }
.coming-card { opacity: .72; display: grid; place-items: center; text-align: center; }
.coming-card h3 { color: var(--ink); }

.spodd-hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(330px, 1.02fr);
  gap: 44px;
  align-items: center;
}
.spodd-title-row { display: flex; align-items: center; gap: 18px; margin-top: 18px; }
.spodd-icon-large {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 24px;
  border: 5px solid white;
  background: linear-gradient(135deg, var(--yellow), var(--hotpink));
  box-shadow: 0 14px 34px rgba(255,47,146,.22);
}
.spodd-icon-large img { width: 100%; height: 100%; object-fit: cover; }
.phone-stack { position: relative; min-height: 620px; display: grid; place-items: center; }
.phone-shot {
  width: min(330px, 74vw);
  border-radius: 42px;
  border: 9px solid #2a1731;
  overflow: hidden;
  background: #2a1731;
  box-shadow: var(--shadow);
}
.phone-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 31px;
}
.phone-shot.front { position: relative; z-index: 2; }
.phone-shot.back {
  position: absolute;
  z-index: 1;
  opacity: .72;
  transform: translate(130px, 34px) rotate(7deg) scale(.92);
}
.phone-shot.back-left {
  position: absolute;
  z-index: 0;
  opacity: .55;
  transform: translate(-118px, 54px) rotate(-8deg) scale(.86);
}
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.stat { padding: 14px 16px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.95); border-radius: 20px; box-shadow: 0 12px 28px rgba(39,22,46,.07); }
.stat strong, .stat span { display: block; }
.stat strong { font-size: 1.1rem; }
.stat span { color: var(--muted); font-size: .9rem; font-weight: 800; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 245px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.76);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-bubble {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 21px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff1b8, #ffd5eb);
  border: 1px solid rgba(39,22,46,.08);
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 480px));
  justify-content: center;
  gap: 30px;
}
.screenshot-frame {
  overflow: hidden;
  border-radius: 30px;
  background: white;
  position: relative;
  width: 100%;
}
.screenshot-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .25s ease;
}
.screenshot-frame:hover img { transform: scale(1.035); }
.screenshot-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(39,22,46,.86);
  text-align: center;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(39,22,46,.18);
}
.download-panel {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 5vw, 58px);
  color: white;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.3), transparent 25%),
    radial-gradient(circle at 92% 84%, rgba(255,216,76,.42), transparent 28%),
    linear-gradient(135deg, var(--hotpink), var(--purple) 55%, var(--blue));
  box-shadow: var(--shadow);
}
.download-panel p, .download-panel .label { color: rgba(255,255,255,.88); }
.download-panel .button { background: #28152f; color: white; }

.legal-layout { max-width: 920px; margin: 0 auto; padding: 72px 22px 96px; }
.legal-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: rgba(255,255,255,.84);
}
.legal-card h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin-bottom: 12px; }
.legal-card h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-top: 36px; }
.legal-card ul { color: var(--muted); padding-left: 22px; }
.legal-card li { margin: 7px 0; }
.legal-card a { color: #c91873; font-weight: 1000; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.contact-card { padding: clamp(30px, 5vw, 56px); border-radius: 36px; background: rgba(255,255,255,.84); text-align: center; }
.email-link { display: inline-flex; margin-top: 16px; padding: 16px 22px; border-radius: 999px; background: linear-gradient(135deg, var(--hotpink), var(--purple)); color: white; font-weight: 1000; }

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  color: var(--muted);
}
.site-footer strong { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 14px; }
.footer-links a { font-weight: 900; }
.copy { grid-column: 1 / -1; margin: 0; font-size: .92rem; }

.games-centered .game-card { min-height: 320px; }
.studio-values .feature-card { min-height: 220px; }
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.social-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--small-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.social-card img { width: 64px; height: 64px; flex: 0 0 auto; object-fit: contain; border-radius: 15px; }
.social-card span, .social-card strong, .social-card small { display: block; }
.social-card strong { font-size: 1.15rem; }
.social-card small { color: var(--muted); font-weight: 800; }
.ad-landing {
  min-height: calc(100vh - 95px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  gap: 56px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.ad-landing h1 { margin: 6px 0 16px; font-size: clamp(3.2rem, 7vw, 6.7rem); }
.spodd-intro { position: relative; z-index: 2; }
.spodd-intro .spodd-title-row { align-items: center; }
.ad-phone { display: grid; place-items: center; min-width: 0; }
.ad-phone .phone-shot { width: min(450px, 84vw); }
.store-options { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.store-options.compact { margin-top: 0; justify-content: flex-end; }
.store-button {
  min-width: 225px;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 18px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 18px;
  color: white;
  background: #19111e;
  box-shadow: 0 16px 34px rgba(39,22,46,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-button.google:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(39,22,46,.28); }
.store-button small, .store-button strong { display: block; line-height: 1.05; }
.store-button small { font-size: .7rem; letter-spacing: .08em; }
.store-button strong { margin-top: 4px; font-size: 1.38rem; }
.store-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: block;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.store-button.google .store-icon { background-image: url("/Images/Socials/GooglePlay-96.png"); }
.store-button.upcoming .store-icon { background-image: url("/Images/Socials/AppStore-96.png"); }
.store-button.upcoming { color: rgba(39,22,46,.7); background: rgba(255,255,255,.7); border-color: rgba(39,22,46,.1); box-shadow: none; cursor: not-allowed; }
.availability-note { margin: 12px 0 0; font-size: .94rem; font-weight: 800; }
.policy-date, .response-note, .legal-note { font-size: .94rem; }
.policy-games { display: flex; align-items: center; gap: 14px; margin: 24px 0; padding: 16px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); }
.policy-games a { padding: 6px 12px; border-radius: 999px; background: var(--softpink); }
.policy-toc { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 28px 0; padding: 18px 20px; border-radius: 18px; background: var(--softpink); }
.policy-toc strong { flex-basis: 100%; }
.policy-toc a { font-size: .94rem; }
.steps { padding-left: 22px; color: var(--muted); }
.steps li { margin: 12px 0; padding-left: 5px; }
.support-cta, .contact-options { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.support-game { display: grid; grid-template-columns: 88px 1fr; align-items: center; gap: 20px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.72); }
.support-game img { border-radius: 20px; }
.support-game h3, .support-game p { margin-bottom: 6px; }
.support-game a { color: #c91873; font-weight: 1000; text-decoration: underline; text-underline-offset: 3px; }
.contact-options { justify-content: center; }
.contact-options a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #a71962; font-weight: 900; background: white; }
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.not-found-card { max-width: 800px; padding: clamp(32px, 6vw, 70px); border-radius: var(--radius-xl); background: rgba(255,255,255,.84); box-shadow: var(--shadow); }
.not-found-card h1 { font-size: clamp(3rem, 9vw, 6rem); }
.not-found .actions { justify-content: center; }
.privacy-choices {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.privacy-choices:focus-visible, .consent-banner button:focus-visible {
  outline: 4px solid #1b66ff;
  outline-offset: 4px;
}
.consent-banner {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 30px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 30px 90px rgba(39,22,46,.34);
  backdrop-filter: blur(20px);
}
.consent-copy h2 { margin: 7px 0 10px; font-size: clamp(1.55rem, 3vw, 2.35rem); letter-spacing: -.04em; }
.consent-copy p { max-width: 720px; margin-bottom: 8px; font-size: .98rem; }
.consent-copy a { color: #b21769; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.consent-actions .button { border: 0; cursor: pointer; white-space: nowrap; }

@media (max-width: 980px) {
  .navbar {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 30px;
  }
  .brand { flex: 1 1 auto; }
  .nav-links {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
  }
  .nav-links a {
    padding: 9px 13px;
    background: rgba(255,255,255,.64);
    border-color: rgba(39,22,46,.08);
    box-shadow: 0 8px 18px rgba(39,22,46,.06);
  }
  .hero, .spodd-hero, .studio-grid, .games-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { min-height: 470px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(280px, 430px)); }
  .phone-stack { min-height: 560px; overflow: hidden; }
  .download-panel { flex-direction: column; align-items: flex-start; }
  .consent-banner { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .consent-actions { justify-content: flex-start; }
  .ad-landing { grid-template-columns: 1fr; padding-top: 52px; }
  .ad-phone { display: none; }
  .store-options.compact { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .site-header { padding-inline: 12px; }
  .navbar { border-radius: 26px; padding: 10px 12px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-text strong { font-size: .98rem; }
  .nav-links {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; font-size: .86rem; padding: 8px 12px; }
  .shell { padding: 62px 16px; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(3rem, 17vw, 4.9rem); }
  .actions, .button { width: 100%; }
  .logo-stage { width: min(390px, 92vw); }
  .hero-logo-card { width: min(300px, 74vw); }
  .float-badge { display: none; }
  .game-card { grid-template-columns: 1fr; text-align: center; }
  .game-icon-wrap { margin: 0 auto; }
  .feature-grid, .stats-strip { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: minmax(0, 480px); gap: 22px; }
  .spodd-title-row { align-items: flex-start; flex-direction: column; }
  .phone-shot.back, .phone-shot.back-left { display: none; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .ad-landing { min-height: auto; gap: 26px; }
  .ad-landing h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .store-options, .store-button { width: 100%; }
  .store-button { justify-content: flex-start; }
  .spodd-intro .spodd-title-row { flex-direction: row; align-items: center; }
  .spodd-intro .spodd-icon-large { width: 76px; height: 76px; border-radius: 20px; }
  .support-game { grid-template-columns: 68px 1fr; padding: 16px; }
  .support-game img { width: 68px; height: 68px; border-radius: 16px; }
  .consent-banner { right: 10px; bottom: 10px; left: 10px; max-height: calc(100vh - 20px); overflow-y: auto; border-radius: 24px; }
  .consent-actions, .consent-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .button:hover, .game-card:hover, .feature-card:hover, .social-card:hover, .store-button.google:hover { transform: none; }
  .screenshot-frame:hover img { transform: none; }
}
