
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  height: 100%;
}
#bg-video {
  position: fixed;
  top: 0; left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 1.1em;
  margin-bottom: 1em;
}
.profiles {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.profile {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  width: 120px;
}
.profile img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 5px;
}
.cta-button {
  padding: 15px 25px;
  font-size: 1.2em;
  background: #ff416c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #ff4b2b;
}
@media (max-width: 600px) {
  h1 { font-size: 1.5em; }
  .profiles { flex-direction: column; align-items: center; }
}
