* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  background-color: #05070b;
  overflow: hidden;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/background.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}
.content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}
h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
h2 {
  font-size: 1.5rem;
  color: #00f7ff;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #00f7ff;
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta:hover {
  background: #ffffff;
  color: #000;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}
