/* ============================================
   BIOME — Jardin Numérique Vivant
   Styles complets
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #F7F9F0;
  --bg-secondary: #EAF2E4;
  --bg-dark: #1a2e1a;
  --green-leaf: #5B8C3E;
  --green-sprout: #8FB94A;
  --green-deep: #3D6B2E;
  --green-dark: #2D3A2E;
  --pink: #E891A6;
  --lavender: #B8A9D4;
  --coral: #F2A77B;
  --sky: #7EC8E3;
  --sun: #F5D061;
  --terracotta: #D4856A;
  --text-dark: #2D3A2E;
  --text-light: #F7F9F0;
  --text-muted: #6B7C6B;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* --- Custom Cursor --- */
.cursor-drop {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: radial-gradient(circle, rgba(143, 185, 74, 0.8), rgba(91, 140, 62, 0.4));
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
  filter: blur(0.5px);
}

.cursor-drop.active {
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, rgba(232, 145, 166, 0.9), rgba(184, 169, 212, 0.5));
}

.cursor-ring {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 140, 62, 0.3);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}

.cursor-ring.active {
  width: 70px;
  height: 70px;
  border-color: rgba(232, 145, 166, 0.4);
}

/* --- Particles Canvas --- */
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.butterflies-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* --- Loader --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-leaf {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.loader-svg .loader-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLeaf 2s ease forwards;
}

.loader-svg .loader-vein {
  opacity: 0;
  animation: fadeInVein 0.5s ease forwards;
}

.loader-svg .loader-vein:nth-child(3) { animation-delay: 0.8s; }
.loader-svg .loader-vein:nth-child(4) { animation-delay: 1s; }
.loader-svg .loader-vein:nth-child(5) { animation-delay: 1.2s; }

@keyframes drawLeaf {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInVein {
  to { opacity: 1; }
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green-leaf);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-leaf), var(--green-sprout));
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.nav.scrolled {
  background: rgba(247, 249, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(91, 140, 62, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo-icon {
  font-size: 22px;
}

.nav-layers {
  display: flex;
  gap: 8px;
}

.nav-layer {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--text-muted);
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.nav-layer:hover {
  color: var(--green-leaf);
  background: rgba(91, 140, 62, 0.08);
}

.nav-layer.active {
  color: var(--green-deep);
  background: rgba(91, 140, 62, 0.12);
  font-weight: 700;
}

.nav-layer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* --- Sections --- */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.section-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.section-label.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease 0.15s;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.section-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero / Canopy --- */
.canopy {
  background: linear-gradient(180deg, #EAF2E4 0%, var(--bg-primary) 40%, #F5F7EC 100%);
}

.canopy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-leaf);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 32px;
}

.hero-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-leaf) 40%, var(--green-sprout) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: heroReveal 1.2s ease 0.8s forwards;
  transform: translateY(60px);
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.2s forwards;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.6s forwards;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--green-leaf);
  border-bottom: 2px solid var(--green-leaf);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}

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

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* --- Floating Leaves --- */
.floating-leaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: floatLeaf linear infinite;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) rotate(360deg);
    opacity: 0;
  }
}

/* --- Understory --- */
.understory {
  background: linear-gradient(180deg, #F5F7EC 0%, #E8F0E0 30%, #DCE8D0 70%, #C8DCC0 100%);
  padding: 120px 0;
}

.understory-content {
  padding-top: 80px;
}

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

.understory-leaf {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(91, 140, 62, 0.05), rgba(143, 185, 74, 0.1));
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1.2s ease 0.3s;
}

.understory-leaf.visible {
  opacity: 1;
  transform: translateX(0);
}

.understory-leaf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(91, 140, 62, 0.15), transparent);
  border-radius: 50%;
}

.understory-leaf::after {
  content: '🌿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.12;
}

.understory-text {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1.2s ease 0.5s;
}

.understory-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.understory-quote {
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 16px;
}

.understory-quote-author {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.understory-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-leaf), var(--green-sprout));
  margin: 32px 0;
  border-radius: 1px;
}

.understory-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.understory-body strong {
  color: var(--text-dark);
  font-weight: 500;
}

.understory-body em {
  color: var(--green-leaf);
  font-style: italic;
}

/* --- Prairie --- */
.prairie {
  background: linear-gradient(180deg, #C8DCC0 0%, #F7F9F0 20%, var(--bg-primary) 100%);
  padding: 160px 0;
}

.prairie-content {
  padding-top: 80px;
  text-align: center;
}

.specimen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.specimen-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(45, 58, 46, 0.06);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.specimen-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.specimen-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(45, 58, 46, 0.12);
}

.specimen-card:nth-child(1) { transition-delay: 0.1s; }
.specimen-card:nth-child(2) { transition-delay: 0.2s; }
.specimen-card:nth-child(3) { transition-delay: 0.3s; }
.specimen-card:nth-child(4) { transition-delay: 0.4s; }
.specimen-card:nth-child(5) { transition-delay: 0.5s; }
.specimen-card:nth-child(6) { transition-delay: 0.6s; }

.specimen-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 249, 240, 0.5), rgba(234, 242, 228, 0.5));
  position: relative;
  overflow: hidden;
}

.specimen-visual::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color, var(--green-leaf)), transparent);
  opacity: 0.08;
  filter: blur(20px);
  transition: all 0.6s ease;
}

.specimen-card:hover .specimen-visual::before {
  width: 250px;
  height: 250px;
  opacity: 0.15;
}

.specimen-svg {
  width: 120px;
  height: 120px;
  transition: all 0.6s ease;
}

.specimen-card:hover .specimen-svg {
  transform: scale(1.15) rotate(5deg);
}

.specimen-info {
  padding: 28px 28px 32px;
  text-align: left;
}

.specimen-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.specimen-latin {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}

.specimen-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.specimen-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* --- Roots --- */
.roots {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a2e1a 30%, #0f1a0f 100%);
  padding: 160px 0;
  min-height: 100vh;
}

.roots-content {
  padding-top: 80px;
  color: var(--text-light);
}

.roots-content .section-label {
  color: rgba(247, 249, 240, 0.4);
}

.roots-content .section-title {
  color: var(--text-light);
}

.roots-content .section-subtitle {
  color: rgba(247, 249, 240, 0.5);
}

.roots-visual {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1.2s ease 0.3s;
}

.roots-visual.visible {
  opacity: 1;
  transform: scale(1);
}

.roots-svg {
  width: 100%;
  height: auto;
}

.roots-svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRoots 3s ease forwards;
}

@keyframes drawRoots {
  to { stroke-dashoffset: 0; }
}

.roots-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.6s;
}

.roots-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.roots-body {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(247, 249, 240, 0.6);
  margin-bottom: 60px;
}

.roots-body em {
  color: var(--green-sprout);
  font-style: italic;
}

.roots-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.roots-stat {
  text-align: center;
}

.roots-stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-sprout), var(--green-leaf));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.roots-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 249, 240, 0.4);
  letter-spacing: 1px;
}

/* --- Footer --- */
.footer {
  background: #0f1a0f;
  padding: 80px 40px 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(247, 249, 240, 0.4);
  margin-bottom: 40px;
}

.footer-credit {
  font-size: 14px;
  color: rgba(247, 249, 240, 0.3);
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 249, 240, 0.4);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--green-sprout);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .specimen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-drop, .cursor-ring { display: none; }
  
  .nav { padding: 16px 20px; }
  .nav-layers { display: none; }
  
  .section-content { padding: 0 20px; }
  
  .understory-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .specimen-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .roots-stats {
    gap: 40px;
  }
  
  .hero-title {
    font-size: clamp(48px, 15vw, 80px);
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* --- Season System --- */
body.season-spring {
  --season-accent: #fbc3d0;
  --season-particle: #fbc3d0;
}

body.season-summer {
  --season-accent: #f4d03f;
  --season-particle: #f4d03f;
}

body.season-autumn {
  --season-accent: #d35400;
  --season-particle: #d35400;
}

body.season-winter {
  --season-accent: #a0c4ff;
  --season-particle: #ffffff;
}

/* Season indicator in nav */
.nav-season {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-season:hover {
  opacity: 1;
}

.nav-season-icon {
  font-size: 16px;
  animation: seasonPulse 4s ease infinite;
}

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

/* Season overlay particles */
.season-particle {
  position: fixed;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  will-change: transform, opacity;
}

/* Spring petals */
.season-petal {
  width: 8px;
  height: 10px;
  background: var(--season-particle, #fbc3d0);
  border-radius: 50% 0 50% 50%;
  opacity: 0.5;
  animation: petalFall linear forwards;
}

@keyframes petalFall {
  0% {
    transform: translateY(-20px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) translateX(80px);
    opacity: 0;
  }
}

/* Summer fireflies */
.season-firefly {
  width: 4px;
  height: 4px;
  background: var(--season-particle, #f4d03f);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--season-particle, #f4d03f), 0 0 12px var(--season-particle, #f4d03f);
  animation: fireflyFloat 8s ease-in-out infinite;
}

@keyframes fireflyFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  25% { transform: translate(30px, -40px); opacity: 0.8; }
  50% { transform: translate(-20px, -80px); opacity: 0.3; }
  75% { transform: translate(40px, -40px); opacity: 0.9; }
}

/* Autumn leaves */
.season-autumn-leaf {
  width: 12px;
  height: 12px;
  background: var(--season-particle, #d35400);
  border-radius: 0 50% 50% 0;
  opacity: 0.4;
  animation: autumnFall linear forwards;
}

@keyframes autumnFall {
  0% {
    transform: translateY(-20px) rotate(0deg) translateX(0) scale(1);
    opacity: 0;
  }
  5% { opacity: 0.5; }
  50% { transform: translateY(50vh) rotate(360deg) translateX(-60px) scale(0.8); }
  100% {
    transform: translateY(100vh) rotate(720deg) translateX(40px) scale(0.5);
    opacity: 0;
  }
}

/* Winter snow */
.season-snow {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  animation: snowFall linear forwards;
}

@keyframes snowFall {
  0% {
    transform: translateY(-10px) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(100vh) translateX(30px);
    opacity: 0;
  }
}

/* Season filter on biome scene */
body.season-spring .particles-canvas {
  filter: saturate(1.1) brightness(1.05);
}

body.season-autumn .particles-canvas {
  filter: saturate(0.8) sepia(0.15);
}

body.season-winter .particles-canvas {
  filter: saturate(0.7) brightness(1.15);
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-leaves { display: none; }
  .particles-canvas, .butterflies-canvas { display: none; }
  .season-particle { display: none !important; }
}

/* --- Plant Game --- */
.plant-game {
  margin-top: 60px;
  text-align: center;
}

.plant-game-hint {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(247, 249, 240, 0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.planted-seeds {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 200px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(91, 140, 62, 0.05), rgba(45, 58, 46, 0.15));
  border: 1px dashed rgba(91, 140, 62, 0.2);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.planted-seeds:hover {
  border-color: rgba(91, 140, 62, 0.4);
}

.seed-plant {
  position: absolute;
  font-size: 20px;
  transform: translate(-50%, -50%);
  animation: seedGrow 3s ease forwards;
  pointer-events: none;
}

@keyframes seedGrow {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    transform: translate(-50%, -50%) scale(1.3) rotate(10deg);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1) rotate(-5deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.seed-sprout {
  position: absolute;
  font-size: 24px;
  transform: translate(-50%, -50%);
  animation: sproutGrow 4s ease forwards;
  pointer-events: none;
}

@keyframes sproutGrow {
  0% {
    transform: translate(-50%, -50%) scale(0) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1) translateY(0);
    opacity: 0.8;
  }
}

/* --- Dew Effect --- */
.dew-drop {
  position: absolute;
  width: 6px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(143, 185, 74, 0.3));
  transform: rotate(45deg);
  pointer-events: none;
  animation: dewDrop 2s ease forwards;
}

@keyframes dewDrop {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(0) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: rotate(45deg) translateY(-5px) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(30px) scale(0.8);
  }
}
