:root {
  --bg: #23d69e;
  --card-bg: #ffffff;
  --border: #d7f1e7;
  --text: #142620;
  --text-dim: #6e877c;
  --mint: #3ca98a;
  --gold: #fcc602;
  --green: #17a673;
  --shadow-sm: rgba(20, 38, 32, 0.08);
  --subtle-bg: rgba(20, 38, 32, 0.04);
  --gold-bg: rgba(252, 198, 2, 0.1);
  --gold-border: rgba(252, 198, 2, 0.4);
}

:root[data-theme="dark"] {
  --bg: #101713;
  --card-bg: #182420;
  --border: #24322c;
  --text: #e9f5ef;
  --text-dim: #91a89c;
  --mint: #3fd4a3;
  --gold: #fcc602;
  --green: #34d399;
  --shadow-sm: rgba(0, 0, 0, 0.22);
  --subtle-bg: rgba(255, 255, 255, 0.05);
  --gold-bg: rgba(252, 198, 2, 0.1);
  --gold-border: rgba(252, 198, 2, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 32px 12px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.header h1 {
  font-size: 20px;
  margin: 0;
  flex: 1;
}

.theme-toggle-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  padding: 6px 10px;
  cursor: pointer;
  line-height: 1;
}

.theme-toggle-btn:hover {
  border-color: var(--mint);
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.intro {
  color: var(--text-dim);
  font-size: 13px;
  border-left: 3px solid var(--mint);
  padding-left: 14px;
  margin: 8px 0 28px;
}

.platform {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px var(--shadow-sm);
}

.platform-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.status-dot.ready {
  background: var(--green);
}

.platform h2 {
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--subtle-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.platform.live .tag {
  color: var(--green);
  border-color: var(--green);
}

ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
  font-size: 13px;
}

li ul {
  margin: 6px 0;
  padding-left: 18px;
}

li ul li {
  margin-bottom: 3px;
}

.perm-note {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 10px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.links a {
  color: var(--mint);
  font-size: 12.5px;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.note {
  font-size: 12px;
  color: var(--text-dim);
  margin: 6px 0 0;
}

.platform.later {
  opacity: 0.75;
}

.platform.later h2 {
  color: var(--text-dim);
}
