/* premium.css — public-facing styles for the Find My Dinos premium site (#193).
 *
 * Distinct from the Authelia-gated /admin theme (admin.css): this is the PUBLIC, signed-in-with-
 * Discord supporter surface. Same Quietly Ascended palette (dark + cyan/magenta + Outfit/JetBrains
 * Mono) for brand consistency, but its own minimal sheet — the admin sheet is never served to the
 * public. Served as a static file (linked by shell.py as /static/premium.css); no inline styles so
 * the markup stays escapable (no style-attr injection surface).
 */

:root {
  --bg: #0b0e14;
  --panel: #141a24;
  --ink: #e7edf5;
  --muted: #8a97a8;
  --cyan: #2ee6d6;
  --magenta: #ff4fa3;
  --line: #243042;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.premium-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #10151e, var(--bg));
}

.premium-brand { font-weight: 600; letter-spacing: 0.02em; }
.premium-brand .mark {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  margin-right: 0.4rem;
  border-radius: 6px;
  background: var(--cyan);
  color: #04201d;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
}
.premium-brand .tag { color: var(--magenta); font-size: 0.85rem; }

.shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-head h1 { margin: 0 0 0.25rem; font-size: 1.9rem; }
.page-head .lede { color: var(--muted); margin: 0 0 1.75rem; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem 0;
}

.tile {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem 0;
  background: var(--panel);
}
.tile h2 { margin: 0 0 0.4rem; }
.tile.enabled { border-color: var(--cyan); }
.tile.locked { opacity: 0.7; }
.tile .lock { color: var(--magenta); font-size: 0.9rem; }

.btn {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #04201d;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { text-decoration: none; filter: brightness(1.08); }
.btn-discord { border-color: #5865f2; background: #5865f2; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }

.note {
  border: 1px solid var(--magenta);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  color: var(--ink);
  background: rgba(255, 79, 163, 0.06);
}

.premium-foot {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
