/* Базовые стили (шрифты подключаются в base.html, без дублирующих @import) */

html {
  color-scheme: dark;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 
               'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
               sans-serif;
  line-height: 1.6;
  background-color: var(--darker-slate);
  color: var(--text-light);
}

.content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

#about,
#portfolio-works,
#stories-carousel-section,
#more-projects,
#contact,
#portfolio {
  scroll-margin-top: var(--scroll-anchor-offset);
}