#maldives-lottery-ui {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #0d1b2a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.lottery-header h2 {
  color: #fbbf24;
  margin-bottom: 5px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}
.countdown div {
  background: #1b263b;
  padding: 10px;
  border-radius: 8px;
  color: #fbbf24;
  font-weight: bold;
}
.lottery-section {
  margin: 20px 0;
}
.lottery-numbers, .lottery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lottery-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fbbf24;
  font-weight: bold;
  font-size: 16px;
  background: #1b263b;
}
.lottery-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}
