/* Sotoon LLC — studio site */
:root {
  --bg: #0b0b10;
  --bg-card: #14141c;
  --border: #23232e;
  --text: #eef0f4;
  --text-dim: #9aa0ad;
  --green: #00c853;
  --green-dark: #00953f;
  --gold: #f2c230;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(11, 11, 16, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10;
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.25rem; letter-spacing: 0.06em; color: var(--text); }
.logo span { color: var(--green); }
nav ul { display: flex; gap: 28px; list-style: none; }
nav ul a { color: var(--text-dim); font-size: 0.95rem; font-weight: 500; }
nav ul a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { padding: 96px 0 72px; text-align: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero p.tagline { color: var(--text-dim); font-size: 1.2rem; margin: 18px auto 0; max-width: 560px; }
.hero .note { color: var(--text-dim); font-size: 0.9rem; margin-top: 10px; font-style: italic; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--green);
  color: #06130a;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  margin-top: 32px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: #17d967; transform: translateY(-1px); text-decoration: none; }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn.ghost:hover { border-color: var(--text-dim); background: transparent; }

/* Sections */
section { padding: 56px 0; }
h2.section-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
h2.section-title span { color: var(--green); }

/* Game cards grid */
.games { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.game-card:hover { border-color: var(--green); transform: translateY(-2px); }
.game-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.game-card .status { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.game-card p { color: var(--text-dim); font-size: 0.95rem; }
.game-card a.more { display: inline-block; margin-top: 16px; font-weight: 600; }
.game-card.placeholder { border-style: dashed; text-align: center; color: var(--text-dim); display: flex; align-items: center; justify-content: center; min-height: 180px; font-style: italic; }

/* Prose pages (privacy/terms/support) */
.prose { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.prose h1 { font-size: 2.2rem; margin-bottom: 8px; }
.prose .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 40px; }
.prose h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.prose p, .prose li { color: #c9cdd6; margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 12px; }
.prose strong { color: var(--text); }

/* Feature list on game page */
.features { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin-top: 12px; }
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.feature h4 { margin-bottom: 6px; }
.feature p { color: var(--text-dim); font-size: 0.92rem; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0 56px; margin-top: 40px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
footer p { color: var(--text-dim); font-size: 0.88rem; }
footer ul { display: flex; gap: 22px; list-style: none; }
footer ul a { color: var(--text-dim); font-size: 0.88rem; }

@media (max-width: 600px) {
  nav ul { gap: 16px; }
  .hero { padding: 64px 0 48px; }
}
