:root {
  --bg: #0a1210;
  --surface: #183B4E;
  --border: #1f4d66;
  --text: #F3F3E0;
  --muted: #8fafc0;
  --dim: #4a6a7c;
  --blue: #6FA8DC;
  --purple: #A78BFA;
  --green: #22c55e;
  --amber: #DDA853;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a { color: var(--blue); }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--amber); }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.hero {
  text-align: center;
  padding: 40px 0 64px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.accent-amber { color: var(--amber); }

.badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.store-row {
  margin-top: 20px;
}

.store-pill {
  font-weight: 500;
  color: var(--dim);
}

.store-live {
  color: var(--blue);
  border-color: var(--blue);
  text-decoration: none;
}

.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--blue);
  color: #0a1210;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
}

.showcase {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 4px 24px;
}

.showcase figure {
  flex: 0 0 auto;
  width: 220px;
  margin: 0;
}

.showcase img {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.showcase figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.showcase figcaption strong {
  color: var(--text);
}

h1, h2, h3 { color: var(--text); }
h2 { font-size: 24px; margin-top: 40px; }
h3 { font-size: 18px; margin-top: 28px; color: var(--muted); }

p, li { color: var(--muted); font-size: 15px; }

.legal-updated {
  color: var(--dim);
  font-size: 13px;
  margin-bottom: 40px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
}

footer a { color: var(--dim); margin: 0 10px; }

.blog-tagline {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 32px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  display: block;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
}

.post-card h2 {
  margin: 8px 0 6px;
  font-size: 19px;
  text-decoration: none;
}

.post-card p {
  margin: 0;
  text-decoration: none;
}

.post-meta,
.post-date {
  text-decoration: none;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.post-category {
  font-size: 12px;
  padding: 4px 12px;
}

.post-date {
  color: var(--dim);
  font-size: 13px;
}

article h1 {
  font-size: 30px;
  margin-top: 16px;
}

article img {
  max-width: 100%;
  border-radius: 12px;
}
