body {
  background: linear-gradient(135deg, #006400, #1a1a1a);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 25px;
}

.glass {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 25px;
}

canvas {
  margin-top: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.buttons {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  margin: 5px;
  background: gold;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ffec8b;
}

.log {
  margin-top: 20px;
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.5);
}

h1, h2 {
  color: gold;
  text-shadow: 1px 1px 4px black;
}

ul {
  list-style: none;
  padding: 0;
  color: white;
}
