/* ========================================
   ALAN HATTI - LIGHT MODERN THEME v2
   frontend.js uyumlu sonuç kartları
   ======================================== */

:root {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.12);
  --success: #10b981;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  --success-text: #047857;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --warning-text: #b45309;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --danger-text: #b91c1c;
  --purple: #8b5cf6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: var(--radius-md);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.logo-icon.small {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.menu a:hover {
  color: var(--text-primary);
}

.menu a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

/* Hero Section */
.new-hero {
  padding: 64px 0 48px;
  position: relative;
}

.new-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--success);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.new-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Search Card */
.new-search-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.new-search-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.search-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.input-wrap {
  flex: 1;
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

#domainInput {
  width: 100%;
  padding: 14px 14px 14px 44px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

#domainInput::placeholder {
  color: var(--text-muted);
}

#domainInput:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-row button {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
  white-space: nowrap;
}

.search-row button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.search-row button:active {
  transform: translateY(0);
}

/* Quick TLDs */
.quick-tlds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-tlds button {
  padding: 7px 14px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-tlds button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59, 130, 246, 0.06);
}

.quick-tlds button:active {
  transform: scale(0.95);
}

/* Side Card */
.new-side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.side-card-top {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.side-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.side-card-top span:nth-child(1) { background: #ef4444; }
.side-card-top span:nth-child(2) { background: #f59e0b; }
.side-card-top span:nth-child(3) { background: #10b981; }

.side-card-body {
  padding: 24px;
}

.side-card-body h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.mini-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-feature:last-child {
  margin-bottom: 0;
}

.mf-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.mf-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.mf-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.mf-green { background: linear-gradient(135deg, #10b981, #059669); }

.mf-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.mf-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Results Section */
.results-section {
  padding: 48px 0;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}

.results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.results-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-pulse {
  position: relative;
  width: 14px;
  height: 14px;
}

.pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--success);
  animation: pulse-ring 2s infinite;
}

.pulse-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

.overline {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.results-title h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.results-head small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========================================
   RESULT BOX - frontend.js UYUMLU
   ======================================== */

.results {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 280px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.results.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.empty-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: var(--text-muted);
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.empty-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---- Loading State ---- */
.result-item:has(.result-status:contains("Bekle")) {
  opacity: 0.7;
}

/* ---- Result Item (Tekli & Toplu) ---- */
.result-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item:hover {
  background: #f8fafc;
}

.result-domain {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.result-item > div > p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ---- Status Badge ---- */
.result-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Available - Boşta olabilir */
.result-status.available {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-text);
}

.result-status.available::before {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

/* Taken - Dolu */
.result-status.taken {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
}

.result-status.taken::before {
  background: var(--danger);
  box-shadow: 0 0 6px var(--danger);
}

/* Invalid */
.result-status.invalid {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  color: var(--warning-text);
}

.result-status.invalid::before {
  background: var(--warning);
  box-shadow: 0 0 6px var(--warning);
}

/* Bekle (Loading) */
.result-status:not(.available):not(.taken):not(.invalid) {
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.result-status:not(.available):not(.taken):not(.invalid)::before {
  background: var(--text-muted);
  animation: pulse-dot 1.5s infinite;
}

/* ---- WHOIS Details ---- */
.whois-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.whois-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whois-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.whois-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---- Bulk Summary ---- */
.bulk-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.bulk-summary strong {
  color: var(--text-primary);
  font-weight: 700;
}

.bulk-summary span {
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Bulk Result Compact ---- */
.bulk-result {
  padding: 14px 24px;
}

.bulk-result .result-domain {
  font-size: 0.95rem;
}

.bulk-result > div > p {
  font-size: 0.8rem;
}

/* ---- Pagination ---- */
.bulk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: #f8fafc;
}

.bulk-pagination button {
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bulk-pagination button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59, 130, 246, 0.04);
}

.bulk-pagination button.active {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

/* Error messages */
.results > p {
  padding: 32px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   BULK BOX
   ======================================== */

.bulk-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.bulk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.bulk-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: var(--radius-sm);
  color: white;
}

.bulk-box h3 {
  font-size: 1rem;
  font-weight: 700;
}

.bulk-help {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.bulk-box textarea {
  width: 100%;
  height: 160px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
  resize: vertical;
  outline: none;
  transition: all 0.3s ease;
  line-height: 1.7;
  margin-bottom: 14px;
}

.bulk-box textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.ghost-btn {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.ghost-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59, 130, 246, 0.04);
}

/* Features */
.features {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-grid h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-grid p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA */
.cta {
  padding: 32px 0 64px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-domain {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.cta-content h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 360px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-inner > p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .new-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .new-side-card {
    order: -1;
  }
  
  .results-layout {
    grid-template-columns: 1fr;
  }
  
  .bulk-box {
    position: static;
  }
  
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
  
  .cta-content p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .new-hero-content h1 {
    font-size: 2rem;
  }
  
  .menu {
    display: none;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .section-head h2 {
    font-size: 1.5rem;
  }
  
  .search-row {
    flex-direction: column;
  }
  
  .search-row button {
    width: 100%;
    justify-content: center;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .results-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .results {
    min-height: 200px;
  }
  
  .results.empty {
    padding: 32px;
  }
  
  .result-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .whois-details {
    grid-template-columns: 1fr 1fr;
  }
  
  .bulk-pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .whois-details {
    grid-template-columns: 1fr;
  }
  
  .result-domain {
    font-size: 1rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Selection */
::selection {
  background: rgba(59, 130, 246, 0.15);
  color: var(--text-primary);
}