/* ============================================
   coment_yt — Dashboard styles
   Premium dark editorial · refined depth
   ============================================ */

:root {
  --dark-base: #0A0E1A;
  --dark-alt: #111827;
  --card-bg: rgba(31, 41, 55, 0.4);
  --card-bg-hover: rgba(31, 41, 55, 0.6);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --accent-blue: #3B82F6;
  --soft-blue: #93C5FD;
  --wpp-green: #25D366;
  --alert-red: #EF4444;
  --warn-yellow: #F59E0B;
  --yt-red: #FF0000;
}

/* ============================================
   Atmosphere — gradient orbs + grain overlay
   ============================================ */
body {
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before {
  /* Orb azul no topo esquerdo */
  content: '';
  position: fixed;
  top: -30vh;
  left: -20vw;
  width: 90vw;
  height: 90vh;
  background: radial-gradient(circle at center,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(59, 130, 246, 0.04) 30%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

body::after {
  /* Orb verde sutil no bottom direito */
  content: '';
  position: fixed;
  bottom: -30vh;
  right: -25vw;
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle at center,
    rgba(37, 211, 102, 0.08) 0%,
    rgba(37, 211, 102, 0.02) 30%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

/* Subtle grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main, header { position: relative; z-index: 2; }

/* ============================================
   Header refinement
   ============================================ */
header {
  background: linear-gradient(to bottom, rgba(10, 14, 26, 0.95), rgba(10, 14, 26, 0.7));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ============================================
   Tabs
   ============================================ */
.tab-btn {
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   Stat cards
   ============================================ */
.stat-card {
  padding: 1.5rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg,
    rgba(31, 41, 55, 0.5) 0%,
    rgba(31, 41, 55, 0.25) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.stat-card::before {
  /* Subtle highlight on top edge */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.25s; }
.stat-card:nth-child(4) { animation-delay: 0.35s; }

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94A3B8;
  font-weight: 500;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   Comment cards — premium glass morph
   ============================================ */
.comment-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(31, 41, 55, 0.55) 0%,
    rgba(31, 41, 55, 0.25) 100%);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: fadeUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  backdrop-filter: blur(8px);
}

.comment-card::before {
  /* Gradient border accent (top) */
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.comment-card:hover {
  border-color: var(--border-hover);
  background: linear-gradient(135deg,
    rgba(31, 41, 55, 0.65) 0%,
    rgba(31, 41, 55, 0.35) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
}

.comment-card.elogio:hover  { box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.2); }
.comment-card.duvida:hover  { box-shadow: 0 16px 40px -12px rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.2); }
.comment-card.critica       { border-color: rgba(239, 68, 68, 0.25); background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(31, 41, 55, 0.3)); }
.comment-card.critica:hover { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 16px 40px -12px rgba(239, 68, 68, 0.18); }

/* Stagger fade-up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Avatar (initial circle)
   ============================================ */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: -0.02em;
}

/* 8 deterministic colors derived from author hash (JS) */
.avatar-0 { background: linear-gradient(135deg, #3B82F6, #1E40AF); }
.avatar-1 { background: linear-gradient(135deg, #25D366, #15803D); }
.avatar-2 { background: linear-gradient(135deg, #F59E0B, #B45309); }
.avatar-3 { background: linear-gradient(135deg, #EC4899, #9D174D); }
.avatar-4 { background: linear-gradient(135deg, #8B5CF6, #5B21B6); }
.avatar-5 { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.avatar-6 { background: linear-gradient(135deg, #EF4444, #991B1B); }
.avatar-7 { background: linear-gradient(135deg, #14B8A6, #115E59); }

/* ============================================
   Category badges with icon
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  border: 1px solid transparent;
}

.badge svg, .badge i { width: 12px; height: 12px; }

.badge-elogio  { background: rgba(37, 211, 102, 0.12);  color: #25D366; border-color: rgba(37, 211, 102, 0.25); }
.badge-duvida  { background: rgba(59, 130, 246, 0.12);  color: #93C5FD; border-color: rgba(59, 130, 246, 0.25); }
.badge-critica { background: rgba(239, 68, 68, 0.12);   color: #FCA5A5; border-color: rgba(239, 68, 68, 0.25); }
.badge-spam    { background: rgba(148, 163, 184, 0.12); color: #94A3B8; border-color: rgba(148, 163, 184, 0.2); }
.badge-hate    { background: rgba(239, 68, 68, 0.2);    color: #FCA5A5; border-color: rgba(239, 68, 68, 0.4); }
.badge-reacao  { background: rgba(245, 158, 11, 0.12);  color: #FCD34D; border-color: rgba(245, 158, 11, 0.25); }
.badge-outro   { background: rgba(148, 163, 184, 0.1);  color: #94A3B8; border-color: rgba(148, 163, 184, 0.18); }

/* ============================================
   Status pill with pulsing dot
   ============================================ */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.status-pending  .status-dot { background: #F59E0B; animation: pulse 2s ease-in-out infinite; }
.status-pending           { color: #F59E0B; }
.status-approved .status-dot { background: #93C5FD; }
.status-approved          { color: #93C5FD; }
.status-posted   .status-dot { background: #25D366; }
.status-posted            { color: #25D366; }
.status-replied  .status-dot { background: #C4B5FD; }
.status-replied           { color: #C4B5FD; }
.status-rejected          { color: #64748B; opacity: 0.7; }
.status-skipped           { color: #64748B; opacity: 0.7; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

/* ============================================
   Comment text
   ============================================ */
.comment-text {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.author-meta {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.timestamp {
  font-size: 0.75rem;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================
   Reply section (preview vs edit modes)
   ============================================ */
.reply-block {
  margin-top: 1.5rem;
  border-left: 2px solid rgba(59, 130, 246, 0.3);
  padding-left: 1.25rem;
  position: relative;
}

.reply-block::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--soft-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.reply-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--soft-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.reply-preview {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.65;
  background: rgba(10, 14, 26, 0.5);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.reply-textarea {
  width: 100%;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.65;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reply-textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg, .btn i { width: 14px; height: 14px; }

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — Approve (green WhatsApp) */
.btn-approve {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.12));
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-weight: 600;
}
.btn-approve:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(37, 211, 102, 0.18));
  box-shadow: 0 6px 20px -4px rgba(37, 211, 102, 0.3);
}

/* Edit — neutral */
.btn-edit {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}
.btn-edit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

/* Reject / Ignore */
.btn-reject {
  background: transparent;
  border-color: rgba(239, 68, 68, 0.25);
  color: #FCA5A5;
}
.btn-reject:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
}

/* YouTube */
.btn-yt {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.08));
  border-color: rgba(255, 0, 0, 0.3);
  color: #FCA5A5;
  text-decoration: none;
}
.btn-yt:hover {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.12));
  border-color: rgba(255, 0, 0, 0.45);
  color: #FECACA;
  box-shadow: 0 6px 20px -4px rgba(255, 0, 0, 0.3);
}

/* Save (in edit mode) */
.btn-save {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.12));
  border-color: rgba(59, 130, 246, 0.4);
  color: #93C5FD;
}
.btn-save:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.18));
  box-shadow: 0 6px 20px -4px rgba(59, 130, 246, 0.3);
}

.btn-cancel {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.8rem;
}
.btn-cancel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
}

/* "Já respondi" — discreto roxo/violeta */
.btn-replied {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: #C4B5FD;
}
.btn-replied:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 6px 20px -4px rgba(139, 92, 246, 0.25);
}

/* ============================================
   Filter chips
   ============================================ */
.filter-chip {
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(31, 41, 55, 0.3);
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.filter-chip.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
  border-color: rgba(59, 130, 246, 0.4);
  color: #93C5FD;
  box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.2);
}

.filter-chip-count {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

/* ============================================
   Insight cards (refined)
   ============================================ */
.insight-card {
  padding: 1.75rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg,
    rgba(31, 41, 55, 0.5) 0%,
    rgba(31, 41, 55, 0.25) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.insight-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* Trending tags */
.trend-tag {
  padding: 0.45rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: #93C5FD;
  border-radius: 9999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  transition: all 0.2s;
}

.trend-tag:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

.trend-tag .count {
  background: rgba(59, 130, 246, 0.25);
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Fan ranking */
.fan-rank {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.85rem;
  transition: background 0.2s;
}

.fan-rank:hover { background: rgba(255, 255, 255, 0.03); }

.fan-rank-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.fan-rank-1 { background: linear-gradient(135deg, #FFD700, #B8860B); color: #1a1a1a; }
.fan-rank-2 { background: linear-gradient(135deg, #E5E7EB, #9CA3AF); color: #1a1a1a; }
.fan-rank-3 { background: linear-gradient(135deg, #CD7F32, #8B4513); color: white; }
.fan-rank-other { background: rgba(255, 255, 255, 0.05); color: #94A3B8; border: 1px solid rgba(255, 255, 255, 0.08); }

/* ============================================
   Toast (refined)
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 1rem 1.25rem 1rem 1rem;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 0.875rem;
  color: #e2e8f0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-success .toast-icon { background: rgba(37, 211, 102, 0.2); color: #25D366; }
.toast-error   .toast-icon { background: rgba(239, 68, 68, 0.2); color: #FCA5A5; }
.toast-info    .toast-icon { background: rgba(59, 130, 246, 0.2); color: #93C5FD; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   Empty state
   ============================================ */
.empty {
  text-align: center;
  padding: 5rem 2rem;
  color: #64748B;
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.03));
  border: 1px solid rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(37, 211, 102, 0.6);
}

/* ============================================
   Sentiment bar
   ============================================ */
.sentiment-bar {
  display: flex;
  height: 6px;
  border-radius: 9999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.sentiment-bar > div {
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   Hide elements via collapse animation
   ============================================ */
.collapse {
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease;
}

/* ============================================
   Markdown de sugestões (estiliza o output da IA)
   ============================================ */
.prose-suggest h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: white;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prose-suggest h2:first-child { margin-top: 0; }

.prose-suggest h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #93C5FD;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.prose-suggest p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.prose-suggest strong {
  color: white;
  font-weight: 600;
}

.prose-suggest ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.prose-suggest li {
  position: relative;
  padding-left: 1.25rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.prose-suggest li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #93C5FD;
}

/* ============================================
   Scrollbar (subtle dark)
   ============================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(10, 14, 26, 0.5); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.15); }
