/* 🌌 Fullscreen Video Setup */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  background: black;
  overflow: hidden;
  color: #f0f0f0;
  position: relative;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  z-index: 0;
  transform: scale(0.5);
  transform-origin: top left;
  overflow: hidden;
}
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5; /* BELOW overlay (4), ABOVE video (0) */
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0px,
    rgba(0, 0, 0, 0.25) 2px,
    transparent 2px,
    transparent 6px
  );
}


video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

/* 🧊 Frosted Glass Overlay */
.overlay {
  position: relative;
  z-index: 6; /* above scanlines */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;

  /* 💣 Removed background and blur */
  /* background: rgba(0, 0, 0, 0.4); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */

  border: none;
  border-radius: 0;
  box-shadow: none;
}



/* 🔤 Headline */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

/* ✨ Subtext */
.tagline {
  font-style: italic;
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* 🛰️ Main CTA Button */
.button {
  display: inline-block;
  background: rgb(201, 202, 206);
  color: rgb(44, 44, 44);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin: 1rem 0;
  transition: background 0.3s ease;
}

.button:hover {
  background: #59f;
}

/* 📧 Input Field */
input[type="email"] {
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  width: 250px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-bottom: 1rem;
}

input::placeholder {
  color: #aaa;
}

/* 🚀 Submit Button */
button[type="submit"] {
  padding: 0.6rem 1.4rem;
  border: none;
  background: #36f;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

button:hover {
  background: #59f;
}


/* 🎥 CRT Curved Glow Vignette */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
}

.bluetooth {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 42, 115, 0.2),   /* 🔥 Hot magenta pink */
    rgba(255, 105, 0, 0.15),   /* 🧡 Neon orange */
    rgba(255, 230, 0, 0.1),    /* 💛 Bright yellow */
    rgba(255, 255, 255, 0.03)  /* 🌤️ Soft highlight edge */
  );

  mix-blend-mode: screen;
  opacity: 1;
  animation: glowPulse 6s ease-in-out infinite;
}




@keyframes glowPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.12; }
}


