/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling with a dark, ominous gradient background */
body {
  font-family: 'Creepster', cursive, sans-serif;
  background: linear-gradient(135deg, #000, #200);
  color: #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  position: relative;
}

/* Container styling for a mysterious look */
.container {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
  border: 1px solid darkred;
  margin-bottom: 2rem;
}

/* Heading styling with an eerie glow */
h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px red;
}

/* Image styling for the crashing building, scaled 5x smaller */
.crash-img {
  width: 100%;
  max-width: 384px;  /* 1920/5 = 384px */
  height: auto;
  margin: 1rem 0;
}

/* Paragraph styling */
p {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* Specific style for "suspended" text with a flickering effect */
.coming-soon {
  color: darkred;
  font-weight: bold;
  animation: flicker 1.5s infinite alternate;
}

/* Flicker animation for an unsettling feel */
@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Styling for the play button */
button {
  background-color: darkred;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #a00;
}

/* Footer styling for the movie disclaimer and legal contact */
footer {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  text-align: center;
}

.disclaimer,
.legal {
  font-size: 0.8rem;
  color: #888;
  margin: 0.2rem 0;
}

.legal a {
  color: #888;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
  .container {
    padding: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
