@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&display=swap");

:root {
  --ink: #132019;
  --forest: #1d3a2f;
  --lake: #2a6f7a;
  --sky: #d7e6ef;
  --mist: #eef5f8;
  --foam: #f7fbfd;
  --citrus: #f2b705;
  --ember: #e36f3c;
  --pine: #3d8b6e;
  --line: rgba(19, 32, 25, 0.12);
  --soft: rgba(42, 111, 122, 0.1);
  --text: #24352c;
  --muted: #5a7166;
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(242, 183, 5, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at -5% 20%, rgba(61, 139, 110, 0.16), transparent 50%),
    linear-gradient(165deg, var(--mist) 0%, var(--sky) 48%, #d9ebe3 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(19, 32, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 25, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--forest) 0%, #254a3c 55%, var(--lake) 100%);
  color: var(--foam);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.6rem 0;
  text-align: center;
}

.topbar i {
  color: var(--citrus);
  margin-right: 0.5rem;
}

.site-header {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  background: rgba(247, 251, 253, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px 14px 16px 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--forest) 0%, var(--lake) 100%);
  color: var(--citrus);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 8px 8px 0 rgba(227, 111, 60, 0.25);
  transform: rotate(-2deg);
}

.brand:hover .brand-mark {
  transform: rotate(0deg) translateY(-2px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lake);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--foam);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--citrus);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--citrus);
  outline: none;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--ink);
  color: var(--foam);
  box-shadow: 4px 4px 0 var(--ember);
}

.main-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--foam);
  box-shadow: 6px 6px 0 rgba(42, 111, 122, 0.2);
}

.main-nav.is-open {
  display: flex;
  animation: panelIn 0.45s var(--ease);
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
  outline: none;
}

.main-nav a.is-active {
  background: var(--ink);
  color: var(--foam);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: lakeDrift 26s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(238, 245, 248, 0.94) 0%, rgba(238, 245, 248, 0.78) 38%, rgba(238, 245, 248, 0.22) 68%, rgba(19, 32, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(29, 58, 47, 0.35) 0%, transparent 35%);
}

.hero-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  animation: framePulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.25rem 0 5rem;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.55rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  animation: riseIn 0.85s var(--ease) both;
}

.hero-brand em {
  font-style: normal;
  display: block;
  color: var(--lake);
  position: relative;
  width: fit-content;
}

.hero-brand em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.22em;
  background: linear-gradient(90deg, var(--citrus), rgba(242, 183, 5, 0.15));
  z-index: -1;
  border-radius: 2px;
  transform-origin: left center;
  animation: underlineGrow 1.1s 0.35s var(--ease) both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: var(--text);
  max-width: 34rem;
  margin: 0 0 2.1rem;
  font-weight: 500;
  animation: riseIn 0.85s 0.16s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: riseIn 0.85s 0.24s var(--ease) both;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  background: var(--ink);
  color: var(--foam);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--citrus);
}

.btn-primary-glow:hover,
.btn-primary-glow:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ember);
  color: var(--foam);
  outline: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: rgba(247, 251, 253, 0.75);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 5px 5px 0 rgba(42, 111, 122, 0.25);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--foam);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--pine);
  outline: none;
}

.hero-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.55), rgba(61, 139, 110, 0.2) 55%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  top: 14%;
  right: 6%;
  animation: morphFloat 9s ease-in-out infinite;
}

.games-section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.25rem;
}

.games-intro {
  max-width: 38rem;
  margin-bottom: 2.35rem;
}

.games-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.games-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.game-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(42, 111, 122, 0.2);
  transition: transform var(--ease), box-shadow var(--ease);
}

.game-tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--citrus);
}

.game-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky);
  border-bottom: 2px solid var(--ink);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.game-tile:hover .game-media img {
  transform: scale(1.05);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.3rem 1.4rem;
  flex: 1;
}

.game-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.game-name a {
  color: var(--ink);
}

.game-name a:hover,
.game-name a:focus-visible {
  color: var(--lake);
  outline: none;
}

.game-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.game-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  background: var(--ink);
  color: var(--foam);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--citrus);
}

.game-play:hover,
.game-play:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ember);
  color: var(--foam);
  outline: none;
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 4.25rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.section-title-light {
  color: var(--foam);
}

.section-kicker {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lake);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2.25rem;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.prose-block p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  color: var(--text);
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.prose-block a {
  color: var(--lake);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.prose-block a:hover,
.prose-block a:focus-visible {
  color: var(--ember);
  outline: none;
}

.prose-light p {
  color: rgba(247, 251, 253, 0.9);
}

.prose-light a {
  color: var(--citrus);
}

.prose-light a:hover,
.prose-light a:focus-visible {
  color: var(--foam);
}

.feature-panel {
  height: 100%;
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 5px 5px 0 rgba(42, 111, 122, 0.18);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--forest), var(--lake));
  color: var(--citrus);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  color: var(--ink);
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.village-panel {
  background: linear-gradient(135deg, var(--forest) 0%, #1f4a4f 55%, var(--lake) 100%);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 2.4rem 1.6rem;
  box-shadow: 8px 8px 0 rgba(242, 183, 5, 0.28);
}

.disclaimer-panel {
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 2.2rem 1.5rem;
  box-shadow: 7px 7px 0 rgba(227, 111, 60, 0.22);
}

.disclaimer-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--citrus);
  font-size: 1.2rem;
}

.disclaimer-box {
  height: 100%;
  background: rgba(223, 233, 239, 0.55);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
}

.disclaimer-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.disclaimer-box h3 i {
  color: var(--lake);
}

.disclaimer-box p {
  margin: 0 0 0.9rem;
  color: var(--text);
  font-size: 0.98rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.disclaimer-note {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: rgba(242, 183, 5, 0.16);
  border: 1.5px solid rgba(242, 183, 5, 0.45);
}

.disclaimer-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--ink);
  background: linear-gradient(180deg, #163429 0%, var(--forest) 100%);
  color: rgba(247, 251, 253, 0.82);
  padding: 3.25rem 0 1.75rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2rem 1.75rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-brand .brand-name {
  color: var(--foam);
}

.footer-brand .brand-tag {
  color: rgba(159, 224, 236, 0.75);
}

.footer-copy {
  margin: 0 0 1rem;
  max-width: 34rem;
  line-height: 1.7;
}

.footer-copy:last-child {
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--foam);
  margin: 0 0 0.9rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-list a {
  color: rgba(247, 251, 253, 0.78);
  font-weight: 500;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--citrus);
  outline: none;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  background: rgba(247, 251, 253, 0.08);
  border: 1px solid rgba(247, 251, 253, 0.2);
  border-radius: 12px;
  min-height: 56px;
}

.footer-badge-link img {
  max-height: 48px;
  width: auto;
  height: auto;
}

.footer-disclaimers {
  margin-top: 2.25rem;
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(247, 251, 253, 0.14);
  display: grid;
  gap: 0.9rem;
}

.footer-disclaimers p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-disclaimers strong {
  color: var(--citrus);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 251, 253, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.footer-bottom-links a {
  color: var(--citrus);
  font-weight: 600;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--foam);
  outline: none;
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 183, 5, 0.18), transparent 40%),
    rgba(10, 22, 18, 0.78);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-card {
  width: min(100%, 520px);
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 10px 10px 0 rgba(242, 183, 5, 0.35);
  text-align: left;
}

.age-gate-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--forest), var(--lake));
  color: var(--citrus);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.age-gate-card > p {
  margin: 0 0 1.1rem;
  color: var(--text);
  font-size: 0.98rem;
}

.age-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(223, 233, 239, 0.7);
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}

.age-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--lake);
  flex-shrink: 0;
}

.age-accept {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--foam);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--citrus);
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}

.age-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.age-accept:not(:disabled):hover,
.age-accept:not(:disabled):focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ember);
  outline: none;
}

.age-gate-note {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: 6px 6px 0 rgba(42, 111, 122, 0.28);
}

.cookie-consent-text {
  flex: 1 1 280px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-link {
  font-weight: 700;
  color: var(--lake);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-accept {
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--foam);
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--citrus);
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ember);
  outline: none;
}

.page-hero {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  line-height: 1.05;
}

.page-hero .lead {
  max-width: 46rem;
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 500;
}

.page-section {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 4.5rem;
}

.policy-card,
.content-card {
  background: var(--foam);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 1.75rem 1.4rem;
  box-shadow: 6px 6px 0 rgba(42, 111, 122, 0.18);
}

.policy-card h2,
.content-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.policy-card h3,
.content-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
  color: var(--forest);
}

.policy-card p,
.content-card p,
.policy-card li,
.content-card li {
  color: var(--text);
  font-size: 1.02rem;
}

.policy-card ul,
.content-card ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.faq-item {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--foam);
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 4px 4px 0 rgba(242, 183, 5, 0.22);
}

.faq-item h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--foam);
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--citrus);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--foam);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ember);
  outline: none;
}

.game-stage-wrap {
  position: relative;
  z-index: 1;
  padding: 1rem 0 2rem;
}

.game-stage {
  border: 2px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: #0b1714;
  box-shadow: 10px 10px 0 rgba(227, 111, 60, 0.25);
}

.game-disclaimer {
  margin-top: 1.5rem;
  padding: 1.25rem 1.3rem;
  border-radius: 18px;
  border: 2px solid var(--ink);
  background: rgba(242, 183, 5, 0.14);
}

.game-disclaimer h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.game-disclaimer p {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .policy-card,
  .content-card {
    padding: 2.25rem 2.1rem;
  }

  .cookie-consent {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lakeDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, 1%, 0);
  }
}

@keyframes morphFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  }
  50% {
    transform: translate(-18px, 14px) rotate(8deg);
    border-radius: 58% 42% 48% 52% / 55% 48% 52% 45%;
  }
}

@keyframes framePulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  }

  .village-panel,
  .disclaimer-panel {
    padding: 2.75rem 2.4rem;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    margin-top: 0;
    padding: 0.35rem;
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(242, 183, 5, 0.35);
  }

  .main-nav a {
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: calc(100vh - 120px);
  }

  .hero-content {
    padding: 5.75rem 0 6.25rem;
  }

  .hero-frame {
    inset: 1.75rem;
  }

  .content-section {
    padding: 5rem 0;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.74rem;
    padding: 0.7rem 0.9rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-frame {
    inset: 0.65rem;
    border-radius: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-glow,
  .btn-ghost {
    justify-content: center;
  }

  .hero-orb {
    width: 140px;
    height: 140px;
    top: 8%;
    right: -4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
