body {
  background-color: black;
  color: white;
}

#container {
  font-family: monospace;
  padding: 1em;
  max-width: 100em;
  border: 1px solid white;
  border-radius: 3px;
  margin: 0 auto;
  box-sizing: border-box;
}

#title {
  font-size: 2em;
  padding-bottom: 0.5em;
}

#subtitle {
  font-size: 1.2em;
  margin-top: 1em;
  text-align: center;
}

a {
  color: white;
}

#contact {
  margin-top: 1em;
}

#gameCanvasContainer {
  width: 100%;
  height: auto;
  touch-action: none;
  border-radius: 3px;
  box-sizing: border-box;
  padding-top: 1em;
}

canvas {
  width: 100%;
  height: auto;
  touch-action: none;
  border: 1px solid #333;
}

.links-section {
  margin: 1.5em 0;
  line-height: 2em;
}

.links-section a {
  text-decoration: none;
  padding: 0.3em 0.6em;
  border: 1px solid #333;
  border-radius: 3px;
  margin: 0.2em;
  display: inline-block;
}

.links-section a:hover {
  border-color: white;
}

details {
  margin-top: 1em;
}

details summary {
  cursor: pointer;
}

.about-section {
  max-width: 800px;
  margin: 2em auto;
  text-align: left;
  padding: 0 1em;
}

.about-section p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin: 2em 0;
}

.primary-links {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.backed-by,
.team-section,
.advisors-section {
  text-align: center;
}

.backers-grid,
.team-grid,
.advisors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}

footer {
  margin-top: 3em;
  text-align: center;
}

.social-links,
.contact-links {
  margin: 1em 0;
}

@media (max-width: 600px) {
  .about-section {
    font-size: 0.9em;
  }

  .links-section {
    gap: 1.5em;
  }
}
