@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Bangers&family=Luckiest+Guy&display=swap");

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-strong: #eef3f7;
  --ink: #172026;
  --muted: #5d6975;
  --line: #d9e0e7;
  --primary: #f1b84b;
  --primary-dark: #c47a2c;
  --primary-soft: #fff8e8;
  --primary-border: rgba(241, 184, 75, 0.36);
  --primary-border-strong: rgba(241, 184, 75, 0.72);
  --primary-ring: rgba(241, 184, 75, 0.24);
  --primary-shadow: rgba(241, 184, 75, 0.24);
  --primary-shadow-strong: rgba(196, 122, 44, 0.24);
  --blue: #2f6fed;
  --amber: #f1b84b;
  --coral: #e65d4f;
  --shadow: 0 18px 48px rgba(23, 32, 38, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(217, 224, 231, 0.86);
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 86px) clamp(18px, 4vw, 28px) 42px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.ai-name-rotator {
  display: inline-grid;
  min-width: 7.8ch;
  color: var(--primary);
  vertical-align: baseline;
}

.ai-name-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.25em);
  animation: aiNameSwap 10s infinite;
}

.ai-name-rotator span:nth-child(2) {
  animation-delay: 2s;
}

.ai-name-rotator span:nth-child(3) {
  animation-delay: 4s;
}

.ai-name-rotator span:nth-child(4) {
  animation-delay: 6s;
}

.ai-name-rotator span:nth-child(5) {
  animation-delay: 8s;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.prompt-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 680px;
  margin-top: 20px;
}

.prompt-switcher span {
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: 8px 11px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(23, 32, 38, 0.06);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.compact {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.button.full {
  width: 100%;
}

.provider-buttons,
.card-action-buttons {
  display: grid;
  gap: 8px;
}

.card-action-buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.card-action-buttons .button {
  width: 100%;
  min-width: 0;
  padding-right: 10px;
  padding-left: 10px;
  white-space: nowrap;
}

.provider-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.provider-button:hover {
  border-color: var(--primary-border-strong);
  box-shadow: 0 8px 18px rgba(23, 32, 38, 0.08);
  transform: translateY(-1px);
}

.provider-button.is-installing {
  border-color: var(--primary-border-strong);
  background: var(--primary-soft);
  box-shadow: 0 10px 22px rgba(196, 122, 44, 0.12);
}

.provider-button img {
  flex: 0 0 auto;
}

.provider-button span {
  min-width: 0;
}

.provider-button-large {
  min-height: 46px;
  justify-content: flex-start;
  padding: 11px 13px;
  font-size: 0.95rem;
}

.provider-button-primary {
  min-height: 52px;
  border-color: var(--primary);
  background: var(--primary);
  color: var(--ink);
  font-size: 1rem;
  box-shadow: 0 12px 26px var(--primary-shadow);
}

.provider-button-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  box-shadow: 0 16px 32px var(--primary-shadow-strong);
}

.provider-button-primary.is-installing {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--ink);
}

.provider-button-primary img {
  width: 24px;
  height: 24px;
  padding: 3px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.provider-button-secondary {
  min-height: 42px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.provider-button-secondary:hover {
  border-color: rgba(23, 32, 38, 0.22);
  background: var(--surface-strong);
  box-shadow: 0 6px 14px rgba(23, 32, 38, 0.06);
}

.hero-showcase {
  display: grid;
  gap: 12px;
  overflow: hidden;
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.12), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(241, 184, 75, 0.22), transparent 24%),
    #ffffff;
  box-shadow: var(--shadow);
}

.mini-app {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #ffffff;
  text-decoration: none;
}

.mini-app img {
  order: 1;
}

.mini-app-meta {
  order: 2;
}

.mini-app:hover {
  border-color: var(--primary-border-strong);
}

.mini-app strong,
.mini-app small {
  display: block;
}

.mini-app small {
  color: var(--muted);
}

.round-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.round-stat {
  display: grid;
  gap: 1px;
  min-height: 74px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.round-stat strong {
  font-size: 1.5rem;
  line-height: 1;
}

.round-stat small {
  color: var(--muted);
  font-weight: 800;
}

.toolbar-section,
.use-case-section,
.category-row,
.app-grid,
.workflow-section,
.app-detail-hero,
.detail-layout,
.not-found {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: clamp(18px, 4vw, 28px);
  padding-left: clamp(18px, 4vw, 28px);
}

.use-case-section {
  padding-top: 72px;
}

.use-case-section h2 {
  max-width: 680px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.use-case-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.05);
}

.use-case-card strong {
  line-height: 1.15;
}

.use-case-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.toolbar-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
}

.search-box {
  display: grid;
  gap: 7px;
  width: min(100%, 430px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: #ffffff;
  color: var(--ink);
}

.search-box input:focus {
  border-color: var(--primary);
  outline: 3px solid var(--primary-ring);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
}

.category-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}

.app-card {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 260px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.06);
}

.app-card::before {
  position: absolute;
  right: -46px;
  top: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(241, 184, 75, 0.14);
  content: "";
}

.app-card[hidden] {
  display: none;
}

.app-card-main {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.app-card-preview {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(23, 32, 38, 0.08);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.app-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.app-card--with-preview .app-icon {
  display: none;
}

.app-card--with-preview:hover .app-card-preview img {
  transform: scale(1.025);
}

.app-card > .provider-buttons,
.app-card > .card-action-buttons {
  position: relative;
  z-index: 1;
}

.app-icon,
.detail-icon {
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(23, 32, 38, 0.12);
}

.app-meta {
  display: grid;
  gap: 8px;
}

.app-meta strong {
  font-size: 1.24rem;
  line-height: 1.18;
}

.app-meta > span:last-child {
  color: var(--muted);
}

.category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-category-label {
  margin: 0 0 10px;
}

.empty-state {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max);
  margin: 20px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
  color: var(--muted);
}

.empty-state[hidden] {
  display: none;
}

.empty-state strong {
  color: var(--ink);
}

.workflow-section {
  padding-top: 88px;
  padding-bottom: 80px;
}

.section-heading {
  display: grid;
  gap: 4px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 8px;
  border-top: 4px solid var(--amber);
  padding: 18px 0 0;
}

.workflow-list span {
  color: var(--muted);
}

.app-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 22px;
  align-items: start;
  justify-content: center;
  padding-top: 52px;
  padding-bottom: 38px;
}

.app-detail-hero--with-preview {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  justify-content: stretch;
}

.app-detail-summary {
  display: grid;
  gap: 22px;
  min-width: 0;
  width: 100%;
  max-width: 900px;
  justify-self: center;
}

.app-detail-hero--with-preview .app-detail-summary {
  max-width: none;
  justify-self: stretch;
}

.app-title-block {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  width: 100%;
  justify-self: center;
}

.app-title-block > div {
  min-width: 0;
}

.app-title-block h1 {
  font-size: 3.3rem;
}

.app-title-block p:last-child {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.app-description-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.app-description-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 6px 9px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.app-description-links a:hover {
  border-color: var(--primary-border-strong);
}

.install-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
  width: 100%;
  max-width: 780px;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-preview {
  overflow: hidden;
  min-width: 0;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.detail-preview figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.detail-preview a {
  color: var(--primary-dark);
  font-weight: 850;
  text-decoration: none;
}

.provider-action-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.install-panel .install-action-label {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.provider-action-row {
  display: grid;
  grid-template-columns: minmax(126px, 156px) repeat(2, minmax(0, 1fr));
  gap: 7px;
  align-items: center;
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  background: #f8fafc;
}

.provider-action-row--single {
  grid-template-columns: minmax(126px, 156px) minmax(0, 1fr);
}

.provider-action-name {
  display: flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 6px 8px;
  font-size: 0.92rem;
  font-weight: 850;
}

.provider-action-name img {
  flex: 0 0 auto;
  object-fit: contain;
}

.provider-action-name span,
.provider-action-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-action-button {
  width: 100%;
  min-height: 40px;
  justify-content: center;
  padding: 8px 10px;
  font-size: 0.88rem;
}

.provider-action-button--with-logo {
  gap: 7px;
}

.provider-action-button--with-logo img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.provider-action-name img[src$="/deepseek.png"] {
  width: 72px;
  height: 18px;
}

.provider-action-button--with-logo img[src$="/deepseek.png"] {
  width: 56px;
  height: 14px;
}

.provider-action-button.provider-button-primary {
  min-height: 40px;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(196, 122, 44, 0.14);
}

.install-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
  padding-bottom: 86px;
}

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 18px;
}

.content-section,
.sidebar-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
}

.content-section--playful {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.92), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.round-pitch-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.round-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding: 8px 4px 6px;
}

.round-photo-note {
  display: grid;
  gap: 6px;
  min-height: 126px;
  align-content: center;
  border: 1px solid rgba(196, 122, 44, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(23, 32, 38, 0.09);
  transform: rotate(-2deg);
}

.round-photo-note--2 {
  transform: rotate(2deg) translateY(8px);
}

.round-photo-note--3 {
  transform: rotate(-1deg) translateY(-4px);
}

.round-photo-note--4 {
  transform: rotate(2.5deg) translateY(5px);
}

.round-photo-note strong,
.round-fun-card strong,
.round-dare strong {
  color: var(--ink);
  line-height: 1.15;
}

.round-photo-note span,
.round-fun-card span,
.round-dare span,
.sidebar-section--playful p {
  color: var(--muted);
}

.round-fun-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 20px;
}

.round-fun-card {
  display: grid;
  gap: 7px;
  border-top: 3px solid var(--amber);
  padding-top: 12px;
}

.round-dare-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.round-dare {
  display: grid;
  gap: 5px;
  border-left: 4px solid rgba(230, 93, 79, 0.34);
  padding: 2px 0 2px 14px;
}

.sidebar-section--playful p {
  margin: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.check-list,
.example-list,
.trigger-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.example-list li,
.trigger-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.example-list li::before,
.trigger-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--primary);
  font-weight: 900;
  content: "+";
}

pre {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 18px 0 0;
  padding: 16px;
  background: #111820;
  color: #edf6f3;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.install-prompt {
  max-height: 360px;
}

.sidebar-section h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.sidebar-section a {
  display: block;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.sidebar-section a + a {
  margin-top: 8px;
}

.replay-hero {
  padding-bottom: 24px;
}

.replay-layout {
  padding-top: 0;
}

.replay-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.replay-field {
  display: grid;
  gap: 7px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-strong);
}

.replay-field span {
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.replay-field strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.replay-field ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.not-found {
  min-height: calc(100vh - 160px);
  padding-top: 90px;
  padding-bottom: 90px;
}

.not-found p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
}

.site-footer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.privacy-page main {
  min-height: 100vh;
}

.privacy-shell {
  min-height: 100vh;
}

.privacy-page-content {
  padding-bottom: 24px;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: 550px;
  padding: clamp(28px, 6vw, 72px) 0 16px;
}

.privacy-copy {
  min-width: 0;
}

.privacy-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-family: var(--spw-display-font);
  font-size: clamp(4.6rem, 11vw, 8.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.42),
    0 18px 34px rgba(0, 0, 0, 0.42);
}

.privacy-lede {
  max-width: 790px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(1.16rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy-scorecard {
  display: grid;
  gap: 18px;
  align-self: stretch;
  min-width: 0;
  border: 2px solid rgba(130, 91, 196, 0.56);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 26px);
  background:
    radial-gradient(circle at 74% 8%, rgba(255, 213, 0, 0.16), transparent 9rem),
    radial-gradient(circle at 18% 85%, rgba(126, 46, 255, 0.34), transparent 14rem),
    rgba(13, 13, 43, 0.92);
  box-shadow: var(--spw-shadow);
}

.privacy-scorecard > span {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  align-items: center;
  justify-self: start;
  border-radius: 8px;
  padding: 7px 12px;
  background: var(--duck-home-yellow);
  color: #111019;
  font-family: var(--spw-chunky-font);
  font-size: 0.88rem;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.privacy-scorecard dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.privacy-scorecard div {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(122, 128, 189, 0.22);
  border-radius: 16px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 42, 224, 0.2), transparent 70%),
    rgba(7, 8, 24, 0.74);
  text-align: center;
}

.privacy-scorecard dt {
  color: var(--duck-home-yellow);
  font-family: var(--spw-display-font);
  font-size: clamp(3.6rem, 7vw, 5.3rem);
  font-weight: 400;
  line-height: 0.82;
}

.privacy-scorecard dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.privacy-points article,
.privacy-note {
  border: 1px solid rgba(122, 128, 189, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 213, 0, 0.1), transparent 8rem),
    linear-gradient(180deg, rgba(22, 24, 60, 0.96), rgba(11, 13, 36, 0.96));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.privacy-points article {
  min-height: 178px;
  padding: 18px;
}

.privacy-points strong,
.privacy-note h2 {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.08rem;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-points p,
.privacy-note p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.34;
}

.privacy-note {
  margin-top: 18px;
  padding: 22px;
}

.privacy-note h2 {
  margin: 0;
}

.privacy-footer {
  margin-top: 24px;
}

.superpower-game-page {
  --spw-display-font: "Bangers", "Luckiest Guy", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --spw-chunky-font: "Luckiest Guy", "Baloo 2", "Arial Black", sans-serif;
  --spw-ui-font: "Baloo 2", Inter, ui-sans-serif, system-ui, sans-serif;
  --spw-bg: #030716;
  --spw-bg-start: #070a18;
  --spw-bg-end: #020512;
  --spw-bg-glow-primary: rgba(105, 37, 255, 0.22);
  --spw-bg-glow-secondary: rgba(28, 113, 255, 0.12);
  --spw-panel: rgba(15, 18, 48, 0.88);
  --spw-panel-strong: rgba(22, 24, 60, 0.96);
  --spw-line: rgba(139, 78, 255, 0.48);
  --spw-purple: #812cff;
  --spw-purple-dark: #4a0fbd;
  --spw-yellow: #ffd500;
  --spw-orange: #ff5b20;
  --spw-blue: #28a8ff;
  --spw-green: #7ced3b;
  --spw-pink: #ff477f;
  --spw-text: #ffffff;
  --spw-muted: #d6d8ee;
  --spw-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  background: var(--spw-bg);
  color: var(--spw-text);
  font-family: var(--spw-ui-font);
  overflow-x: hidden;
}

.round-game-page--horror-movie-survival {
  --spw-bg: #080612;
  --spw-bg-start: #16091e;
  --spw-bg-end: #05030b;
  --spw-bg-glow-primary: rgba(255, 71, 127, 0.2);
  --spw-bg-glow-secondary: rgba(255, 213, 0, 0.11);
  --spw-line: rgba(255, 71, 127, 0.5);
  --spw-purple: #b31958;
  --spw-purple-dark: #69133f;
  --spw-yellow: #ffd14a;
  --spw-orange: #ff5b20;
  --spw-blue: #28a8ff;
  --spw-green: #7ced3b;
  --spw-pink: #ff477f;
}

.round-game-page--friend-group-spaceship {
  --spw-bg: #030817;
  --spw-bg-start: #07152a;
  --spw-bg-end: #020512;
  --spw-bg-glow-primary: rgba(40, 168, 255, 0.22);
  --spw-bg-glow-secondary: rgba(124, 237, 59, 0.11);
  --spw-line: rgba(40, 168, 255, 0.48);
  --spw-purple: #316bff;
  --spw-purple-dark: #1837a8;
  --spw-yellow: #ffd500;
  --spw-orange: #ff5b20;
  --spw-blue: #28a8ff;
  --spw-green: #7ced3b;
  --spw-pink: #ff477f;
}

.round-game-page--island-escape {
  --spw-bg: #03120f;
  --spw-bg-start: #06251f;
  --spw-bg-end: #020806;
  --spw-bg-glow-primary: rgba(124, 237, 59, 0.18);
  --spw-bg-glow-secondary: rgba(40, 168, 255, 0.16);
  --spw-line: rgba(124, 237, 59, 0.38);
  --spw-purple: #21a974;
  --spw-purple-dark: #0d6852;
  --spw-yellow: #ffd95a;
  --spw-orange: #ff7a24;
  --spw-blue: #28a8ff;
  --spw-green: #7ced3b;
  --spw-pink: #ff477f;
}

.round-game-page--villain-origin-story {
  --spw-bg: #070413;
  --spw-bg-start: #160624;
  --spw-bg-end: #03020a;
  --spw-bg-glow-primary: rgba(255, 71, 127, 0.2);
  --spw-bg-glow-secondary: rgba(124, 237, 59, 0.1);
  --spw-line: rgba(255, 71, 127, 0.5);
  --spw-purple: #8a22ff;
  --spw-purple-dark: #4a0fbd;
  --spw-yellow: #ffd500;
  --spw-orange: #ff5b20;
  --spw-blue: #28a8ff;
  --spw-green: #7ced3b;
  --spw-pink: #ff477f;
}

.superpower-game-page > .site-header,
.superpower-game-page > .site-footer {
  display: none;
}

.superpower-game-page main {
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 11%, var(--spw-bg-glow-primary), transparent 28rem),
    radial-gradient(circle at 8% 28%, var(--spw-bg-glow-secondary), transparent 25rem),
    linear-gradient(180deg, var(--spw-bg-start) 0%, var(--spw-bg) 46%, var(--spw-bg-end) 100%);
}

.spw-shell {
  min-height: 100vh;
}

.spw-topbar {
  display: grid;
  position: relative;
  z-index: 100;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 16px clamp(22px, 4vw, 54px);
  border-bottom: 1px solid rgba(143, 148, 198, 0.24);
  background: rgba(4, 6, 18, 0.88);
  backdrop-filter: blur(12px);
}

.spw-menu-link {
  display: inline-grid;
  gap: 7px;
  width: 48px;
  height: 42px;
  align-content: center;
  justify-self: start;
  border-radius: 8px;
  padding: 8px 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
  text-decoration: none;
}

.spw-menu-link::-webkit-details-marker {
  display: none;
}

.spw-menu-link .duck-menu-bar {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.duck-topbar-menu {
  position: relative;
  z-index: 40;
  justify-self: start;
}

.duck-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 8px;
  width: min(282px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(158, 151, 215, 0.36);
  border-radius: 14px;
  background: rgba(8, 10, 29, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.duck-menu-popover a {
  display: grid;
  gap: 3px;
  min-height: 58px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: #ffffff;
  text-decoration: none;
}

.duck-menu-popover a:hover,
.duck-menu-popover a:focus-visible {
  border-color: rgba(255, 213, 0, 0.62);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.duck-menu-popover strong {
  color: var(--duck-home-yellow, var(--spw-yellow, #ffd500));
  font-family: var(--spw-chunky-font, "Arial Black", sans-serif);
  font-size: 0.9rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.duck-menu-popover span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.25;
}

.spw-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.spw-logo-link img {
  width: 245px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.42));
}

.spw-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  min-height: 52px;
  border-radius: 10px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #722cff 0%, #5a10df 100%);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(80, 20, 214, 0.36);
}

.spw-more-link span[aria-hidden="true"] {
  color: var(--spw-yellow);
}

.spw-page {
  width: min(100%, 1180px);
  max-width: 100%;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 42px) 18px;
}

.spw-hero {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 0.78fr);
  gap: 18px;
  align-items: center;
  min-height: 470px;
}

.spw-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.spw-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  border-radius: 8px;
  padding: 8px 15px;
  background: linear-gradient(180deg, #8b35ff 0%, #6519e6 100%);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(89, 24, 224, 0.42);
}

.spw-hero h1 {
  display: grid;
  gap: 1px;
  max-width: 720px;
  color: #ffffff;
  font-family: var(--spw-display-font);
  font-size: clamp(4.2rem, 7.2vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.36),
    0 12px 30px rgba(0, 0, 0, 0.36);
  word-break: normal;
}

.spw-hero h1 span,
.spw-hero h1 strong {
  white-space: normal;
}

.spw-hero h1 strong {
  color: var(--spw-yellow);
}

.spw-ribbon {
  display: inline-flex;
  max-width: 610px;
  margin: 19px 0 0 12px;
  transform: rotate(-2deg);
  padding: 8px 22px;
  background: linear-gradient(90deg, #7428ff 0%, #6121e7 100%);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.38rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(52, 15, 144, 0.36);
}

.spw-hook {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.spw-hook p {
  margin: 0;
  color: #ffffff;
  font-family: var(--spw-ui-font);
  font-size: 1.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.spw-hook strong {
  color: var(--spw-yellow);
}

.spw-hook span {
  max-width: 480px;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.23;
}

.spw-hero-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 520px);
}

.spw-hero-art::before,
.spw-hero-art::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
}

.spw-hero-art::before {
  inset: 8% 8% 4%;
  background: rgba(112, 48, 255, 0.24);
  filter: blur(36px);
}

.spw-hero-art::after {
  right: -1%;
  top: 3%;
  width: 95px;
  height: 95px;
  background: rgba(255, 213, 0, 0.18);
  filter: blur(18px);
}

.spw-hero-art img {
  width: 100%;
  max-height: 540px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.48));
}

.spw-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.spw-feature-card {
  display: grid;
  gap: 7px;
  min-height: 156px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(122, 128, 189, 0.16);
  border-radius: 20px;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 42, 224, 0.18), transparent 70%),
    rgba(18, 22, 54, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.spw-feature-icon {
  min-height: 55px;
  color: var(--spw-yellow);
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 7px 16px rgba(0, 0, 0, 0.34);
}

.spw-feature-card strong {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.14rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.spw-feature-card > span:last-child {
  color: #ffffff;
  font-size: 0.98rem;
}

.spw-play-panel {
  display: grid;
  gap: 10px;
  position: relative;
  margin-top: 22px;
  border: 2px solid rgba(132, 46, 255, 0.72);
  border-radius: 20px;
  padding: 34px 44px 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(106, 37, 255, 0.24), transparent 34rem),
    rgba(13, 13, 43, 0.9);
  box-shadow: var(--spw-shadow);
}

.spw-play-panel h2 {
  position: absolute;
  left: 50%;
  top: -19px;
  margin: 0;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 3px 25px 5px;
  background: #141434;
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.42rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.spw-play-panel h2::before,
.spw-play-panel h2::after {
  color: var(--spw-yellow);
  content: "///";
  font-weight: 950;
}

.spw-play-panel h2::before {
  margin-right: 16px;
}

.spw-play-panel h2::after {
  margin-left: 16px;
}

.spw-primary-play {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  min-height: 74px;
  border: 0;
  border-radius: 12px;
  padding: 11px 24px;
  background: #ffffff;
  color: #0d1130;
  font-family: var(--spw-ui-font);
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1.05;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.28);
}

.spw-primary-play img {
  border-radius: 999px;
  object-fit: contain;
}

.spw-primary-play strong {
  font-size: 2.2rem;
  line-height: 1;
}

.spw-play-panel p,
.spw-also {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.2;
  text-align: center;
}

.spw-also {
  color: rgba(255, 255, 255, 0.82);
}

.spw-secondary-providers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.spw-secondary-provider {
  display: inline-flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(159, 151, 213, 0.48);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(15, 18, 45, 0.78);
  color: #ffffff;
  font-family: var(--spw-ui-font);
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
}

.spw-secondary-provider img {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.spw-secondary-provider img[src$="/deepseek.png"] {
  width: 88px;
  height: 20px;
}

.spw-how {
  margin-top: 18px;
}

.spw-how h2,
.spw-preview h2,
.spw-bottom-grid h2 {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spw-how h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px 8px;
  font-size: 1.62rem;
}

.spw-how h2 span {
  color: var(--spw-yellow);
  font-size: 1.2rem;
}

.spw-step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0 8px;
  list-style: none;
  counter-reset: spw-step;
}

.spw-step-list li {
  display: grid;
  gap: 8px;
  position: relative;
  min-width: 0;
  align-items: start;
  counter-increment: spw-step;
}

.spw-step-list li:not(:last-child)::after {
  position: absolute;
  right: -27px;
  top: 42px;
  color: #ffffff;
  font-size: 2.2rem;
  content: "\2192";
}

.spw-step-icon {
  display: grid;
  min-height: 86px;
  place-items: center;
}

.spw-step-icon img {
  width: auto;
  max-width: 96px;
  max-height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.36));
}

.spw-step-emoji {
  font-size: 4.2rem;
  line-height: 1;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.34));
}

.spw-step-list strong {
  position: relative;
  padding-left: 34px;
  color: #ffffff;
  font-family: var(--spw-ui-font);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.24;
}

.spw-step-list strong::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #9d48ff, #6622ed);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  content: counter(spw-step);
}

.spw-preview {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 2px solid rgba(130, 91, 196, 0.55);
  border-radius: 20px;
  padding: 28px 32px 20px;
  background:
    linear-gradient(135deg, rgba(38, 28, 72, 0.92), rgba(12, 15, 41, 0.95)),
    rgba(12, 15, 41, 0.95);
  box-shadow: var(--spw-shadow);
}

.spw-preview h2 {
  display: inline-flex;
  position: absolute;
  left: 96px;
  top: -2px;
  margin: 0;
  transform: rotate(-2deg);
  padding: 6px 25px 7px;
  background: var(--spw-yellow);
  color: #111019;
  font-size: 1.06rem;
  line-height: 1;
}

.spw-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 34px;
  padding-top: 24px;
}

.spw-preview-column {
  display: grid;
  gap: 0;
  min-width: 0;
}

.spw-preview-column + .spw-preview-column {
  border-left: 1px dashed rgba(165, 168, 208, 0.34);
  padding-left: 34px;
}

.spw-preview-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  min-height: 76px;
  align-items: start;
  border-bottom: 1px dashed rgba(165, 168, 208, 0.28);
  padding: 0 0 14px;
}

.spw-preview-item + .spw-preview-item {
  padding-top: 14px;
}

.spw-preview-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spw-preview-icon {
  color: var(--spw-yellow);
  font-size: 2.3rem;
  line-height: 1;
}

.spw-preview-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--spw-chunky-font);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.spw-preview-item p {
  margin: 0;
  color: #ffffff;
  font-family: var(--spw-ui-font);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.22;
}

.spw-preview-item p span {
  font-size: 0.92rem;
  font-weight: 500;
}

.spw-preview-item--purple strong {
  color: #a653ff;
}

.spw-preview-item--blue strong,
.spw-preview-item--blue p {
  color: var(--spw-blue);
}

.spw-preview-item--green strong {
  color: var(--spw-green);
}

.spw-preview-item--orange strong {
  color: var(--spw-orange);
}

.spw-preview-item--pink strong {
  color: var(--spw-pink);
}

.spw-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 16px;
}

.spw-callout,
.spw-get {
  min-width: 0;
  border: 2px solid rgba(151, 52, 255, 0.78);
  border-radius: 20px;
  padding: 20px 30px;
  background:
    radial-gradient(circle at 86% 48%, rgba(255, 213, 0, 0.18), transparent 8rem),
    linear-gradient(135deg, #4a0fbd 0%, #7e2dff 100%);
  box-shadow: 0 22px 42px rgba(28, 9, 78, 0.38);
}

.spw-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 18px;
  align-items: center;
}

.spw-callout h2,
.spw-get h2 {
  margin: 0 0 8px;
  font-size: 1.48rem;
  line-height: 1;
}

.spw-callout p {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.35;
}

.spw-callout img {
  width: 74px;
  height: auto;
  transform: rotate(12deg);
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.32));
}

.spw-get {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.16), transparent 9rem),
    linear-gradient(135deg, #5935bf 0%, #7f2eff 100%);
}

.spw-get ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spw-get li {
  position: relative;
  padding-left: 36px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.22;
}

.spw-get li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #75c84e;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  content: "\2713";
}

.spw-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(111, 119, 177, 0.42);
  border-radius: 999px;
  padding: 5px 46px 5px 110px;
  background: rgba(8, 12, 33, 0.78);
  color: #ffffff;
}

.spw-footer img {
  width: 62px;
  height: 62px;
  margin-left: -76px;
}

.spw-footer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.18;
}

.spw-footer span {
  color: #9c40ff;
  font-size: 2.7rem;
  line-height: 1;
}

.duck-landing-page {
  --spw-display-font: "Bangers", "Luckiest Guy", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --spw-chunky-font: "Luckiest Guy", "Baloo 2", "Arial Black", sans-serif;
  --spw-ui-font: "Baloo 2", Inter, ui-sans-serif, system-ui, sans-serif;
  --duck-home-bg: #030716;
  --duck-home-panel: rgba(16, 18, 48, 0.9);
  --duck-home-panel-strong: rgba(24, 20, 64, 0.96);
  --duck-home-line: rgba(137, 55, 255, 0.56);
  --duck-home-yellow: #ffd500;
  --duck-home-purple: #7b25ff;
  --duck-home-blue: #28a8ff;
  --duck-home-orange: #ff6624;
  --duck-home-green: #7ced3b;
  background: var(--duck-home-bg);
  color: #ffffff;
  font-family: var(--spw-ui-font);
  overflow-x: hidden;
}

.duck-landing-page > .site-header,
.duck-landing-page > .site-footer {
  display: none;
}

.duck-landing-page main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 79% 8%, rgba(122, 36, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 10% 26%, rgba(32, 122, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #070a18 0%, #030716 44%, #020512 100%);
}

.duck-home-shell {
  min-height: 100vh;
}

.duck-home-topbar {
  display: grid;
  position: relative;
  z-index: 100;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 16px clamp(22px, 4vw, 54px);
  border-bottom: 1px solid rgba(143, 148, 198, 0.24);
  background: rgba(4, 6, 18, 0.88);
  backdrop-filter: blur(12px);
}

.duck-home-menu {
  display: inline-grid;
  gap: 7px;
  width: 48px;
  height: 42px;
  align-content: center;
  justify-self: start;
  border-radius: 8px;
  padding: 8px 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
  text-decoration: none;
}

.duck-home-menu::-webkit-details-marker {
  display: none;
}

.duck-home-menu .duck-menu-bar {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.duck-home-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.duck-home-logo img {
  width: 245px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.42));
}

.duck-home-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.duck-home-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 151, 213, 0.42);
  border-radius: 10px;
  padding: 9px 13px;
  background: rgba(15, 18, 45, 0.74);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.duck-home-nav .duck-home-nav-play {
  border-color: transparent;
  background: linear-gradient(180deg, #722cff 0%, #5a10df 100%);
  box-shadow: 0 14px 28px rgba(80, 20, 214, 0.32);
}

.duck-home-page {
  width: min(100%, 1180px);
  max-width: 100%;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 42px) 20px;
}

.duck-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: 520px;
}

.duck-home-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.duck-home-pill,
.duck-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  border-radius: 8px;
  padding: 8px 15px;
  background: linear-gradient(180deg, #8b35ff 0%, #6519e6 100%);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(89, 24, 224, 0.42);
}

.duck-home-kicker {
  margin-bottom: 10px;
  background: transparent;
  color: var(--duck-home-yellow);
  padding: 0;
  box-shadow: none;
}

.duck-home-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: var(--spw-display-font);
  font-size: clamp(5.4rem, 13vw, 10.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.42),
    0 18px 34px rgba(0, 0, 0, 0.42);
}

.duck-home-ribbon {
  display: inline-flex;
  max-width: 680px;
  margin: 24px 0 0 12px;
  transform: rotate(-2deg);
  padding: 8px 22px;
  background: linear-gradient(90deg, #7428ff 0%, #6121e7 100%);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: clamp(1.1rem, 2.3vw, 1.55rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(52, 15, 144, 0.36);
}

.duck-home-subtitle {
  max-width: 590px;
  margin: 28px 0 0;
  color: #ffffff;
  font-size: clamp(1.24rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
}

.duck-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.duck-home-primary,
.duck-home-secondary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 20px;
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.duck-home-primary {
  background: linear-gradient(180deg, #8b35ff 0%, #5a10df 100%);
  box-shadow: 0 20px 36px rgba(80, 20, 214, 0.38);
}

.duck-home-secondary {
  border: 1px solid rgba(159, 151, 213, 0.55);
  background: rgba(15, 18, 45, 0.76);
}

.duck-home-hero-card {
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(130, 91, 196, 0.56);
  border-radius: 24px;
  padding: 20px;
  background:
    radial-gradient(circle at 70% 14%, rgba(255, 213, 0, 0.18), transparent 9rem),
    radial-gradient(circle at 20% 80%, rgba(126, 46, 255, 0.34), transparent 15rem),
    rgba(13, 13, 43, 0.92);
  box-shadow: var(--spw-shadow);
}

.duck-home-featured-label {
  justify-self: start;
  border-radius: 8px;
  padding: 7px 12px;
  background: var(--duck-home-yellow);
  color: #111019;
  font-family: var(--spw-chunky-font);
  font-size: 0.88rem;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.duck-home-hero-card img {
  width: min(100%, 380px);
  justify-self: center;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.48));
}

.duck-home-featured-copy {
  display: grid;
  gap: 5px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(7, 8, 24, 0.72);
}

.duck-home-featured-copy strong {
  color: var(--duck-home-yellow);
  font-family: var(--spw-chunky-font);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.duck-home-featured-copy span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.duck-home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.duck-home-stats article {
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(122, 128, 189, 0.18);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 42, 224, 0.18), transparent 70%),
    rgba(18, 22, 54, 0.86);
  text-align: center;
}

.duck-home-stats strong {
  color: var(--duck-home-yellow);
  font-family: var(--spw-display-font);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.9;
}

.duck-home-stats span {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.duck-rounds-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}

.duck-rounds-header h2,
.duck-home-section-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.duck-home-search {
  display: grid;
  gap: 7px;
  width: min(100%, 420px);
  color: #ffffff;
  font-family: var(--spw-ui-font);
  font-size: 0.95rem;
  font-weight: 800;
}

.duck-home-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(159, 151, 213, 0.52);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(10, 13, 36, 0.88);
  color: #ffffff;
}

.duck-home-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.duck-round-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.duck-round-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 128, 189, 0.2);
  border-radius: 22px;
  padding: 15px;
  background:
    radial-gradient(circle at 76% 2%, rgba(255, 213, 0, 0.13), transparent 7rem),
    linear-gradient(180deg, rgba(22, 24, 60, 0.96), rgba(11, 13, 36, 0.96));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.duck-round-card[hidden] {
  display: none;
}

.duck-round-card--featured {
  border-color: rgba(137, 55, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(137, 55, 255, 0.28),
    0 24px 52px rgba(78, 21, 190, 0.34);
}

.duck-round-card-main {
  display: grid;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.duck-round-thumb {
  display: grid;
  overflow: hidden;
  min-height: 210px;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 55% 30%, rgba(126, 46, 255, 0.35), transparent 9rem),
    rgba(7, 8, 24, 0.74);
}

.duck-round-thumb img {
  width: 62%;
  max-height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.4));
}

.duck-round-thumb--hero {
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 213, 0, 0.16), transparent 8rem),
    radial-gradient(circle at 45% 52%, rgba(126, 46, 255, 0.38), transparent 11rem),
    rgba(7, 8, 24, 0.74);
}

.duck-round-thumb--hero img {
  width: 130%;
  max-height: 318px;
  margin-top: -18px;
}

.duck-round-meta {
  display: grid;
  gap: 7px;
}

.duck-round-category {
  color: var(--duck-home-yellow);
  font-family: var(--spw-chunky-font);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.duck-round-meta strong {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.36rem;
  line-height: 1;
  text-transform: uppercase;
}

.duck-round-meta > span:last-child {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.28;
}

.duck-round-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.duck-round-play,
.duck-round-details {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 9px 10px;
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.duck-round-play {
  background: linear-gradient(180deg, #8b35ff 0%, #6519e6 100%);
}

.duck-round-details {
  border: 1px solid rgba(159, 151, 213, 0.5);
  background: rgba(15, 18, 45, 0.72);
}

.duck-empty-state {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(159, 151, 213, 0.34);
  border-radius: 16px;
  padding: 16px;
  background: rgba(15, 18, 45, 0.72);
  color: #ffffff;
}

.duck-empty-state[hidden] {
  display: none;
}

.duck-home-loop {
  margin-top: 60px;
}

.duck-home-section-heading {
  max-width: 860px;
}

.duck-loop-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.duck-loop-list li {
  display: grid;
  gap: 8px;
  min-height: 178px;
  align-content: start;
  border: 1px solid rgba(122, 128, 189, 0.2);
  border-radius: 18px;
  padding: 16px;
  background: rgba(18, 22, 54, 0.86);
}

.duck-loop-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #9d48ff, #6622ed);
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  line-height: 1;
}

.duck-loop-list strong {
  color: #ffffff;
  font-family: var(--spw-chunky-font);
  font-size: 1.06rem;
  line-height: 1;
  text-transform: uppercase;
}

.duck-loop-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.3;
}

.duck-home-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  border: 1px solid rgba(111, 119, 177, 0.42);
  border-radius: 999px;
  padding: 7px 24px;
  background: rgba(8, 12, 33, 0.78);
  color: #ffffff;
}

.duck-home-footer img {
  width: 58px;
  height: 58px;
}

.duck-home-footer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.18;
}

.duck-home-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.duck-home-footer a {
  color: var(--duck-home-yellow);
  font-family: var(--spw-chunky-font);
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes aiNameSwap {
  0%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }

  20%,
  100% {
    opacity: 0;
    transform: translateY(-0.25em);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .ai-name-rotator span {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .ai-name-rotator span:first-child {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .store-hero,
  .app-detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: auto;
  }

  .app-detail-hero--with-preview .detail-preview {
    max-width: 520px;
    justify-self: center;
  }

  .app-grid,
  .use-case-grid,
  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spw-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .spw-logo-link img {
    width: 210px;
  }

  .spw-more-link {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .spw-hero,
  .spw-preview-grid,
  .spw-bottom-grid,
  .privacy-hero {
    grid-template-columns: 1fr;
  }

  .spw-hero {
    min-height: 0;
  }

  .privacy-hero {
    min-height: 0;
  }

  .privacy-scorecard {
    max-width: 620px;
    justify-self: center;
    width: 100%;
  }

  .spw-hero-copy {
    order: 2;
  }

  .spw-hero-art {
    order: 1;
    justify-self: center;
    width: min(100%, 380px);
  }

  .spw-feature-grid,
  .spw-secondary-providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spw-step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .spw-step-list li:not(:last-child)::after {
    display: none;
  }

  .spw-preview-column + .spw-preview-column {
    border-left: 0;
    border-top: 1px dashed rgba(165, 168, 208, 0.34);
    padding-top: 14px;
    padding-left: 0;
  }

  .duck-home-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .duck-home-logo img {
    width: 210px;
  }

  .duck-home-nav a {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .duck-home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .duck-home-hero-card {
    max-width: 520px;
    justify-self: center;
  }

  .duck-home-stats,
  .duck-round-grid,
  .duck-loop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .duck-rounds-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-footer,
  .toolbar-section,
  .app-title-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 8px;
    padding: 7px 12px;
  }

  .brand {
    gap: 7px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .site-nav {
    justify-content: flex-end;
    width: auto;
    flex: 1;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 0;
    font-size: 0.78rem;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .privacy-hero {
    padding: 30px 0 12px;
  }

  .privacy-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
    line-height: 0.84;
  }

  .privacy-lede {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1.12rem;
    line-height: 1.28;
  }

  .privacy-actions {
    margin-top: 22px;
  }

  .privacy-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .privacy-points article,
  .privacy-note {
    padding: 16px;
  }

  .privacy-points article {
    min-height: 0;
  }

  .duck-home-topbar {
    display: flex;
    position: relative;
    justify-content: center;
    min-height: 72px;
    padding: 12px 14px;
  }

  .duck-topbar-menu {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .duck-home-menu {
    width: 38px;
    height: 36px;
    gap: 5px;
    padding: 8px 5px;
  }

  .duck-home-menu .duck-menu-bar {
    width: 27px;
    height: 3px;
  }

  .duck-home-logo img {
    width: 150px;
  }

  .duck-home-nav {
    display: none;
  }

  .duck-home-page {
    width: calc(100% - 28px);
    max-width: 620px;
    margin: 0 auto;
    padding: 16px 0 14px;
  }

  .duck-home-hero,
  .duck-home-stats,
  .duck-rounds-header,
  .duck-round-grid,
  .duck-round-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .duck-home-hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .duck-home-copy {
    display: contents;
  }

  .duck-home-pill {
    display: none;
  }

  .duck-home-copy h1 {
    order: 2;
    width: 100%;
  }

  .duck-home-ribbon {
    display: none;
  }

  .duck-home-subtitle {
    order: 4;
  }

  .duck-home-copy h1,
  .duck-home-subtitle,
  .duck-round-meta,
  .duck-round-meta strong,
  .duck-round-meta > span:last-child {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .duck-home-hero-card {
    order: 5;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-width: 0;
    align-items: center;
    border-radius: 18px;
    padding: 14px;
  }

  .duck-home-featured-label {
    grid-column: auto;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .duck-home-hero-card img {
    width: min(82%, 280px);
    max-height: 330px;
    object-fit: contain;
    justify-self: center;
  }

  .duck-home-featured-copy {
    min-width: 0;
    align-self: center;
    justify-self: stretch;
    border-radius: 12px;
    padding: 11px;
  }

  .duck-home-featured-copy strong {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
  }

  .duck-home-featured-copy span {
    font-size: 0.78rem;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  .duck-home-copy h1 {
    font-size: 3.62rem;
    line-height: 0.82;
  }

  .duck-home-subtitle {
    width: auto;
    max-width: min(100%, 30ch);
    margin-top: 18px;
    font-size: 1.18rem;
    line-height: 1.24;
  }

  .duck-home-actions {
    order: 6;
    display: grid;
    grid-template-columns: 1fr;
    align-self: stretch;
    gap: 10px;
    margin-top: 20px;
  }

  .duck-home-primary,
  .duck-home-secondary {
    width: 100%;
    min-height: 64px;
    padding: 14px 16px;
    font-size: 1.15rem;
    text-align: center;
    white-space: normal;
  }

  .duck-home-stats,
  .duck-loop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .duck-home-stats {
    gap: 8px;
  }

  .duck-home-stats article {
    min-width: 0;
    min-height: 74px;
    border-radius: 14px;
    padding: 9px;
  }

  .duck-home-stats strong {
    font-size: 2.35rem;
  }

  .duck-home-stats span {
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .duck-rounds-header {
    gap: 12px;
    margin-top: 34px;
  }

  .duck-rounds-header h2,
  .duck-home-section-heading h2 {
    font-size: 1.92rem;
    line-height: 1.02;
  }

  .duck-home-search {
    width: 100%;
    font-size: 0.86rem;
  }

  .duck-home-search input {
    min-height: 50px;
    font-size: 1rem;
  }

  .duck-round-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .duck-round-card {
    min-width: 0;
    border-radius: 18px;
    padding: 13px;
  }

  .duck-round-card-main {
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
    align-items: stretch;
  }

  .duck-round-thumb {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .duck-round-thumb img {
    width: 78%;
    max-height: 220px;
  }

  .duck-round-thumb--hero img {
    width: 126%;
    max-height: 286px;
    margin-top: -20px;
  }

  .duck-round-meta {
    min-width: 0;
    gap: 7px;
  }

  .duck-round-category {
    font-size: 0.78rem;
  }

  .duck-round-meta strong {
    font-size: 1.32rem;
    overflow-wrap: anywhere;
  }

  .duck-round-meta > span:last-child {
    display: block;
    overflow: visible;
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .duck-round-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;
    min-width: 0;
  }

  .duck-round-play,
  .duck-round-details {
    min-width: 0;
    min-height: 50px;
    font-size: 0.92rem;
    text-align: center;
    white-space: normal;
  }

  .duck-home-loop {
    margin-top: 42px;
  }

  .duck-loop-list {
    gap: 10px;
  }

  .duck-loop-list li {
    min-height: 0;
    border-radius: 16px;
  }

  .duck-home-footer {
    grid-template-columns: 44px minmax(0, 1fr);
    border-radius: 18px;
    padding: 8px 12px;
  }

  .duck-home-footer img {
    width: 44px;
    height: 44px;
  }

  .duck-home-footer p {
    font-size: 0.82rem;
  }

  .duck-home-footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .duck-home-footer a {
    font-size: 0.82rem;
  }

  .store-hero {
    display: block;
    padding: 22px 14px 24px;
  }

  .hero-showcase,
  .prompt-switcher {
    display: none;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.32rem;
  }

  .ai-name-rotator {
    display: inline-grid;
    min-width: 7.6ch;
    vertical-align: baseline;
  }

  .ai-name-rotator span {
    display: block;
    animation: aiNameSwap 10s infinite;
    opacity: 0;
    transform: translateY(0.25em);
  }

  .ai-name-rotator span:nth-child(2) {
    animation-delay: 2s;
  }

  .ai-name-rotator span:nth-child(3) {
    animation-delay: 4s;
  }

  .ai-name-rotator span:nth-child(4) {
    animation-delay: 6s;
  }

  .ai-name-rotator span:nth-child(5) {
    animation-delay: 8s;
  }

  .hero-subtitle {
    display: block;
    overflow: visible;
    margin-top: 13px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .app-title-block h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .app-detail-hero {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .app-detail-page .app-detail-hero,
  .app-detail-page .detail-layout {
    padding-right: 20px;
    padding-left: 20px;
  }

  .app-title-block {
    width: 100%;
    margin-bottom: 22px;
  }

  .app-detail-page .app-title-block,
  .app-detail-page .app-title-block > div,
  .app-detail-page .install-panel,
  .app-detail-page .detail-preview,
  .app-detail-page .detail-main,
  .app-detail-page .detail-sidebar,
  .app-detail-page .content-section,
  .app-detail-page .sidebar-section {
    max-width: calc(100vw - 40px);
  }

  .app-detail-page .detail-main,
  .app-detail-page .detail-sidebar,
  .app-detail-page .content-section,
  .app-detail-page .sidebar-section {
    min-width: 0;
    width: 100%;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-detail-summary .app-title-block {
    margin-bottom: 0;
  }

  .detail-preview {
    margin-top: 18px;
  }

  .detail-preview figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .toolbar-section {
    display: flex;
    gap: 12px;
    padding-top: 18px;
  }

  .search-box {
    width: 100%;
    gap: 5px;
    font-size: 0.78rem;
  }

  .search-box input {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .use-case-grid,
  .workflow-list {
    grid-template-columns: 1fr;
  }

  .category-row {
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 2px;
  }

  .category-chip {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 5px 9px;
    font-size: 0.78rem;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 10px;
  }

  .app-card {
    gap: 8px;
    min-height: 112px;
    padding: 9px;
    box-shadow: 0 7px 16px rgba(23, 32, 38, 0.05);
  }

  .app-card::before {
    display: none;
  }

  .app-card-main {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .app-card--with-preview .app-card-main {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .app-card-preview {
    aspect-ratio: 1 / 1;
  }

  .app-icon {
    width: 34px;
    height: 34px;
    box-shadow: 0 6px 14px rgba(23, 32, 38, 0.1);
  }

  .app-meta {
    min-width: 0;
    gap: 2px;
  }

  .category-label {
    display: none;
  }

  .app-meta strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .app-meta > span:last-child {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .card-action-buttons {
    gap: 4px;
  }

  .card-action-buttons .button {
    min-height: 30px;
    padding: 4px 3px;
    font-size: 0.68rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .use-case-section {
    padding-top: 42px;
  }

  .use-case-grid {
    gap: 8px;
    margin-top: 14px;
  }

  .use-case-card {
    min-height: 0;
    padding: 12px;
  }

  .install-panel {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .provider-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .provider-action-row--single {
    grid-template-columns: 1fr;
  }

  .provider-action-name {
    grid-column: 1 / -1;
    min-height: 40px;
    gap: 7px;
    padding: 7px 8px;
    font-size: 0.84rem;
  }

  .provider-action-name img {
    width: 24px;
    height: 24px;
  }

  .provider-action-button,
  .provider-action-button.provider-button-primary {
    min-height: 40px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .button.compact,
  .provider-button {
    width: 100%;
  }

  .replay-preview-grid,
  .round-fun-grid,
  .round-photo-strip,
  .round-stat-grid {
    grid-template-columns: 1fr;
  }

  .round-photo-strip {
    gap: 8px;
    padding: 0;
  }

  .round-photo-note,
  .round-photo-note--2,
  .round-photo-note--3,
  .round-photo-note--4 {
    min-height: 0;
    transform: none;
  }

  .replay-field {
    min-height: 0;
    padding: 12px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .spw-topbar {
    display: flex;
    position: relative;
    gap: 10px;
    justify-content: center;
    min-height: 72px;
    padding: 12px 14px;
  }

  .spw-menu-link {
    width: 38px;
    height: 36px;
    gap: 5px;
    padding: 8px 5px;
  }

  .spw-menu-link .duck-menu-bar {
    width: 27px;
    height: 3px;
  }

  .spw-logo-link img {
    width: 150px;
  }

  .spw-more-link {
    display: none;
  }

  .spw-page {
    width: calc(100% - 28px);
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    padding: 18px 0 14px;
  }

  .spw-feature-grid,
  .spw-play-panel,
  .spw-how,
  .spw-preview,
  .spw-bottom-grid,
  .spw-footer {
    width: 100%;
    max-width: 100%;
  }

  .spw-hero {
    gap: 8px;
  }

  .spw-hero-copy {
    order: 1;
    max-width: 100%;
    min-width: 0;
  }

  .spw-hero h1 {
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .spw-hero h1 span,
  .spw-hero h1 strong {
    display: block;
    max-width: 100%;
  }

  .spw-hero-art {
    order: 2;
    width: min(58vw, 210px);
  }

  .spw-hero-art img {
    max-height: 210px;
  }

  .spw-pill {
    margin-bottom: 11px;
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .spw-hero h1 {
    font-size: 2.58rem;
    line-height: 0.9;
  }

  .spw-ribbon {
    display: block;
    width: calc(100% - 22px);
    max-width: calc(100% - 22px);
    margin: 13px 0 0;
    transform: none;
    padding: 7px 11px;
    font-size: 0.82rem;
    line-height: 1.05;
    white-space: normal;
  }

  .spw-hook {
    margin-top: 14px;
  }

  .spw-hook p {
    font-size: 1.42rem;
  }

  .spw-hook span {
    font-size: 1rem;
    line-height: 1.32;
  }

  .spw-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .spw-feature-card {
    gap: 4px;
    min-height: 92px;
    border-radius: 12px;
    padding: 9px 8px;
  }

  .spw-feature-icon {
    min-height: 28px;
    font-size: 1.66rem;
  }

  .spw-feature-card strong {
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .spw-feature-card > span:last-child {
    font-size: 0.74rem;
    line-height: 1.16;
  }

  .spw-play-panel {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    border-radius: 16px;
    padding: 27px 12px 14px;
  }

  .spw-play-panel h2 {
    top: -14px;
    padding: 4px 12px;
    font-size: 0.82rem;
  }

  .spw-play-panel h2::before,
  .spw-play-panel h2::after {
    display: none;
  }

  .spw-primary-play {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    justify-self: center;
    min-height: 58px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1.04rem;
  }

  .spw-primary-play img {
    width: 36px;
    height: 36px;
  }

  .spw-primary-play strong {
    font-size: 1.5rem;
  }

  .spw-play-panel p,
  .spw-also {
    font-size: 0.9rem;
  }

  .spw-secondary-providers {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .spw-secondary-provider {
    min-height: 44px;
    border-radius: 10px;
    font-size: 0.94rem;
  }

  .spw-how h2 {
    gap: 9px;
    margin-left: 0;
    font-size: 1.18rem;
  }

  .spw-step-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .spw-step-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .spw-step-icon {
    min-height: 62px;
  }

  .spw-step-icon img {
    max-width: 64px;
    max-height: 58px;
  }

  .spw-step-emoji {
    font-size: 2.8rem;
  }

  .spw-step-list strong {
    padding-left: 33px;
    font-size: 0.94rem;
  }

  .spw-preview {
    border-radius: 16px;
    padding: 28px 14px 16px;
  }

  .spw-preview h2 {
    left: 16px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .spw-preview-grid {
    gap: 14px;
  }

  .spw-preview-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding-bottom: 12px;
  }

  .spw-preview-icon {
    font-size: 1.86rem;
  }

  .spw-preview-item p {
    font-size: 0.92rem;
  }

  .spw-bottom-grid {
    gap: 10px;
  }

  .spw-callout,
  .spw-get {
    border-radius: 16px;
    padding: 18px;
  }

  .spw-callout {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .spw-callout h2,
  .spw-get h2 {
    font-size: 1.14rem;
  }

  .spw-callout p,
  .spw-get li {
    font-size: 0.92rem;
  }

  .spw-callout img {
    width: 56px;
  }

  .spw-footer {
    grid-template-columns: 44px minmax(0, 1fr) 36px;
    gap: 8px;
    border-radius: 18px;
    padding: 8px 12px;
  }

  .spw-footer img {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .spw-footer p {
    font-size: 0.82rem;
  }

  .spw-footer span {
    font-size: 2rem;
  }
}

/* Critical mobile improvements for better UX */
@media (max-width: 480px) {
  /* Typography improvements */
  .duck-home-copy h1 {
    font-size: 2.4rem !important;
    line-height: 0.9 !important;
    margin-bottom: 12px;
  }
  
  .duck-home-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    max-width: 28ch !important;
    margin-top: 14px !important;
  }

  /* Better layout spacing */
  .duck-home-hero {
    gap: 14px;
    margin-bottom: 20px;
  }

  /* Single column for very small screens */
  .duck-round-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .duck-home-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  /* Improved touch targets */
  .duck-home-primary,
  .duck-home-secondary {
    min-height: 54px !important;
    font-size: 1.05rem !important;
    padding: 16px 18px !important;
    font-weight: 700;
  }

  .provider-action-button,
  .provider-action-button.provider-button-primary {
    min-height: 48px !important;
    font-size: 0.9rem !important;
    padding: 12px 8px !important;
    font-weight: 600;
  }

  .provider-action-name {
    min-height: 44px !important;
    font-size: 0.9rem !important;
    padding: 10px 12px !important;
  }

  /* Better card readability */
  .duck-round-card {
    padding: 14px !important;
    border-radius: 12px;
  }

  .duck-round-meta strong {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
  }

  .duck-round-meta > span:last-child {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
  }

  /* App detail page improvements */
  .app-title-block h1 {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
  }

  .install-panel {
    padding: 16px !important;
    gap: 14px;
  }

  /* Better search experience */
  .duck-home-search input {
    min-height: 48px !important;
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }

  /* Improved featured card */
  .duck-home-hero-card {
    padding: 16px !important;
    gap: 14px;
  }

  .duck-home-featured-copy strong {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
  }

  .duck-home-featured-copy span {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 520px) {
  .duck-home-page {
    width: calc(100% - 28px);
    max-width: none;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .duck-home-hero-card {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 11px;
  }

  .duck-home-hero-card img {
    width: min(82%, 260px);
    max-height: 310px;
  }

  .duck-home-featured-copy {
    padding: 10px;
  }

  .duck-home-featured-copy strong {
    font-size: 0.82rem;
  }

  .duck-home-featured-copy span {
    font-size: 0.74rem;
  }

  .duck-home-stats {
    gap: 8px;
  }

  .duck-home-stats article {
    min-height: 70px;
    padding: 10px 8px;
    text-align: center;
  }

  .duck-home-stats strong {
    font-size: 2.18rem;
  }

  .duck-home-stats span {
    font-size: 0.68rem;
  }

  .duck-round-card-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .duck-round-thumb {
    width: 100%;
  }

  .duck-round-thumb img {
    max-height: 210px;
  }

  .duck-round-thumb--hero img {
    max-height: 270px;
  }

  .duck-round-meta strong {
    font-size: 1.24rem;
    line-height: 1.15;
    margin-bottom: 3px;
  }

  .duck-round-meta > span:last-child {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .provider-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-action-row--single {
    grid-template-columns: 1fr;
  }

  .provider-action-name {
    grid-column: 1 / -1;
  }

  .provider-action-button,
  .provider-action-button.provider-button-primary {
    font-size: 0.84rem;
  }
}

@media (max-width: 390px) {
  .duck-home-logo img {
    width: 136px;
  }

  .duck-home-copy h1 {
    font-size: 2.2rem !important; /* Smaller for very small screens */
  }

  .duck-home-ribbon {
    font-size: 0.72rem;
  }

  .duck-home-subtitle {
    max-width: 26ch !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }

  .duck-home-stats span {
    font-size: 0.62rem;
  }

  .duck-round-actions {
    grid-template-columns: 1fr;
  }

  .duck-round-meta > span:last-child {
    max-width: 31ch;
  }

  .spw-logo-link img {
    width: 136px;
  }

  .spw-hero-art {
    width: min(56vw, 180px);
  }

  .spw-hero h1 {
    font-size: 2.12rem;
  }

  .spw-ribbon {
    font-size: 0.72rem;
  }
}
