* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
  background-color: #000000;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Vídeo full screen, cubriendo siempre */
video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Capa oscura y texto centrado */
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

a {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #ffd66b;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}
