body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #000000;
}

#amount {
  margin-top: 5px;
  margin-bottom: 25px;
  font-size: 1.6rem;
  height: 2em;
}

#amountLabel {
  color: #000000;
  font-size: 150%;
}

.dice-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.dice img {
  width: 90px;
  height: 90px;
  cursor: pointer;
  filter: drop-shadow(0 0 5px #878787);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.dice img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px #ffffff);
}

#result-text {
  margin-top: 50px;
  font-size: 1.6rem;
  color: #000000;
  height: 2em;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1080deg); } /* 3 full spins */
}

.rolling {
  animation: rotate 3s linear;
}
