.game-container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background: #f0f8ff;
  border-radius: 15px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

h2 {
  text-align: center;
  color: #2e8b57;
}

.step {
  margin: 20px 0;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.option {
  background: #fff;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  flex: 1 1 calc(50% - 30px);
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover {
  background-color: #e0ffe0;
  border-color: #2e8b57;
}

.option.selected {
  background-color: #2e8b57;
  color: white;
  border-color: #2e8b57;
}

.result {
  margin-top: 20px;
  padding: 15px;
  background: #fffbcc;
  border-radius: 10px;
  display: none;
  text-align: center;
  font-weight: bold;
  color: #333;
}

.result button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.result button:hover {
  background-color: #246b45;
}

.clues p {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 4px solid #2e8b57;
}














.safari-start-btn {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 12px;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.safari-start-btn:hover {
  background-color: #e6b800;
}































