/* Portal bots catalog — /bots.html */
:root {
  --bg: #12352c;
  --bg2: #0c241e;
  --text: #f5f0e6;
  --muted: rgba(245, 240, 230, 0.72);
  --accent: #c9a227;
  --line: rgba(245, 240, 230, 0.12);
  --card: rgba(20, 48, 40, 0.92);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; min-height: 100%;
  font-family: "Segoe UI", "PT Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201, 162, 39, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
a { color: #9fd6ff; }
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 48px;
}
.bots-brand {
  margin: 0 0 12px;
}
.bots-brand h1 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: #ffe08a;
  font-weight: 900;
}
.bots-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
/* Reserved strip for future category menu (board / shooters / …) */
.bots-cat-nav {
  min-height: 56px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(245, 240, 230, 0.22);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.bots-cat-nav .cat-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.bots-cat-nav .cat-item {
  color: #ffe08a;
  font-weight: 800;
  font-size: 1rem;
}
.bots-cat-nav .cat-item.placeholder {
  opacity: 0.95;
}
.bots-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bot-card {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 14px;
  padding: 18px 16px;
}
.bot-card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #ffe08a;
}
.bot-card .handle a {
  font-weight: 800;
  text-decoration: none;
}
.bot-card .handle a:hover { text-decoration: underline; }
.bot-card .summary {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}
.bots-back {
  margin-top: 24px;
  font-size: 0.9rem;
}
.bots-back a { color: var(--accent); }
.bots-err { color: #ffd24a; padding: 12px 0; }
