.cw-overlay {
  position: fixed;
  inset: 0;
  background:rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
}

.cw-overlay.hidden {
  display: none;
}

.cw-box {
  max-width: 700px;
  color: #cc0000;
  font-family: "Courier New", monospace;
  text-align: center;
  padding: 2rem 2.5rem;
  border: 2px solid #cc0000;
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 25px #cc0000aa;
  animation: flicker 0.15s infinite alternate;
}

.cw-box h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-shadow: 0px 0px 8px red;
  letter-spacing: 2px;
}

.cw-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.cw-box button {
  margin-top: 1.5rem;
  background: black;
  color: #cc0000;
  border: 2px solid #cc0000;
  padding: 0.6rem 1.4rem;
  font-family: "Courier New", monospace;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.cw-box button:hover {
  background: red;
  color: black;
}

@keyframes flicker {
  from { opacity: 0.97; }
  to   { opacity: 1; }
}