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

:root {
  --bg: #0F1F14;
  --surface: #1A2E20;
  --text: #E8F0E9;
  --muted: #9BB0A0;
  --accent: #7CBA3D;
  --button: #D4A017;
  --button-dark: #A67C00;
  --secondary: #2D5A3D;
  --line: #2A4032;
  --radius-lg: 42% 58% 48% 52% / 52% 42% 58% 48%;
  --shadow: 0 28px 60px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(124, 186, 61, .12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(212, 160, 23, .08), transparent 50%),
    linear-gradient(180deg, #122618 0%, var(--bg) 40%, #0c1810 100%);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(124, 186, 61, .15) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(232, 240, 233, .08) 0 1px, transparent 1.5px);
  background-size: 28px 28px, 42px 42px;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  background: var(--accent); color: #0a140e; padding: 10px 15px; border-radius: 999px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 31, 20, .82);
  border-bottom: 1px solid rgba(42, 64, 50, .9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: Syne, sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -.03em;
}
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(180deg, var(--button), var(--button-dark));
  color: #1a1405; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 24px rgba(166, 124, 0, .28);
  transition: transform .2s, filter .2s, box-shadow .2s;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.nav-cta:active, .button:active { transform: translateY(1px); }
.button-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.button-ghost:hover { border-color: var(--accent); color: var(--accent); filter: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 14px; color: var(--text); font-size: 1.15rem;
}

.hero { padding: 28px 0 56px; }
.hero-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: stretch;
  min-height: 560px;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 36px 8px 36px 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px; color: var(--accent);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
}
.eyebrow::before {
  content: ""; width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  box-shadow: 0 0 0 4px rgba(124, 186, 61, .18);
}
h1, h2, h3 {
  margin: 0; font-family: Syne, sans-serif; line-height: 1.08; letter-spacing: -.04em; font-weight: 800;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.25rem; }
.hero p { max-width: 36rem; margin: 18px 0 28px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .88rem; font-weight: 600;
}
.hero-note em {
  font-style: normal; width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: var(--secondary); color: var(--text); border: 1px solid var(--line);
}
.hero-visual {
  position: relative; min-height: 480px;
  border-radius: 38% 62% 44% 56% / 48% 38% 62% 52%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: breathe 9s ease-in-out infinite;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15, 31, 20, .15), rgba(15, 31, 20, .55) 70%);
}
.leaf-chip {
  position: absolute; z-index: 2; left: 8%; bottom: 12%;
  padding: 10px 16px; background: rgba(26, 46, 32, .9);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .8rem; font-weight: 700; color: var(--accent);
  backdrop-filter: blur(8px);
  animation: floaty 5s ease-in-out infinite;
}

.section { padding: 72px 0; }
.section-tight { padding-top: 28px; }
.section-head {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px;
  align-items: end; margin-bottom: 36px;
}
.section-head p { margin: 0; color: var(--muted); }

.intro-band {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px;
  padding: 36px; background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px 48px 28px 40px;
  position: relative; overflow: hidden;
}
.intro-band::before {
  content: ""; position: absolute; width: 180px; height: 180px; right: -40px; top: -50px;
  background: radial-gradient(circle, rgba(124, 186, 61, .22), transparent 70%);
  border-radius: 50%;
}
.intro-band h2 { max-width: 10ch; }
.intro-band p { color: var(--muted); margin: 0 0 14px; }
.moss-tag {
  display: inline-block; margin-bottom: 14px;
  padding: 8px 14px; background: rgba(124, 186, 61, .14);
  color: var(--accent); border-radius: 999px; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px;
}
.stat {
  padding: 22px 18px; background: rgba(26, 46, 32, .7);
  border: 1px solid var(--line); border-radius: 22px 28px 18px 26px;
  transition: border-color .2s, transform .2s;
}
.stat:hover { border-color: var(--accent); transform: translateY(-3px); }
.stat strong {
  display: block; font-family: Syne, sans-serif; font-size: 2rem; letter-spacing: -.04em; color: var(--button);
}
.stat span {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}

.game-mosaic { display: grid; gap: 18px; }
.game-card {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 22px; align-items: center;
  padding: 18px 20px; background: linear-gradient(135deg, rgba(26, 46, 32, .95), rgba(20, 38, 28, .9));
  border: 1px solid var(--line); border-radius: 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.game-card:nth-child(even) { margin-left: clamp(0px, 4vw, 48px); }
.game-card:hover {
  transform: translateX(6px);
  border-color: rgba(124, 186, 61, .55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}
.game-card img {
  width: 120px; aspect-ratio: 1; object-fit: cover;
  border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
  border: 2px solid var(--secondary);
}
.game-card p { margin: 8px 0 12px; color: var(--muted); font-size: .95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  padding: 5px 11px; border-radius: 999px;
  background: rgba(45, 90, 61, .55); color: #cfe6d4; font-size: .72rem; font-weight: 700;
}
.game-meta { display: grid; gap: 14px; justify-items: end; align-content: space-between; }
.game-rank {
  font-family: Syne, sans-serif; font-size: .85rem; font-weight: 800; color: var(--accent); letter-spacing: .04em;
}
.game-card .button { padding: 11px 18px; }

.method {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
}
.method-media {
  position: relative; border-radius: 48% 52% 40% 60% / 44% 48% 52% 56%;
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.method-media img { width: 100%; min-height: 420px; object-fit: cover; }
.method-badge {
  position: absolute; right: 8%; top: 10%;
  padding: 10px 14px; background: var(--button); color: #1a1405;
  border-radius: 18px 22px 16px 24px; font-weight: 800; font-size: .8rem;
  transform: rotate(3deg); animation: floaty 6s ease-in-out infinite reverse;
}
.check-list { padding: 0; margin: 24px 0; list-style: none; display: grid; gap: 14px; }
.check-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px; background: rgba(26, 46, 32, .55); border: 1px solid var(--line);
  border-radius: 18px;
}
.check-list li::before {
  content: ""; width: 28px; height: 28px; margin-top: 2px;
  background: var(--accent);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  box-shadow: inset 0 0 0 6px rgba(15, 31, 20, .35);
}
.check-list strong { color: var(--text); }
.check-list span { color: var(--muted); font-size: .95rem; }
.text-link { color: var(--accent); font-weight: 700; font-size: .95rem; }
.text-link:hover { color: var(--button); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 20px; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 20px; border: 0; background: transparent; color: var(--text);
  text-align: left; font-weight: 700; cursor: pointer; font-family: Syne, sans-serif;
}
.faq-question span {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: var(--secondary); color: var(--accent);
  transition: transform .2s;
}
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); background: var(--accent); color: #0f1f14; }

.page-hero { padding: 72px 0 40px; }
.page-hero .container {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: end;
}
.page-hero p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.content-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 30px 40px 28px 36px; padding: clamp(26px, 4vw, 56px);
}
.content-panel h2 { margin: 34px 0 14px; font-size: 1.8rem; }
.content-panel h2:first-child { margin-top: 0; }
.content-panel h3 { margin: 24px 0 10px; }
.content-panel p, .content-panel li { color: var(--muted); }
.content-panel a { color: var(--accent); font-weight: 700; }
.content-panel ul { padding-left: 1.2rem; }
.two-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card {
  padding: 24px; border: 1px solid var(--line); background: rgba(15, 31, 20, .45);
  border-radius: 24px 30px 20px 28px; transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-card .number {
  width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--secondary); color: var(--button); border-radius: 50%;
  font-family: Syne, sans-serif; font-weight: 800;
}
.feature-card p { color: var(--muted); margin: 8px 0 0; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; }
.contact-box {
  padding: 28px; background: linear-gradient(160deg, var(--secondary), #1f3f2c);
  border-radius: 28px; border: 1px solid var(--line);
}
.contact-box p { color: #c5d8c9; }
.contact-box a { color: var(--button); }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .85rem; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 14px; background: rgba(15, 31, 20, .55); color: var(--text); outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124, 186, 61, .18);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-status { min-height: 24px; color: var(--accent); font-weight: 700; }

.site-footer {
  margin-top: 64px; padding: 56px 0 24px;
  background: #0a160e; border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 48px; }
.footer-brand p { max-width: 380px; color: var(--muted); }
.footer-title {
  margin-bottom: 14px; color: var(--button); font-family: Syne, sans-serif; font-weight: 800;
}
.footer-links { display: grid; gap: 9px; color: #c3d4c7; font-size: .92rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  color: #7f9486; font-size: .78rem;
}

.cookie-banner {
  position: fixed; z-index: 150; left: 24px; bottom: 24px;
  width: min(420px, calc(100% - 48px)); padding: 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.25rem; }
.cookie-banner p { margin: 10px 0 16px; color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cookie-actions .button { padding: 10px 16px; }

@keyframes breathe {
  0%, 100% { border-radius: 38% 62% 44% 56% / 48% 38% 62% 52%; }
  50% { border-radius: 52% 48% 58% 42% / 42% 56% 44% 58%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav { position: relative; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 68px;
    padding: 18px; background: var(--surface); border: 1px solid var(--line);
    border-radius: 18px; flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hero-split, .intro-band, .method, .section-head,
  .page-hero .container, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { border-radius: 32px; min-height: 320px; animation: none; }
  .hero-visual img { min-height: 320px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .game-card:nth-child(even) { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 2.35rem; max-width: none; }
  .section { padding: 56px 0; }
  .intro-band { padding: 24px; border-radius: 24px; }
  .game-card { grid-template-columns: 84px 1fr; gap: 14px; padding: 14px; }
  .game-card img { width: 84px; }
  .game-meta { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; justify-items: stretch; }
  .stats { grid-template-columns: 1fr; }
  .two-columns, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: 14px; right: 14px; width: auto; }
  .method-media { border-radius: 28px; }
  .method-media img { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
