/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 10, 30, 0.85), rgba(0, 0, 0, 0.9));
  z-index: -1;
}

/* HEADER */
.header {
  padding: 20px 50px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 45px;
}

.logo-text {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* MAIN */
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 800px;
  animation: fadeUp 1.5s ease;
}

.glow {
  font-size: 48px;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.subtitle {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.7;
}

.divider {
  width: 80px;
  height: 3px;
  background: gold;
  margin: 30px auto;
}

/* STATUS */
.status {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pulse {
  width: 10px;
  height: 10px;
  background: gold;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* CONTACT */
.contact {
  margin-top: 25px;
  font-size: 15px;
  opacity: 0.8;
}

/* FOOTER */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
