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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(139, 149, 165, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 149, 165, 0.3);
}

::selection {
  background: rgba(139, 149, 165, 0.2);
  color: var(--white);
}

#main-content {
  position: relative;
  z-index: 1;
}

.section-container {
  width: var(--content-width-desktop);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 32px;
}


.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 149, 165, 0.06), transparent);
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-title .hash {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent);
}

.section-title .title-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.section-title .title-line {
  flex: 1;
  height: 1px;
  max-width: 200px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary), transparent);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.section-title .title-line.visible {
  opacity: 1;
}

.section-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 8px;
}

@media (max-width: 599px) {
  .section-container {
    width: var(--content-width-mobile);
    padding: 40px 20px;
  }

  .section-title .hash,
  .section-title .title-text {
    font-size: 22px;
  }

  .section-title .title-line {
    display: none;
  }

  .section-description {
    font-size: 13px;
  }
}