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

/* Body + video background */
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Canvas for mouse trail */
#trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Overlay centered with transparent background */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 50px 70px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.overlay h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}

.overlay h1 span {
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.btn {
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn.men {
  background: linear-gradient(45deg, #007bff, #00bfff);
}

.btn.women {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .overlay {
    width: 90%;
    padding: 40px 20px;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }
}
