/* No Ducks Given Games — Chuck a Duck studio site */

:root {
  --ink: #061428;
  --ink-soft: #0C2238;
  --ink-deep: #040C18;
  --teal: #2EC4B6;
  --teal-deep: #1A8F86;
  --yellow: #FFD60A;
  --yellow-deep: #E6C000;
  --coral: #FF5A5F;
  --foam: #F2F7F8;
  --text: #E8F1F4;
  --text-muted: rgba(232, 241, 244, 0.72);
  --text-dark: #1A2E2C;
  --text-body: #3A4F4C;
  --pipe-blue: #41CBFF;
  --pipe-yellow: #FFF145;
  --pipe-pink: #FF549B;
  --pipe-green: #61C77E;
  --pipe-orange: #FFA500;
  --pipe-purple: #A04DFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(4, 12, 24, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(65, 203, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 15%, rgba(255, 84, 155, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 90%, rgba(160, 77, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #040C18 0%, var(--ink) 40%, #0A1B2E 100%);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: drift 18s var(--ease) infinite alternate;
}

.orb-a {
  width: 42vw;
  height: 42vw;
  top: -10%;
  left: -8%;
  background: rgba(65, 203, 255, 0.32);
}

.orb-b {
  width: 28vw;
  height: 28vw;
  top: 35%;
  right: -6%;
  background: rgba(255, 241, 69, 0.16);
  animation-duration: 22s;
  animation-delay: -4s;
}

.orb-c {
  width: 36vw;
  height: 36vw;
  bottom: -12%;
  left: 30%;
  background: rgba(255, 84, 155, 0.14);
  animation-duration: 26s;
  animation-delay: -8s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.header.scrolled {
  background: rgba(6, 20, 40, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--pipe-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--yellow);
  color: var(--ink) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.28);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 28px) 0 48px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(1.2) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.38) 0%, rgba(4, 12, 24, 0.58) 42%, rgba(4, 12, 24, 0.9) 100%),
    radial-gradient(ellipse at 50% 28%, rgba(4, 12, 24, 0.12) 0%, rgba(4, 12, 24, 0.55) 72%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  z-index: 1;
}

.hero-logo {
  width: min(168px, 42vw);
  margin: 0 auto 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: float-logo 5s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 14px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero .tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pipe-stripe {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pipe-stripe span {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--c);
  box-shadow: 0 0 16px color-mix(in srgb, var(--c) 55%, transparent);
  animation: pipe-pulse 2.4s ease-in-out infinite;
}

.pipe-stripe span:nth-child(2) { animation-delay: 0.15s; }
.pipe-stripe span:nth-child(3) { animation-delay: 0.3s; }
.pipe-stripe span:nth-child(4) { animation-delay: 0.45s; }
.pipe-stripe span:nth-child(5) { animation-delay: 0.6s; }
.pipe-stripe span:nth-child(6) { animation-delay: 0.75s; }

@keyframes pipe-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.75; }
  50% { transform: scaleX(1.18); opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 214, 10, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.scroll-cue {
  display: inline-flex;
  margin-top: 28px;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue-line {
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  animation: cue 1.6s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .orb,
  .hero-logo,
  .scroll-cue-line,
  .pipe-stripe span,
  .duck-art img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pipe-blue);
  margin-bottom: 10px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* About */
.about {
  background:
    linear-gradient(180deg, rgba(242, 247, 248, 0.98), #eef6f5);
  color: var(--text-dark);
  clip-path: polygon(0 2vw, 100% 0, 100% calc(100% - 2vw), 0 100%);
  margin-top: -2vw;
  margin-bottom: -2vw;
  padding-top: calc(64px + 2vw);
  padding-bottom: calc(64px + 2vw);
}

.about .section-subtitle {
  color: var(--text-body);
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.about-copy p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 12px;
  max-width: 46ch;
}

.about-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26, 46, 44, 0.12);
}

.about-pillars li {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 46, 44, 0.12);
  transition: padding-left 0.3s var(--ease);
}

.about-pillars li:hover {
  padding-left: 8px;
}

.about-pillars strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
}

.about-pillars span {
  color: var(--text-body);
  font-size: 0.98rem;
}

/* Game */
.game {
  padding: 72px 0 64px;
  overflow: hidden;
}

.game-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.game-stage-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.25);
  transform: scale(1.12);
  opacity: 0.45;
}

.game-stage-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 40, 0.84) 0%, rgba(6, 20, 40, 0.9) 100%);
}

.game-panel {
  position: relative;
  z-index: 1;
}

.game-intro {
  max-width: 620px;
  margin-bottom: 28px;
}

.game-mark {
  width: 88px;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.status-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--coral);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.game-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 12px;
}

.game-tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 480px;
}

.game-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.game-shot {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  transition: transform 0.45s var(--ease);
}

.game-shot:hover {
  transform: scale(1.015) translateY(-4px);
}

.game-shot img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.game-shot figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(6, 20, 40, 0.72);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
}

.game-details h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.game-details p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.game-features-list {
  list-style: none;
  margin-bottom: 24px;
}

.game-features-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.game-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pipe-blue);
  transform: translateY(-50%);
}

.game-features-list li:nth-child(2)::before { background: var(--pipe-yellow); }
.game-features-list li:nth-child(3)::before { background: var(--pipe-pink); }
.game-features-list li:nth-child(4)::before { background: var(--pipe-green); }

.wishlist-note {
  display: inline-block;
  color: var(--yellow) !important;
  font-weight: 700;
  margin: 0 !important;
}

/* Modes */
.modes {
  background:
    linear-gradient(180deg, rgba(12, 34, 56, 0.55), transparent 70%);
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.mode-block {
  padding: 4px 0 12px;
  border-top: 3px solid var(--pipe-blue);
}

.mode-block:nth-child(2) {
  border-top-color: var(--pipe-pink);
}

.mode-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.mode-block h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.mode-block p {
  color: var(--text-muted);
  max-width: 42ch;
}

.lane-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lane-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
  transition: transform 0.4s var(--ease);
}

.lane-tile:hover {
  transform: translateY(-6px);
}

.lane-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.lane-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(6, 20, 40, 0.75);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 999px;
}

/* Ducks */
.ducks {
  padding-bottom: 56px;
}

.duck-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 18px;
}

.duck-item {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.duck-art {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
}

.duck-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.4));
  animation: duck-bob 4.5s ease-in-out infinite;
  transition: transform 0.35s var(--ease);
}

.duck-item:nth-child(2n) .duck-art img { animation-delay: -0.8s; }
.duck-item:nth-child(3n) .duck-art img { animation-delay: -1.6s; }
.duck-item:nth-child(4n) .duck-art img { animation-delay: -2.2s; }

.duck-item:hover .duck-art img {
  transform: translateY(-6px) scale(1.04);
}

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

.duck-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.duck-item p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 28ch;
}

/* Gallery */
.gallery {
  background: linear-gradient(180deg, transparent, rgba(12, 34, 56, 0.65));
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
  transition: transform 0.4s var(--ease);
}

.gallery-frame:hover {
  transform: translateY(-6px);
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

/* CTA */
.cta {
  padding: 72px 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(65, 203, 255, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cta-duck {
  width: 72px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  animation: float-logo 5s ease-in-out infinite;
}

.cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 10px;
}

.cta p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--ink-deep);
  color: rgba(232, 241, 244, 0.65);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand .logo-img {
  height: 48px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a:hover {
  color: var(--yellow);
}

.muted {
  opacity: 0.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95%);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.2s var(--ease);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Privacy page compatibility */
.policy-page {
  padding: 120px 0 80px !important;
  background: transparent !important;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.policy-content h1,
.policy-content h2 {
  color: var(--text-dark);
}

.policy-content p,
.policy-content li {
  color: var(--text-body);
}

.policy-meta {
  color: #6b7c79;
}

/* Responsive */
@media (max-width: 960px) {
  .about-split,
  .game-layout,
  .modes-grid,
  .gallery-rail,
  .lane-row {
    grid-template-columns: 1fr;
  }

  .duck-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-frame img {
    aspect-ratio: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(6, 20, 40, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .duck-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .duck-art {
    width: 120px;
    height: 120px;
  }

  .cta-inner {
    padding: 32px 20px;
  }

  .about,
  .game,
  .modes,
  .ducks,
  .gallery,
  .cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about {
    clip-path: none;
    margin: 0;
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

@media (max-width: 420px) {
  .pipe-stripe span {
    width: 22px;
  }
}
