body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Courier New', monospace;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 0, 30, 0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: flicker 3s infinite;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.escape {
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: 0.3s ease;
}

.escape:hover {
  background-color: #fff;
  color: #000;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.4; }
  60% { opacity: 0.7; }
}