.bet-amount {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.btn-glow {
  border: rgba(255, 215, 0, 0.7) solid 2px;
  box-shadow: 0 0 10px 3px rgba(255, 215, 0, 0.7);
  transition: box-shadow 0.3s ease;
}

.btn-dimmed {
  opacity: 0.6;
  filter: saturate(60%);
  cursor: pointer;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.btn-dimmed:hover {
  opacity: 0.8;
  filter: saturate(80%);
}
