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

body {
  background: #ffffff;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 3rem 1.5rem;
  color: #111;
  line-height: 1.4;
}

.page {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.big-title {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.2;
}

.title-description {
  font-size: 0.95rem;
  color: #5a5a5a;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 400;
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  display: inline;
  white-space: nowrap;
}

.categories-list a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 400;
}

.categories-list a:hover {
  text-decoration: none;
  color: #1a1a1a;
}

.categories-list a.active {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1.2px;
}

.categories-list a:focus-visible {
  outline: 1px solid #aaa;
  outline-offset: 3px;
}