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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden; /* We'll control scrolling inside layout containers */
}

@media (max-width: 1024px) {
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

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

ul {
  list-style: none;
}

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

input {
  border: none;
  font-family: inherit;
  outline: none;
}
