body {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  text-align: center;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 700px;
  padding: 20px;
}

.warning-text {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 2px;
}

.danger-btn {
  background: linear-gradient(145deg, #8b0000, #ff0000);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 24px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.danger-btn:hover {
  background: linear-gradient(145deg, #ff0000, #8b0000);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-container {
  margin-top: 30px;
  opacity: 0;
  transition: opacity 1s ease;
}

.video-container.show {
  opacity: 1;
}

.hidden {
  display: none;
}