/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #07080f;
  --surface:       #0d0f1c;
  --border:        #1c1f35;
  --gold:          #e8b923;
  --gold-glow:     rgba(232, 185, 35, 0.18);
  --gold-dim:      rgba(232, 185, 35, 0.08);
  --plex:          #e5a00d;
  --plex-hover:    #f5b420;
  --plex-fg:       #000;
  --text:          #e8e8f2;
  --text-muted:    #5c5e78;
  --error:         #e05c5c;
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    200ms ease;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Ambient background orbs ─────────────────────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: drift 20s ease-in-out infinite alternate;
}

.orb--amber {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #e8b923, transparent 70%);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2a3acc, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.08); }
}

/* ── Film grain overlay ───────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Layout views ─────────────────────────────────────────────────────────── */
.view {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* ── Login card ───────────────────────────────────────────────────────────── */
#view-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Brand / wordmark ─────────────────────────────────────────────────────── */
.brand {
  margin-bottom: 2rem;
}

.brand__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.brand__wordmark {
  font-family: 'Cinzel', serif;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px var(--gold-glow), 0 0 120px var(--gold-glow);
}

.brand__tagline {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
  line-height: 1;
}

/* ── Login description ────────────────────────────────────────────────────── */
.login-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn--plex {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--plex);
  color: var(--plex-fg);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 0 30px rgba(229, 160, 13, 0.25);
}

.btn--plex:hover:not(:disabled) {
  background: var(--plex-hover);
  box-shadow: 0 0 40px rgba(229, 160, 13, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn--ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn--sm { font-size: 0.8rem; }

/* ── Error message ────────────────────────────────────────────────────────── */
.error-msg {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--error);
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Plex icon inside button ─────────────────────────────────────────────── */
.plex-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── App header ───────────────────────────────────────────────────────────── */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 15, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.app-header__brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.app-wordmark {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.app-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.app-header__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--surface);
}

.user-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* ── Welcome section ─────────────────────────────────────────────────────── */
.welcome-section {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.welcome-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.welcome-name {
  color: var(--gold);
}

.welcome-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Utility: hide ────────────────────────────────────────────────────────── */
[hidden] { display: none !important; }
/* ── Primary (gold) button ─────────────────────────────────────────────── */
.btn--primary {
  background: var(--gold);
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  box-shadow: 0 0 40px var(--gold-glow);
}

.btn--primary:hover:not(:disabled) {
  background: #f5cb50;
  box-shadow: 0 0 60px var(--gold-glow);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Loading state ────────────────────────────────────────────────────────── */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 1.5rem;
  animation: fade-in 0.3s ease;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.loading-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Recommendations section ─────────────────────────────────────────────── */
.recommendations-section {
  padding: 3rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rec-heading {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Card grid ───────────────────────────────────────────────────────────────── */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  list-style: none;
}

/* ── Individual card ─────────────────────────────────────────────────────────── */
.rec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-dim);
  border-color: rgba(232, 185, 35, 0.3);
}

/* ── Poster ──────────────────────────────────────────────────────────────────── */
.rec-card__poster-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0a0b14;
  flex-shrink: 0;
  position: relative;
}

/* ── Status badge ────────────────────────────────────────────────────────────── */
.rec-card__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25em 0.55em;
  border-radius: 4px;
  pointer-events: none;
  line-height: 1.4;
}

.badge--available  { background: #1a6b3a; color: #7dffb0; }

/* ── Content-type selector ─────────────────────────────────────────── */
.type-selector {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}
.type-btn {
  flex: 1;
  padding: 0.5rem 1.1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: background 180ms, color 180ms;
  white-space: nowrap;
}
.type-btn + .type-btn { border-left: 1px solid var(--gold-dim); }
.type-btn--active {
  background: var(--gold-dim);
  color: var(--text);
  font-weight: 600;
}
.type-btn:hover:not(.type-btn--active) { background: rgba(255,255,255,0.06); }

.rec-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.rec-card:hover .rec-card__poster {
  transform: scale(1.03);
}

.rec-card__poster-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--surface);
}

/* ── Card body ─────────────────────────────────────────────────────────────── */
.rec-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.rec-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rec-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.rec-card__year {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.rec-card__pitch {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

/* ── Overseerr link ──────────────────────────────────────────────────────────── */
.btn--overseerr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  align-self: flex-start;
  cursor: pointer;
}

.btn--overseerr:hover {
  color: var(--gold);
  border-color: rgba(232, 185, 35, 0.4);
  background: var(--gold-dim);
}

/* ── Recommend footer ────────────────────────────────────────────────────────── */
.recommend-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.usage-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .app-header             { padding: 1rem; }
  .user-name              { display: none; }
  .recommendations-section { padding: 2rem 1rem 4rem; }
  .recommendations-grid   { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHAT UI
   ═══════════════════════════════════════════════════════════════════════════ */

/* Make the app view a full-height flex column so the chat fills the rest */
#view-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* ── Chat section layout ─────────────────────────────────────────────────── */
.chat-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Scrollable message area ─────────────────────────────────────────────── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0 1rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar        { width: 4px; }
.chat-messages::-webkit-scrollbar-track  { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb  { background: var(--border); border-radius: 2px; }

/* ── Message bubbles ─────────────────────────────────────────────────────── */
.chat-message {
  display: flex;
  gap: 0.65rem;
  max-width: 88%;
  animation: msg-in 0.2s ease both;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-message--user  { align-self: flex-end;  flex-direction: row-reverse; }
.chat-message--ai    { align-self: flex-start; max-width: 94%; }
.chat-message--error { align-self: flex-start; }

.chat-message__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
.chat-message--user  .chat-message__avatar {
  background: var(--gold-dim);
  border: 1px solid rgba(232,185,35,0.25);
  font-size: 0.85rem;
}
.chat-message--ai    .chat-message__avatar,
.chat-message--error .chat-message__avatar {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.03em;
}

.chat-message__bubble {
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  word-break: break-word;
}
.chat-message--user  .chat-message__bubble {
  background: rgba(232,185,35,0.11);
  border: 1px solid rgba(232,185,35,0.2);
  border-bottom-right-radius: 4px;
  color: var(--text);
  white-space: pre-wrap;
}
.chat-message--ai    .chat-message__bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.chat-message--error .chat-message__bubble {
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.3);
  border-bottom-left-radius: 4px;
  color: var(--error);
}

/* ── Markdown content inside AI bubbles ─────────────────────────────────── */
.chat-message__bubble p             { margin: 0.35em 0; }
.chat-message__bubble p:first-child { margin-top: 0; }
.chat-message__bubble p:last-child  { margin-bottom: 0; }
.chat-message__bubble h4,
.chat-message__bubble h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.88em;
  color: var(--text);
  margin: 0.8em 0 0.25em;
}
.chat-message__bubble ul.chat-list { padding-left: 1.2em; margin: 0.3em 0; }
.chat-message__bubble li           { margin: 0.2em 0; }
.chat-message__bubble strong       { font-weight: 600; color: var(--text); }
.chat-message__bubble em           { color: var(--text-muted); font-style: italic; }
.chat-message__bubble a.chat-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(232,185,35,0.35);
  text-underline-offset: 2px;
}
.chat-message__bubble a.chat-link:hover { text-decoration-color: var(--gold); }
.chat-message__bubble code.chat-code {
  background: rgba(255,255,255,0.07);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.86em;
  font-family: ui-monospace, 'Cascadia Code', monospace;
}

/* ── Typing indicator ────────────────────────────────────────────────────── */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.7rem 1rem !important;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.1s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1;   }
}

/* ── Input bar ───────────────────────────────────────────────────────────── */
.chat-input-bar {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  padding: 0.75rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  line-height: 1.5;
  resize: none;
  min-height: 44px;
  max-height: 160px;
  overflow-y: auto;
  outline: none;
  transition: border-color var(--transition);
}
.chat-input:focus       { border-color: rgba(232,185,35,0.4); }
.chat-input::placeholder { color: var(--text-muted); }

.btn--send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  color: #000;
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
}
.btn--send:hover:not(:disabled)  { background: #f5cb50; }
.btn--send:active:not(:disabled) { transform: scale(0.93); }
.btn--send:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* ── Mobile tweaks for chat ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .chat-section        { padding: 0 0.75rem; }
  .chat-message        { max-width: 95%; }
  .chat-message--ai    { max-width: 100%; }
  .chat-input-bar      { padding-bottom: 1rem; }
}
/* ── Filter inline panel ─────────────────────────────────────────────────── */
.filter-wrap {
  padding: 0.45rem 1rem 0;
  flex-shrink: 0;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.filter-toggle:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.filter-toggle.has-active {
  border-color: rgba(220, 38, 38, 0.55);
  color: #f87171;
  background: rgba(220, 38, 38, 0.08);
}

.filter-toggle .chevron {
  transition: transform 0.18s;
}

.filter-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

/* Panel sits in the normal flex flow — no absolute positioning */
.filter-panel {
  margin-top: 0.4rem;
  background: #13152a;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  /* slide animation */
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.filter-panel.open {
  grid-template-rows: 1fr;
}

.filter-panel__inner {
  overflow: hidden;
  padding: 0.35rem 0 0.45rem;
}

.filter-panel__heading {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.85rem 0.45rem;
}

.filter-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 480px) {
  .filter-options-grid { grid-template-columns: 1fr; }
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.85rem;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text);
  transition: background 0.1s;
}

.filter-option:hover {
  background: rgba(255,255,255,0.05);
}

.filter-option input[type="checkbox"] {
  accent-color: #ef4444;
  width: 0.9rem;
  height: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option input:checked + span {
  color: #f87171;
}
