/* Epilepsy Warning Modal */
.warning-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.warning-content {
  background: #1e1e1e;
  border: 2px solid #e50914;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.warning-content h2 {
  color: #e50914;
  margin-bottom: 15px;
}

.warning-content p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 25px;
}

#continue-warning {
  background-color: #e50914;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

#continue-warning:hover {
  background-color: #b0060f;
}
