body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #eee;
  user-select: none;
}
header {
  background: #111;
  border-bottom: 1px solid #333;
  padding: 1rem 2rem;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.section-title img {
  width: 24px;
  height: 24px;
}
h2 {
  font-size: 1.2rem;
  margin: 0;
}
p {
  line-height: 1.7;
  color: #ccc;
}
a {
  color: #4ea1ff;
  text-decoration: none;
  cursor: pointer;
}
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-drag: none;
}
a:hover {
  text-decoration: underline;
}
#discord-info {
  display: none;
  background: #111;
  padding: 1rem;
  margin-top: 1rem;
  border-left: 4px solid #4ea1ff;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#discord-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  flex-shrink: 0;
}
#discord-info div {
  color: #ccc;
}
#discord-info p {
  margin: 0.2rem 0;
}
