/* Dream Lands — Reset, root vars, accent */
/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2e7d32;
  --green-light: #4caf50;
  --accent: #ff6f00;
  --bg: #0e1512;
  --bg-2: #121b16;
  --card-bg: #16201b;
  --card-bg-2: #1b271f;
  --text: #f1f5f1;
  --muted: #9fb0a5;
  --border: rgba(255, 255, 255, .09);
  --radius: 12px;
  --shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ===== Fresh-green accent (matches dark theme) ===== */
:root {
  --acid: #5fd07a;
  --acid-strong: #7ee69a;
  --hero-dark: #0b110e;
}

