#rzEventIcon {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2b2b, #650000);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 0 18px #ff0000;
}

#rzEventPopup {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid #b30000;
  border-radius: 12px;
  color: #fff;
  z-index: 99999;
  display: none;
  box-shadow: 0 0 25px #600;
  font-family: Arial, sans-serif;
}

.rz-event-header {
  padding: 14px;
  font-weight: bold;
  background: #7a0000;
  text-align: center;
}

.rz-event-item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.rz-event-name {
  font-weight: bold;
  color: #ffcc66;
}

.rz-event-time {
  font-size: 13px;
  color: #ccc;
}

.rz-event-countdown {
  margin-top: 5px;
  color: #00ff99;
  font-weight: bold;
}

.rz-event-status {
  margin-top: 5px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
}

.rz-status-active {
  color: #ffffff;
  background: #00a651;
  box-shadow: 0 0 8px #00ff88;
}

.rz-status-offline {
  color: #ffffff;
  background: #555;
}