/* ============================================================
   Encubed Games — Main Stylesheet
   Dark dashboard aesthetic. JetBrains Mono + Inter.
   ============================================================ */

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

:root {
  --bg:           #080c0f;
  --bg-card:      #0d1117;
  --bg-card-hover:#131a23;
  --border:       #1a2332;
  --border-light: #243346;
  --text:         #b8c5d0;
  --text-muted:   #5c6d7a;
  --text-bright:  #e2eaf0;

  --green:        #00e87a;
  --green-dim:    rgba(0, 232, 122, 0.08);
  --green-border: rgba(0, 232, 122, 0.2);
  --amber:        #f59e0b;
  --amber-dim:    rgba(245, 158, 11, 0.08);
  --amber-border: rgba(245, 158, 11, 0.2);
  --red:          #ef4444;
  --blue:         #60a5fa;
  --blue-dim:     rgba(96, 165, 250, 0.08);
  --blue-border:  rgba(96, 165, 250, 0.2);
  --purple:       #a78bfa;
  --purple-dim:   rgba(167, 139, 250, 0.08);
  --purple-border:rgba(167, 139, 250, 0.2);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius:    6px;
  --radius-lg: 12px;
  --max-w:     1200px;
  --max-prose: 760px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
  color: var(--text-bright);
  line-height: 1.15;
  font-weight: 700;
}

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

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fonts (self-hosted via Google Fonts API) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.3px;
}

.nav-logo-bracket { color: var(--green); }
.nav-logo-accent  { color: var(--green); }
.nav-logo:hover   { text-decoration: none; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link--active { color: var(--text-bright); text-decoration: none; }

/* ── Status Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge::before { content: "●"; font-size: 7px; }

.badge--alpha   { background: var(--green-dim);  color: var(--green);  border: 1px solid var(--green-border); }
.badge--draft   { background: var(--amber-dim);  color: var(--amber);  border: 1px solid var(--amber-border); }
.badge--spark   { background: var(--blue-dim);   color: var(--blue);   border: 1px solid var(--blue-border); }
.badge--greenlit{ background: var(--purple-dim); color: var(--purple); border: 1px solid var(--purple-border); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--green);
  color: #000;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: #22f08c; }

.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text-bright); }

/* ── Hero ── */
.hero {
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 232, 122, 0.035) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 70px);
  line-height: 1.07;
  margin-bottom: 28px;
  max-width: 840px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Section ── */
.section { padding: 80px 0; }
.section + .section { padding-top: 0; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-link {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.section-link:hover { color: var(--green); text-decoration: none; }

.divider {
  height: 1px;
  background: var(--border);
}

/* ── Game Cards ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.game-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-2px);
  text-decoration: none;
}

.game-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.game-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
}

.game-card-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.game-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.game-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.game-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* ── Blog Cards (homepage grid) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-2px);
  text-decoration: none;
}

.blog-card-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.3;
  flex: 1;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.blog-card-read {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

/* ── Page Header ── */
.page-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-header-title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Blog List (section page) ── */
.blog-list { display: flex; flex-direction: column; }

.blog-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.blog-list-item:hover .blog-list-title { color: var(--green); }
.blog-list-item:hover { text-decoration: none; }

.blog-list-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  width: 36px;
  flex-shrink: 0;
  padding-top: 3px;
  letter-spacing: 0.04em;
}

.blog-list-content { flex: 1; min-width: 0; }

.blog-list-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.15s;
}

.blog-list-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-list-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: 4px;
  white-space: nowrap;
}

/* ── Post (blog single) ── */
.post-header {
  padding: 72px 0 48px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.post-meta-sep { opacity: 0.4; }

.post-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: var(--max-prose);
}

.post-body { padding: 56px 0 100px; }

.prose {
  max-width: var(--max-prose);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.prose h2 {
  font-size: 26px;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: 19px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--green);
}

.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }

.prose strong { color: var(--text-bright); font-weight: 600; }
.prose em { font-style: italic; color: var(--text-bright); }

.prose ul, .prose ol {
  margin: 0 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prose li { padding-left: 4px; }

.prose code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--green);
}

.prose pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 28px;
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  font-size: 14px;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.prose blockquote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 20px;
  color: var(--text-muted);
  font-style: italic;
  margin: 28px 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 14.5px;
}

.prose th {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.prose td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  color: var(--text);
}

.prose tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

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

/* ── Game Single ── */
.game-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.game-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.game-title {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.game-tagline {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* ── Game Embed ── */
.game-embed-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.game-embed-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.game-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-frame-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.game-coming-soon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
}

.game-coming-soon-icon {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}

.game-coming-soon-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.game-coming-soon-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Games List (section page) ── */
.games-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

/* ── Studio stats strip (homepage) ── */
.stats-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
}

.footer-logo-accent { color: var(--green); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ── Author chips ── */

.author-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.author-chip--studio,
.author-chip--ceo           { background: var(--green-dim);  color: var(--green);  border: 1px solid var(--green-border); }
.author-chip--game-director { background: var(--purple-dim); color: var(--purple); border: 1px solid var(--purple-border); }
.author-chip--cvo           { background: var(--blue-dim);   color: var(--blue);   border: 1px solid var(--blue-border); }
.author-chip--rnd           { background: var(--amber-dim);  color: var(--amber);  border: 1px solid var(--amber-border); }

.update-game-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.update-game-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.update-game-link:hover { color: var(--green); text-decoration: none; }

/* ── Updates list ── */

.author-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.author-tab {
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: all 0.15s;
  text-decoration: none;
}
.author-tab:hover { color: var(--text-bright); border-color: var(--text-muted); text-decoration: none; }
.author-tab--active { background: rgba(255,255,255,0.06); color: var(--text-bright); border-color: var(--border-light); }

.updates-list { display: flex; flex-direction: column; }

.update-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.update-card:hover .update-card-title { color: var(--green); }
.update-card:hover { text-decoration: none; }

.update-card-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  flex-shrink: 0;
  width: 130px;
  padding-top: 2px;
}

.update-card-body { flex: 1; min-width: 0; }

.update-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.15s;
}

.update-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.update-card-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: 4px;
  white-space: nowrap;
}

/* ── Dev diary strip on game pages ── */

.game-updates-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.game-updates-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.game-update-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.game-update-item:hover .game-update-title { color: var(--green); }
.game-update-item:hover { text-decoration: none; }

.game-update-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  flex: 1;
  transition: color 0.15s;
}

.game-update-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.game-updates-all {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.game-updates-all:hover { color: var(--green); text-decoration: none; }

/* ── Community Panel (voting + suggestions) ── */

.community-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.community-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.community-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.community-loading {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.community-error {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
}

.community-body { display: flex; flex-direction: column; gap: 36px; }

/* Vote row */
.vote-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vote-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-bright);
  flex: 1;
  min-width: 160px;
}

.vote-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.vote-btn:hover         { border-color: var(--text-muted); color: var(--text-bright); }
.vote-btn--up:hover     { border-color: var(--green); color: var(--green); background: var(--green-dim); }
.vote-btn--down:hover   { border-color: var(--red);   color: var(--red);   background: var(--red-dim,rgba(239,68,68,.08)); }

.vote-btn--active.vote-btn--up   { border-color: var(--green); color: var(--green); background: var(--green-dim); }
.vote-btn--active.vote-btn--down { border-color: var(--red);   color: var(--red);   background: rgba(239,68,68,.08); }
.vote-btn:disabled { opacity: 0.5; cursor: default; }

.vote-icon { font-size: 12px; }

.vote-message {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* Suggestions */
.suggestions-section { display: flex; flex-direction: column; gap: 20px; }

.suggestions-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.suggestions-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.suggest-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.suggest-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}

.suggest-input::placeholder { color: var(--text-muted); }
.suggest-input:focus {
  outline: none;
  border-color: var(--green);
}

.suggest-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.suggest-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.suggest-submit {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s;
}

.suggest-submit:hover    { background: var(--green-dim); }
.suggest-submit:disabled { opacity: 0.5; cursor: default; }

.suggest-error {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  padding: 8px 12px;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
}

/* Suggestions list */
.suggestion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.suggestion-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.suggestion-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
}

.suggestion-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.suggestion-vote-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

.suggestion-vote-btn--voted {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  cursor: default;
}

.suggestion-vote-btn:disabled { opacity: 0.7; }

.suggestion-vote-icon { font-size: 9px; }

.no-suggestions {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  padding: 16px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero       { padding: 64px 0 56px; }
  .section    { padding: 60px 0; }
  .post-body  { padding: 40px 0 72px; }

  .games-grid,
  .games-list-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .section-header  { flex-direction: column; gap: 8px; }
  .blog-list-date  { display: none; }
  .stats-inner     { gap: 32px; }

  .game-frame-wrap { padding-bottom: 75%; }

  .game-coming-soon { padding: 48px 24px; }
}
