/* ============================================================
   Filmdatenbank  ·  Design-System
   Helles, professionelles Theme mit goldenen Akzenten.
   Inspiriert von klassischer Kinematographie & modernem Editorial-Design.
   ============================================================ */

:root {
  /* Farbpalette – hell & warm */
  --bg: #f7f6f3;
  --bg-soft: #fbfaf7;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.72);
  --bg-glass-strong: rgba(255, 255, 255, 0.92);
  --bg-dark: #0e1116;
  --bg-dark-soft: #1a1d24;

  --text: #18191c;
  --text-soft: #4a4d55;
  --text-muted: #7a7e88;
  --text-inverse: #f7f6f3;

  --border: #e7e3da;
  --border-soft: #f0ece3;
  --border-strong: #d8d3c7;

  /* Akzent: warmes Kino-Gold */
  --accent: #d4a437;
  --accent-hover: #c1932b;
  --accent-soft: #f4e7c4;
  --accent-contrast: #1a1206;

  /* Sekundäre Akzente */
  --rating-high: #2e7d4f;
  --rating-mid: #d4a437;
  --rating-low: #c0392b;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(20, 18, 12, 0.04), 0 1px 1px rgba(20, 18, 12, 0.03);
  --shadow-md: 0 4px 12px rgba(20, 18, 12, 0.06), 0 2px 4px rgba(20, 18, 12, 0.04);
  --shadow-lg: 0 18px 48px rgba(20, 18, 12, 0.10), 0 6px 16px rgba(20, 18, 12, 0.06);
  --shadow-xl: 0 32px 80px rgba(20, 18, 12, 0.14), 0 12px 28px rgba(20, 18, 12, 0.08);

  /* Radien */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Typography */
  --font-sans: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", "Playfair Display Fallback", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --header-h: 72px;

  /* Animation */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.32s;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 164, 55, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(212, 164, 55, 0.04), transparent 60%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: var(--bg-glass-strong);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #b8862a 100%);
  display: grid;
  place-items: center;
  color: var(--accent-contrast);
  box-shadow: 0 4px 12px rgba(212, 164, 55, 0.32);
  position: relative;
  overflow: hidden;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 80%, 100% { transform: translateX(-100%); }
  90% { transform: translateX(100%); }
}

.brand__mark svg { width: 22px; height: 22px; }

.brand__text { line-height: 1; }
.brand__text small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Suche ---------- */
.search {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}

.search__field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.16);
}

.search__icon { color: var(--text-muted); flex-shrink: 0; }

.search__input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.search__input::placeholder { color: var(--text-muted); }

.search__clear {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}

.search__clear.visible { opacity: 1; }
.search__clear:hover { background: var(--border-soft); color: var(--text); }

/* Suchvorschläge */
.search__suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
  overflow-y: auto;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.search__suggest.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.suggest-item {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin: 2px 6px;
  align-items: center;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.suggest-item:hover,
.suggest-item.active {
  background: var(--accent-soft);
}

.suggest-item__poster {
  width: 36px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--border-soft);
  flex-shrink: 0;
}

.suggest-item__meta {
  flex: 1;
  min-width: 0;
}

.suggest-item__title {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-item__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.suggest-item__rating {
  color: var(--accent);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.suggest-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.suggest-group {
  padding: 10px 14px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

.suggest-group:first-child {
  border-top: none;
  padding-top: 8px;
}

.suggest-all {
  display: block;
  padding: 12px 16px;
  margin-top: 4px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  text-align: center;
  transition: background var(--dur) var(--ease);
}

.suggest-all:hover {
  background: var(--accent-soft);
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: var(--border-soft);
}

.nav__link.active {
  color: var(--accent-contrast);
  background: var(--accent-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 4px 14px rgba(212, 164, 55, 0.32);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(212, 164, 55, 0.40);
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--border-strong);
  background: var(--bg-soft);
}

.btn--inverse {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn--inverse:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg { padding: 14px 28px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 164, 55, 0.18), transparent 60%);
  filter: blur(40px);
  animation: float 18s ease-in-out infinite;
}

.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 79, 0.10), transparent 60%);
  filter: blur(40px);
  animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero__inner {
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rating-high);
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #b8862a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

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

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section {
  padding: 56px 0;
}

.section--tight { padding: 36px 0; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.section__title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-hover);
  margin-bottom: 4px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------- Chip-Filter ---------- */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.chip {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--text);
}

.chip.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--text-inverse);
}

/* ---------- Movie Card ---------- */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 24px;
}

.movie-grid--dense {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.card__poster {
  position: relative;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #e8e3d6 0%, #d4cdb8 100%);
  overflow: hidden;
}

.card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card__poster img {
  transform: scale(1.06);
}

.card__rating-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(8px);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-sm);
}

.card__rating-badge .star {
  color: var(--accent);
}

.card__type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(14, 17, 22, 0.74);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 4px;
}

.card__meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Skeleton ---------- */
.skeleton {
  background: linear-gradient(90deg, #ece7dc 0%, #f5f1e8 50%, #ece7dc 100%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.skeleton-card .skeleton {
  border-radius: 0;
}

.skeleton--poster { aspect-ratio: 2/3; }
.skeleton--line { height: 14px; margin: 8px 14px; }
.skeleton--line-short { width: 50%; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 80px;
  padding: 48px 0 36px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  gap: 36px;
}

.site-footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}

.site-footer__col a:hover { color: var(--accent); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xl);
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  transition: transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ---------- Helpers ---------- */
.loading-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-spinner--dark {
  border: 2px solid rgba(20, 18, 12, 0.15);
  border-top-color: var(--text);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeIn 0.5s var(--ease-out) both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-stagger > * {
  animation: fadeIn 0.5s var(--ease-out) both;
}

.fade-in-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.fade-in-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.fade-in-stagger > *:nth-child(3) { animation-delay: 0.12s; }
.fade-in-stagger > *:nth-child(4) { animation-delay: 0.16s; }
.fade-in-stagger > *:nth-child(5) { animation-delay: 0.20s; }
.fade-in-stagger > *:nth-child(6) { animation-delay: 0.24s; }
.fade-in-stagger > *:nth-child(7) { animation-delay: 0.28s; }
.fade-in-stagger > *:nth-child(8) { animation-delay: 0.32s; }

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 48px; }
  .hero__stats { gap: 24px; }
  .hero__stat-value { font-size: 26px; }
  .section { padding: 40px 0; }
  .section__head { flex-direction: column; align-items: stretch; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__links { flex-wrap: wrap; gap: 24px; }
  .brand__text small { display: none; }
}

@media (max-width: 480px) {
  .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card__title { font-size: 14px; }
}

/* ---------- Tastatur-Navigation Focus ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 6px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
