body {
  margin: 0;
  background: black;
  font-family: 'Arial', sans-serif;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ff1a1a;
  text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0044;
}

.hero-text h1 {
  font-size: 5rem;
  letter-spacing: 5px;
  margin: 0;
}

