/* ===== LOCAL FONT (Inter) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #242b35;
  --accent: #58a6ff;
  --accent-hover: #79bbff;
  --accent-dark: #1a6dd4;
  --accent-glow: rgba(88, 166, 255, 0.25);
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --border: #30363d;
  --success: #3fb950;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.back-link-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem 0;
  text-align: left;
}

.back-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--accent-hover);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--text-primary);
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px var(--accent-glow); }
  50% { box-shadow: 0 0 60px var(--accent-glow), 0 0 100px rgba(88, 166, 255, 0.1); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== LINK BUTTONS ===== */
.link-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-link {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

/* ===== SECTIONS ===== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 0.75rem auto 0;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

.card-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 166, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
}

/* Service logo in circle */
.card-logo {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(88, 166, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.card:hover .card-logo {
  border-color: var(--accent-dark);
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card .card-link-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card:hover .card-link-hint {
  color: var(--accent);
}

/* ===== MATRIX ROOMS CARDS (Subpage) ===== */
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.room-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}



.room-icon {
  font-size: 1.5rem;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 166, 255, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.room-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.room-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--accent);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
  cursor: default;
}



.contact-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dark);
}

.contact-card-icon {
  font-size: 2.25rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 166, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.contact-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-card-subtitle {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: -0.25rem;
}

.contact-card-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-link {
  background: rgba(88, 166, 255, 0.08);
  border-color: var(--border);
  color: var(--accent);
}

.contact-link:hover {
  background: rgba(88, 166, 255, 0.15);
  border-color: var(--accent-dark);
  color: var(--accent-hover);
}

.contact-link-icon {
  font-size: 1.15rem;
}

.contact-btn {
  margin-top: auto;
  padding-top: 0.75rem;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RUSTDESK PAGE ===== */

/* Steps */
.rustdesk-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rustdesk-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}

.rustdesk-step:hover {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
}

.step-number {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
}

.step-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step-content a:hover {
  color: var(--accent-hover);
}

/* Hint box inside steps */
.rustdesk-hint {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(88, 166, 255, 0.06);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.rustdesk-hint strong {
  color: var(--text-primary);
}

.rustdesk-hint ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}

.rustdesk-hint ol li {
  margin-bottom: 0.3rem;
}

.rustdesk-hint-img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}

/* Features grid */
.rustdesk-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.rustdesk-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.rustdesk-feature:hover {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 166, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.rustdesk-feature h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.rustdesk-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Flow diagram */
.rustdesk-flow {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: all var(--transition);
}

.flow-item:hover {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
}

.flow-item.flow-cleanup {
  border-color: var(--accent);
  background: rgba(88, 166, 255, 0.04);
}

.flow-icon {
  font-size: 1.25rem;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.flow-text code {
  background: rgba(88, 166, 255, 0.1);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--accent);
}

.flow-connector {
  width: 2px;
  height: 18px;
  background: var(--border);
  margin: 0 auto;
}

/* Server info */
.rustdesk-server-info {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.server-info-row {
  display: flex;
  align-items: center;
  padding: 1.15rem 1.5rem;
  gap: 1rem;
}

.server-info-row + .server-info-row {
  border-top: 1px solid var(--border);
}

.server-info-label {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-primary);
  white-space: nowrap;
  min-width: 180px;
  flex-shrink: 0;
}

.server-info-value {
  background: rgba(88, 166, 255, 0.08);
  padding: 0.35em 0.75em;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  word-break: break-all;
  text-align: left;
}

@media (max-width: 768px) {
  .rustdesk-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .rustdesk-features {
    grid-template-columns: 1fr;
  }

  .server-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .server-info-value {
    text-align: left;
  }
}

.site-footer a {
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-sep {
  color: var(--border);
}

.footer-legal {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal-disabled {
  color: var(--text-muted);
  opacity: 0.5;
  cursor: default;
}

/* ===== LEGAL / IMPRESSUM PAGE ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.legal-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-hover);
}

.legal-block p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block strong {
  color: #93c5fd;
  font-weight: 600;
}

.legal-block ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
  padding: 0;
  list-style: disc;
}

.legal-block ul li {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.legal-block ul li:last-child {
  margin-bottom: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg-primary);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid .card {
    height: auto;
  }

  .section {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.25rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift for clickable cards (must override fade-in.visible) */
a.card.fade-in.visible:hover {
  transform: translateY(-4px);
}

a.room-card.fade-in.visible:hover {
  transform: translateY(-3px);
}

/* Stagger animation delays for cards */
.cards-grid .card:nth-child(1) { transition-delay: 0.05s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.15s; }
.cards-grid .card:nth-child(4) { transition-delay: 0.2s; }
.cards-grid .card:nth-child(5) { transition-delay: 0.25s; }
.cards-grid .card:nth-child(6) { transition-delay: 0.3s; }
.cards-grid .card:nth-child(7) { transition-delay: 0.35s; }
.cards-grid .card:nth-child(8) { transition-delay: 0.4s; }
.cards-grid .card:nth-child(9) { transition-delay: 0.45s; }

/* Room cards stagger */
.cards-grid .room-card:nth-child(1) { transition-delay: 0.05s; }
.cards-grid .room-card:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .room-card:nth-child(3) { transition-delay: 0.15s; }
.cards-grid .room-card:nth-child(4) { transition-delay: 0.2s; }
.cards-grid .room-card:nth-child(5) { transition-delay: 0.25s; }
.cards-grid .room-card:nth-child(6) { transition-delay: 0.3s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
