:root {
  --jungle-950: #071b14;
  --jungle-900: #0d261b;
  --jungle-800: #153827;
  --jungle-700: #1d5035;
  --jungle-600: #2d6a45;
  --leaf: #6fa64f;
  --mint: #c9e6c4;
  --sunset: #ff9d42;
  --coral: #ef6d4a;
  --gold: #ffd077;
  --cream: #fff6e7;
  --paper: #fffaf0;
  --white: #ffffff;
  --ink: #17211b;
  --muted: #667268;
  --line: rgba(23, 33, 27, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(5, 19, 13, 0.24);
  --soft-shadow: 0 18px 48px rgba(36, 43, 33, 0.1);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #fff8ea 0%, #fbefe0 36%, #eff4e7 100%);
  color: var(--ink);
}

body.is-modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: #fff8e8;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

[hidden],
.auth-form:not(.is-active),
.modal[aria-hidden="true"],
.logo-lightbox[aria-hidden="true"],
.content-modal[aria-hidden="true"],
.cookie-banner[aria-hidden="true"] {
  display: none !important;
}

body:not(.is-logged-in) [data-logged-in],
body.is-logged-in [data-logged-out] {
  display: none !important;
}

body:not(.is-premium) [data-premium-in],
body.is-premium [data-premium-out] {
  display: none !important;
}

body:not(.is-admin) [data-admin-only] {
  display: none !important;
}

body:not(.is-admin):not(.is-moderator) [data-admin-or-moderator],
body:not(.is-moderator) [data-moderator-only] {
  display: none !important;
}
