:root {
  --bg:           #090d12;
  --bg-elevated:  #111720;
  --bg-deeper:    #0d1117;
  --border:       #1e2733;
  --border-strong:#2d3d4f;
  --text:         #edf2f7;
  --text-muted:   #7a8fa0;
  --text-faint:   #475c6e;
  --accent:       #2563eb;
  --accent-light: #93c5fd;
  --accent-glow:  #3b82f6;
  --radius:       10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(9, 13, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.logo-mark { color: var(--accent-glow); font-size: 1.1rem; line-height: 1; }
.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-header nav a:hover { color: var(--text); }

/* ── TOPBAR ──────────────────────────────────── */
.topbar {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0 1.25rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.updated-tag {
  font-size: 0.68rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.topbar h1 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.search-sort {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.search-sort input,
.search-sort select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 7px;
  font-size: 0.83rem;
  font-family: inherit;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-sort input { width: 220px; }
.search-sort input::placeholder { color: var(--text-faint); }
.search-sort input:focus,
.search-sort select:focus {
  outline: none;
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.search-sort select { color: var(--text-muted); cursor: pointer; }

/* ── FILTERS ─────────────────────────────────── */
.filters {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-group { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-divider { width: 1px; height: 18px; background: var(--border); align-self: center; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.38rem 0.8rem;
  border-radius: 20px;
  font-size: 0.77rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.12s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
/* indie toggle — off by default, distinct style */
.indie-toggle {
  border-style: dashed;
  opacity: 0.55;
}
.indie-toggle:hover { opacity: 0.8; }
.indie-toggle.active {
  border-style: solid;
  opacity: 1;
}
/* genre more/less */
.genre-extra { display: none; }
.filters.genres-open .genre-extra { display: inline-block; }
.genre-more-btn { opacity: 0.6; letter-spacing: 0.03em; }

/* ── HOT SECTION ─────────────────────────────── */
.hot-section {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hot-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.hot-tag {
  background: linear-gradient(135deg, #991b1b, #ef4444);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
}
.hot-head h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
}
/* slider nav arrows */
.hot-nav { display: flex; gap: 6px; }
.hot-nav-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 30px; height: 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.hot-nav-btn:hover { border-color: var(--border-strong); color: var(--text); }

/* slider track */
.hot-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.hot-slider::-webkit-scrollbar { display: none; }
.hot-slide {
  flex: 0 0 300px;
  scroll-snap-align: start;
  height: auto;
}

/* month chip on each slide */
.hot-month-chip {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.65);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 3;
}

/* hot cards are horizontal rows */
.hot-card { flex-direction: row; height: 88px; }
.cover-hot { width: 66px; height: 88px; flex-shrink: 0; padding: 0; }
.hot-card .card-body { flex: 1; padding: 0.65rem 0.85rem; display: flex; flex-direction: column; justify-content: center; min-width: 0; overflow: hidden; }
.hot-card .card-body h3 { font-size: 0.88rem; white-space: nowrap; margin-bottom: 0.2rem; }
.hot-month-chip { display: none; }
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 3;
}
.rank-1 { background: #f4c430; color: #1a1000; }
.rank-2 { background: #b0b8c1; color: #111; }
.rank-3 { background: #c07a3a; color: #fff; }
.hot-hype {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  z-index: 3;
}

/* ── CONTENT & MONTHS ────────────────────────── */
.content { padding: 2.5rem 1.5rem 5rem; }

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
  font-size: 0.9rem;
}

.month-section { margin-bottom: 3.5rem; }
.month-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent);
}
.month-label {
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.month-count {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* ── MONTH GRID ──────────────────────────────── */
.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── CARDS ───────────────────────────────────── */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.7);
}
.card .cover { height: 200px; }

/* ── COVER ───────────────────────────────────── */
.cover {
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
/* gradient overlay for legibility */
.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.cover-hero { padding: 18px; }
.cover-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hype-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 3;
}
.hype-mini {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  z-index: 3;
}

/* Cover color ramps */
.cover-teal   { background: linear-gradient(145deg, #0d3d35, #0f7060); }
.cover-coral  { background: linear-gradient(145deg, #4a1b0c, #8b3520); }
.cover-purple { background: linear-gradient(145deg, #201a5c, #4a42b0); }
.cover-amber  { background: linear-gradient(145deg, #3d2002, #7a4808); }
.cover-pink   { background: linear-gradient(145deg, #4b1528, #8b2f50); }
.cover-blue   { background: linear-gradient(145deg, #04254a, #134e96); }

/* ── CARD BODY ───────────────────────────────── */
.card-body { padding: 0.8rem 0.9rem 0.95rem; }

.card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-card .card-body h3 { font-size: 0.95rem; white-space: normal; }

.meta {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.genres {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
  font-size: 0.6rem;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-pc     { background: #0e2a1c; color: #4ade80; }
.badge-ps5    { background: #1e1545; color: #a78bfa; }
.badge-xbox   { background: #142b1c; color: #86efac; }
.badge-switch { background: #3f1515; color: #fca5a5; }

/* ── GAME DETAIL ─────────────────────────────── */
.gd-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.gd-hero .cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.gd-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(9,13,18,1) 0%,
    rgba(9,13,18,0.75) 40%,
    rgba(9,13,18,0.2) 100%);
  z-index: 1;
}
.gd-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.gd-back {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.gd-back:hover { color: #fff; }

.gd-hero-body { flex: 1; min-width: 0; }
.gd-hero-body .hype-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}
.gd-hero-body h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.gd-release {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.gd-badges { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.gd-genre-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
.igdb-btn {
  flex-shrink: 0;
  align-self: flex-end;
  display: inline-block;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.15s;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.igdb-btn:hover { color: #fff; border-color: rgba(255,255,255,0.45); }

/* ── DETAIL BODY ─────────────────────────────── */
.gd-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 6rem;
  align-items: start;
}
@media (max-width: 860px) {
  .gd-body { grid-template-columns: 1fr; gap: 2rem; }
  .gd-hero-body h1 { font-size: 1.8rem; }
}

/* ── MAIN COLUMN ─────────────────────────────── */
.gd-section { margin-bottom: 2.5rem; }
.gd-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.gd-summary {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* metadata grid — 2-col inside the main column */
.gd-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gd-meta-cell {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.82rem;
}
.gd-meta-cell:nth-child(even) { border-right: none; }
.gd-meta-cell:nth-last-child(-n+2) { border-bottom: none; }
.gd-meta-cell dt {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}
.gd-meta-cell dd { color: var(--text); font-weight: 500; }
.gd-faint { color: var(--text-faint); font-weight: 400; }

/* similar games */
.gd-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.gd-similar-card {
  border-radius: 7px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}
.gd-similar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 65%);
}
.gd-similar-inner {
  position: relative;
  z-index: 1;
  padding: 0.45rem 0.6rem;
  width: 100%;
}
.gd-similar-name { font-size: 0.75rem; font-weight: 700; line-height: 1.2; }
.gd-similar-meta { font-size: 0.63rem; color: rgba(255,255,255,0.55); margin-top: 0.1rem; }

/* ── SIDEBAR ─────────────────────────────────── */
.gd-sidebar { display: flex; flex-direction: column; gap: 0; }
.gd-sidebar-section {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.gd-sidebar-section:last-child { border-bottom: none; }
.gd-sidebar-label {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

/* releases */
.gd-releases { list-style: none; display: flex; flex-direction: column; gap: 0; }
.gd-releases li {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  align-items: baseline;
}
.gd-releases li:last-child { border-bottom: none; padding-bottom: 0; }
.gd-rel-platform { color: var(--text); font-weight: 600; width: 100%; }
.gd-rel-date { color: var(--text-muted); }
.gd-rel-region { color: var(--text-faint); font-size: 0.7rem; }

/* links */
.gd-links { display: flex; flex-wrap: wrap; gap: 6px; }
.gd-link-btn {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.gd-link-btn:hover { border-color: var(--accent); color: var(--accent-light); }

/* age ratings */
.gd-ratings { display: flex; gap: 8px; flex-wrap: wrap; }
.gd-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.45rem 0.85rem;
  min-width: 54px;
  gap: 0.15rem;
}
.gd-rating-sys { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); }
.gd-rating-val { font-size: 1.1rem; font-weight: 800; color: var(--text); }

/* language table */
.gd-lang-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.gd-lang-table th, .gd-lang-table td {
  padding: 0.4rem 0.3rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.gd-lang-table th {
  color: var(--text-faint);
  font-weight: 600;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gd-lang-table td { color: var(--text-muted); }
.gd-lang-check { text-align: center !important; color: var(--accent-light); }
.gd-lang-table tr:last-child td { border-bottom: none; }

/* ── TRAILER ─────────────────────────────────── */
.gd-trailer-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  margin-top: 0.25rem;
}
.gd-trailer-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CALENDAR PAGE ───────────────────────────── */
.cal-month-nav {
  position: sticky;
  top: 57px;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}
.cal-pills {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.cal-pills::-webkit-scrollbar { display: none; }
.cal-pill {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.12s;
}
.cal-pill:hover { color: var(--text); border-color: var(--border-strong); }
.cal-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.cal-section { margin-bottom: 2.5rem; }
.cal-list {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cal-row {
  display: grid;
  grid-template-columns: 28px 40px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.cal-row:last-child { border-bottom: none; }
.cal-row:hover { background: var(--bg-deeper); }
.cal-day {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-faint);
  text-align: center;
}
.cal-thumb {
  width: 40px;
  height: 52px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cal-title {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.cal-badges { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.cal-genre {
  font-size: 0.62rem;
  color: var(--text-faint);
  font-style: italic;
}
.cal-hype {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-faint);
  white-space: nowrap;
}

/* ── ABOUT ───────────────────────────────────── */
.page { max-width: 680px; margin: 1rem auto; }
.page h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.03em; }
.page h2 { font-size: 1.1rem; font-weight: 700; margin: 1.75rem 0 0.6rem; }
.page p { color: var(--text-muted); margin-bottom: 0.9rem; line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}
.site-footer p { color: var(--text-faint); font-size: 0.78rem; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .search-sort { width: 100%; }
  .search-sort input { flex: 1; width: auto; min-width: 0; }
  .topbar h1 { font-size: 1.35rem; }
  .cover-hot { height: 160px; }
  .content { padding: 1.5rem 1rem 3rem; }
  .container { padding: 0 1rem; }

  /* horizontal list cards on mobile */
  .month-grid { grid-template-columns: 1fr; gap: 8px; }
  .card { flex-direction: row; height: 90px; }
  .card .cover { width: 68px; height: 90px; flex-shrink: 0; border-radius: 0; }
  .card-body { padding: 0.6rem 0.75rem; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
  .card-body h3 { font-size: 0.84rem; margin-bottom: 0.15rem; }
  .card-body .genres { display: none; }
  .card-body .meta { margin-bottom: 0.2rem; font-size: 0.68rem; }
}
