body {
  background: #0d0d0d;
}

.bozrah-block-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.bozrah-block {
  background: linear-gradient(180deg, #000000 10%, #3b2e00 60%, #c9a200 100%);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  max-width: 320px;
  width: 85vw;
  color: white;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255,215,0,0.4); }
  to { box-shadow: 0 0 30px rgba(255,215,0,0.8); }
}

.bozrah-days {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255,215,0,0.6);
  text-align: center;
}

.label {
  font-size: clamp(13px, 2.5vw, 18px);
  margin-top: 6px;
  opacity: 0.95;
  text-align: center;
}

.event {
  margin-top: 12px;
  font-size: clamp(13px, 2vw, 17px);
  color: #FFD700;
  font-weight: 500;
  text-align: center;
}

.thanks {
  font-size: clamp(11px, 1.8vw, 15px);
  color: #ccc;
  margin-top: 6px;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .bozrah-block {
    padding: 25px 15px;
  }
}
