body {
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #449d8d, #45569b);
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  margin-top: 60px;
}

h1 {
  font-family: "Lobster", cursive;
  font-size: 3rem;
  color: #222;
  margin-bottom: 20px;
}

.coin-container {
  margin: 20px auto;
}

#coin {
  width: 150px;
  height: 150px;
  transition: transform 0.6s ease;
}

#result {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 15px;
}

button {
  padding: 12px 25px;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background: #4CAF50;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #45a049;
  transform: scale(1.05);
}

.scoreboard {
  margin-top: 30px;
  font-size: 1.2rem;
}

footer {
  margin-top: 135px;
  padding: 15px;
  background: #111;
  color: #eee;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.5px;
}

footer strong {
  color: #2c49a9; /* highlight Devliwa */
}