/* General styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.game-container {
  background-color: rgba(255,255,255,0.95);
  padding: 20px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 600px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

header p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.score-board {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
  font-weight: bold;
}

.game-area {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}

.bomb {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #ff4e50, #f9d423);
  border-radius: 50%;
  cursor: pointer;
  animation: float 5s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
}

.bomb:hover {
  transform: scale(1.2);
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-400px); }
}

.controls {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  background-color: #ff4e50;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover:not(:disabled) {
  background-color: #f9d423;
  color: black;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
