@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --white: #ffffff;
  --cream: #fff9f0;
  --cream-dark: #fef3e2;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --orange: #f4a261;
  --orange-deep: #e76f51;
  --gold: #e9c46a;
  --teal: #264653;
  --text: #1a1a2e;
  --text-muted: #5c6370;
  --border: #e8e4df;
  --shadow: 0 8px 32px rgba(38, 70, 83, 0.08);
  --shadow-lg: 0 16px 48px rgba(38, 70, 83, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-deep);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 40%, var(--white) 100%);
}

.bg-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  filter: blur(1px);
  animation: cloudDrift linear infinite;
}

.bg-cloud::before,
.bg-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.bg-cloud-1 {
  width: 120px;
  height: 40px;
  top: 8%;
  left: -140px;
  animation-duration: 45s;
}

.bg-cloud-1::before { width: 50px; height: 50px; top: -20px; left: 15px; }
.bg-cloud-1::after { width: 60px; height: 45px; top: -15px; left: 45px; }

.bg-cloud-2 {
  width: 90px;
  height: 32px;
  top: 18%;
  left: -110px;
  animation-duration: 55s;
  animation-delay: -20s;
  opacity: 0.7;
}

.bg-cloud-2::before { width: 40px; height: 40px; top: -18px; left: 10px; }
.bg-cloud-2::after { width: 45px; height: 35px; top: -12px; left: 35px; }

.bg-cloud-3 {
  width: 100px;
  height: 36px;
  top: 55%;
  left: -120px;
  animation-duration: 60s;
  animation-delay: -35s;
  opacity: 0.5;
}

.bg-cloud-3::before { width: 45px; height: 45px; top: -20px; left: 12px; }
.bg-cloud-3::after { width: 50px; height: 38px; top: -14px; left: 40px; }

@keyframes cloudDrift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 200px)); }
}

.bg-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(45, 106, 79, 0.06));
}

.bg-feather {
  position: absolute;
  width: 12px;
  height: 20px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  opacity: 0;
  animation: featherFall linear infinite;
}

.bg-feather:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.bg-feather:nth-child(2) { left: 30%; animation-duration: 15s; animation-delay: -4s; width: 8px; height: 14px; background: var(--orange); }
.bg-feather:nth-child(3) { left: 55%; animation-duration: 11s; animation-delay: -7s; }
.bg-feather:nth-child(4) { left: 75%; animation-duration: 14s; animation-delay: -2s; width: 10px; height: 16px; background: var(--green-pale); }
.bg-feather:nth-child(5) { left: 90%; animation-duration: 13s; animation-delay: -9s; }

@keyframes featherFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(100vh) rotate(360deg); }
}

.bg-road-line {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 30px,
    transparent 30px,
    transparent 60px
  );
  opacity: 0.15;
  animation: roadScroll 3s linear infinite;
}

@keyframes roadScroll {
  from { background-position: 0 0; }
  to { background-position: 60px 0; }
}

.bg-dot {
  position: absolute;
  border-radius: 50%;
  animation: dotFloat ease-in-out infinite;
  pointer-events: none;
}

.bg-dot-1 { width: 6px; height: 6px; background: var(--green); opacity: 0.15; top: 25%; left: 8%; animation-duration: 7s; }
.bg-dot-2 { width: 8px; height: 8px; background: var(--orange); opacity: 0.12; top: 45%; left: 85%; animation-duration: 9s; animation-delay: -3s; }
.bg-dot-3 { width: 5px; height: 5px; background: var(--gold); opacity: 0.18; top: 70%; left: 20%; animation-duration: 8s; animation-delay: -5s; }
.bg-dot-4 { width: 7px; height: 7px; background: var(--green-light); opacity: 0.1; top: 35%; left: 70%; animation-duration: 10s; animation-delay: -1s; }
.bg-dot-5 { width: 4px; height: 4px; background: var(--orange-deep); opacity: 0.14; top: 82%; left: 55%; animation-duration: 6s; animation-delay: -4s; }

@keyframes dotFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(12px, -18px); }
  66% { transform: translate(-8px, 10px); }
}

.bg-ring {
  position: absolute;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 6s ease-out infinite;
  pointer-events: none;
}

.bg-ring-1 { width: 80px; height: 80px; top: 30%; right: 10%; animation-delay: 0s; }
.bg-ring-2 { width: 60px; height: 60px; top: 60%; left: 5%; animation-delay: -3s; border-color: var(--gold); }

@keyframes ringPulse {
  0% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 0.05; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.8); }
}

.bg-sun {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(233, 196, 106, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: sunGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sunGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  flex-shrink: 0;
}

.logo img {
  width: 38px;
  height: 38px;
}

.logo span {
  display: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--cream);
  color: var(--green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--green-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--teal);
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-deep);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  animation: floatBob 4s ease-in-out infinite;
}

.hero-float-1 {
  width: 60px;
  height: 60px;
  background: var(--gold);
  opacity: 0.3;
  top: -20px;
  right: -10px;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  opacity: 0.5;
  bottom: 20px;
  left: -15px;
  animation-delay: -2s;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PLAY BADGE ===== */
.play-badge {
  display: inline-block;
  transition: transform 0.25s, filter 0.25s;
  line-height: 0;
}

.play-badge img {
  height: 52px;
  width: auto;
}

.play-badge:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.play-badge-lg img {
  height: 60px;
}

/* ===== GAME DESCRIPTION BLOCK ===== */
.game-intro {
  padding: 56px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.game-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange), var(--green));
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.intro-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.intro-card .reg-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.intro-card h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 16px;
}

.intro-card p {
  margin-bottom: 14px;
  color: var(--text);
}

.intro-card .highlight-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}

.intro-subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orange-deep);
  margin: 24px 0 12px;
}

.intro-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
}

/* ===== SCREENSHOT SLIDER ===== */
.screenshot-section {
  background: var(--white);
  overflow: hidden;
}

.slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  padding: 0 8px;
}

.slider-slide img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: var(--teal);
  font-size: 1.2rem;
}

.slider-btn:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: var(--green);
  transform: scale(1.2);
}

/* ===== BENTO FEATURES ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bento-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-item:hover::after {
  opacity: 1;
}

.bento-item.large {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bento-icon.green { background: var(--green-pale); }
.bento-icon.orange { background: #fde8d0; }
.bento-icon.gold { background: #fdf3d7; }
.bento-icon.teal { background: #dce8ec; }

.bento-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.bento-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== GAMEPLAY STEPS ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.85;
}

/* ===== ANIMALS GRID ===== */
.animals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.animal-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.animal-chip:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.animal-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.animal-chip span {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--teal);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ===== CTA CARDS ===== */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.cta-card.support {
  background: linear-gradient(135deg, var(--green-pale) 0%, #b7e4c7 100%);
}

.cta-card.download {
  background: linear-gradient(135deg, #fde8d0 0%, #fad4a0 100%);
}

.cta-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

.cta-deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 5rem;
  opacity: 0.15;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 48px 0 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--green);
}

/* ===== CONTENT PAGE ===== */
.content-block {
  padding: 48px 0 72px;
}

.content-block h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin: 36px 0 14px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin: 24px 0 10px;
}

.content-block p {
  margin-bottom: 14px;
  color: var(--text);
}

.content-block ul,
.content-block ol {
  margin: 0 0 16px 20px;
  color: var(--text);
}

.content-block li {
  margin-bottom: 8px;
  list-style: disc;
}

.content-block ol li {
  list-style: decimal;
}

.content-narrow {
  max-width: 780px;
}

.content-wide {
  max-width: 960px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.feature-list-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.feature-list-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-list-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}

.feature-list-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.tip-card {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.tip-card p {
  margin: 0;
  font-size: 0.94rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.screenshot-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.cta-inline {
  margin-top: 40px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-inline-text h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.cta-inline-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== SUPPORT FORM ===== */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--teal);
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.75;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-accept {
  background: var(--green);
  color: var(--white);
}

.btn-decline {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--border);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== LEGAL PAGES ===== */
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.legal-toc {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-toc h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 10px;
}

.legal-toc ol {
  margin-left: 18px;
}

.legal-toc li {
  list-style: decimal;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.legal-toc a {
  color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .logo span {
    display: inline;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item.large {
    grid-column: span 2;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-duo {
    grid-template-columns: 1fr;
  }

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

  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .intro-card {
    padding: 24px 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large {
    grid-column: span 1;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .animals-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 40px 0 56px;
  }
}

@media (max-width: 480px) {
  .animals-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .play-badge img {
    height: 44px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
