body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: black;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.content {
  text-align: center;
  padding: 5vh 2rem;
  position: relative;
  z-index: 1;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

h1 .pink {
  color: hotpink;
  text-shadow: 0 0 10px hotpink;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  background: none;
  border: 2px solid white;
  color: white;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: hotpink;
  color: black;
  border-color: hotpink;
}