#gefwarn-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: radial-gradient(circle at center, rgba(120,0,0,.98), rgba(0,0,0,.96));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gefwarnPulseBg 1.2s infinite;
}

.gefwarn-alarm-box {
  width: min(850px, 92vw);
  padding: 42px;
  border-radius: 26px;
  text-align: center;
  color: white;
  background: rgba(40,0,0,.88);
  border: 2px solid rgba(255,80,80,.9);
  box-shadow: 0 0 70px red, inset 0 0 40px rgba(255,0,0,.25);
}

.gefwarn-alarm-badge {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 20px red;
}

.gefwarn-alarm-box h1 {
  font-size: clamp(42px, 7vw, 84px);
  margin: 12px 0;
}

.gefwarn-alarm-box h2 {
  font-size: 28px;
  margin: 8px 0;
}

.gefwarn-alarm-box p {
  font-size: 20px;
  opacity: .95;
}

#gefwarn-confirm-btn {
  margin-top: 26px;
  padding: 16px 30px;
  border: 0;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

#gefwarn-popup-v3 {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2147483646;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,155,0,.96);
  color: #111;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 0 35px orange;
}

@keyframes gefwarnPulseBg {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

#gefwarn-mini-update {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2147483646;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(20,20,20,.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 0 35px rgba(255,0,0,.55);
  font-size: 16px;
  font-weight: 800;
}

/* GEFWARN SMS-Style Top Notification */
#gefwarn-mini-update {
  top: 18px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: min(760px, calc(100vw - 32px)) !important;
  min-height: 64px;
  padding: 14px 22px !important;
  border-radius: 22px !important;
  background: rgba(12, 14, 20, .92) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 34px rgba(255, 0, 0, .38) !important;
  backdrop-filter: blur(14px);
  text-align: center;
  animation: gefwarnSmsDrop .35s ease-out, gefwarnSmsGlow 1.6s infinite;
}

.gefwarn-mini-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,0,0,.22);
  border: 1px solid rgba(255,80,80,.45);
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 900;
}

.gefwarn-mini-title {
  margin-top: 7px;
  font-size: 17px;
  font-weight: 900;
}

.gefwarn-mini-note {
  margin-top: 3px;
  font-size: 13px;
  opacity: .82;
}

@keyframes gefwarnSmsDrop {
  from { opacity: 0; transform: translate(-50%, -18px) scale(.96); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes gefwarnSmsGlow {
  0%,100% { box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 26px rgba(255,0,0,.32); }
  50% { box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 46px rgba(255,0,0,.58); }
}

/* GEFWARN Banner Farben nach Stufe */
#gefwarn-mini-update[data-level="GRUEN"],
#gefwarn-mini-update[data-level="GRÜN"] {
  border-color: rgba(34,197,94,.55) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 34px rgba(34,197,94,.45) !important;
}

#gefwarn-mini-update[data-level="GRUEN"] .gefwarn-mini-pill,
#gefwarn-mini-update[data-level="GRÜN"] .gefwarn-mini-pill {
  background: rgba(34,197,94,.22) !important;
  border-color: rgba(34,197,94,.55) !important;
}

#gefwarn-mini-update[data-level="GELB"] {
  border-color: rgba(250,204,21,.60) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 34px rgba(250,204,21,.45) !important;
}

#gefwarn-mini-update[data-level="GELB"] .gefwarn-mini-pill {
  background: rgba(250,204,21,.22) !important;
  border-color: rgba(250,204,21,.60) !important;
}

#gefwarn-mini-update[data-level="ORANGE"] {
  border-color: rgba(249,115,22,.65) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 38px rgba(249,115,22,.50) !important;
}

#gefwarn-mini-update[data-level="ORANGE"] .gefwarn-mini-pill {
  background: rgba(249,115,22,.24) !important;
  border-color: rgba(249,115,22,.65) !important;
}

#gefwarn-mini-update[data-level="ROT"] {
  border-color: rgba(239,68,68,.75) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 46px rgba(239,68,68,.65) !important;
}

#gefwarn-mini-update[data-level="ROT"] .gefwarn-mini-pill {
  background: rgba(239,68,68,.25) !important;
  border-color: rgba(239,68,68,.75) !important;
}

#gefwarn-mini-update[data-level="SCHWARZ"] {
  border-color: rgba(255,255,255,.55) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.65), 0 0 50px rgba(255,255,255,.35) !important;
}

#gefwarn-mini-update[data-level="SCHWARZ"] .gefwarn-mini-pill {
  background: rgba(0,0,0,.45) !important;
  border-color: rgba(255,255,255,.55) !important;
}
