/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* ================= BACKGROUND VIDEO ================= */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* ================= OVERLAY ================= */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(40, 0, 10, 0.65),
    rgba(10, 0, 0, 0.75)
  );
  z-index: -1;
}

/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.navbar ul {
  display: flex;
  gap: 35px;
  padding: 14px 40px;
  list-style: none;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff4d6d;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* ================= CENTER CARD ================= */
.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 760px);
  padding: 50px 45px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.center-content h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.center-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.92;
}

/* ================= BUTTON ================= */
.main-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #ff4d6d;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 18px;
  transition: 0.35s;
}

.main-btn:hover {
  background: #ff2f55;
  transform: translateY(-4px) scale(1.05);
}

/* ================= ANIMATION ================= */
.fade-in {
  animation: fadeUp 1.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .navbar ul {
    gap: 16px;
    padding: 12px 20px;
  }

  .navbar a {
    font-size: 14px;
  }

  .center-content {
    padding: 30px 24px;
  }

  .center-content h1 {
    font-size: 2.1rem;
  }

  .center-content p {
    font-size: 0.95rem;
  }

  .main-btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {

  .center-content h1 {
    font-size: 1.85rem;
  }

  .center-content p {
    font-size: 0.9rem;
  }
}
