body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #1a1a1a;
  color: white;
  font-family: sans-serif;
  margin: 0;
}

.site-header {
  width: 100%;
  padding: 20px 0 20px 20px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 20px;
}

.wheels-wrapper {
  background-color: #333;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.wheels-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

canvas {
  border-radius: 50%;
  background: white;
  width: 300px;
  height: 300px;
}

button#spin {
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  background-color: #555;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

button#spin:hover {
  background-color: #777;
}

#result {
  margin-top: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #ffcc00;
  min-height: 30px;
}

.site-footer {
  width: 100%;
  padding: 15px 0;
  background-color: #2a2a2a;
  color: #ccc;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .wheels-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  canvas {
    width: 90vw;
    max-width: 300px;
    height: auto;
  }
}
