@charset "UTF-8";

/* ============================================
   DD电竞 · 三角洲俱乐部 — 全局重置
   ============================================ */

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-family);
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

input {
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  width: 100%;
}

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

ul, ol {
  list-style: none;
}
