body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
  text-align: center;
}

#intro {
  max-width: 600px;
  margin: 80px auto;
}

h1 {
  margin-bottom: 10px;
}

p {
  color: #ccc;
}

ul {
  text-align: left;
  display: inline-block;
  margin: 20px 0;
}

button {
  padding: 12px 20px;
  margin: 10px;
  border: none;
  background: #2c7be5;
  color: white;
  cursor: pointer;
  border-radius: 6px;
}

button:hover {
  background: #1a5fc1;
}

canvas {
  display: none;
  width: 100vw;
  height: 100vh;
  cursor: none;
}

#controls {
  position: fixed;
  top: 10px;
  right: 10px;
  display: none;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  font-size: 12px;
  color: #888;
}
#donate {
  position: fixed;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.donate-box {
  background: #1c1c1c;
  border: 1px solid #333;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  pointer-events: all;
}

.donate-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.donate-text {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 10px;
}

.donate-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #f5a623;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.donate-btn:hover {
  background: #ffb84d;
}
