* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #60a5fa;
}

#game-container {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

#result {
  font-size: 1.2rem;
  margin-bottom: 20px;
  min-height: 80px;
  line-height: 1.5;
}

#choices-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.choice-button {
  background: #3b82f6;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.choice-button i {
  margin-right: 6px;
}

.choice-button:hover {
  background: #2563eb;
  transform: scale(1.05);
}

.footer {
  margin-top: 2rem;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer a {
  color: #3b82f6;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Fix */
@media (max-width: 480px) {
  .choice-button {
    width: 100%;
  }
}
