body {
  margin: 0;
  font-family: sans-serif;
  background: #000;
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #00ccff;
  text-shadow: 0 0 10px rgba(0,200,255,0.7);
}

.overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  z-index: 2;

}

h1 {
  font-size: clamp(28px, 5vw, 64px);
  margin: 0;
  line-height: 1.2;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.6;
}
