html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.5rem;
}

body {
  background: #0d1117;
  color: white;
}

#navbar {
  -webkit-backdrop-filter: blur(12px);
}

::selection {
  background: #3b82f6;
  color: white;
}

/* Section heading */
.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* About / Skills row layout */
.about-row {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.about-label {
  font-size: 0.8125rem;
  color: rgb(139 148 158);
  letter-spacing: 0.02em;
  padding-top: 0.1rem;
  min-width: 6rem;
}

@media (max-width: 480px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3b82f6; }
