/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  overflow-x: hidden;
  color: #fff;
  background: #000;
}

/* HERO */
.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* MODAL */
.modal{display:none;position:fixed;z-index:9999;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);backdrop-filter:blur(6px);justify-content:center;align-items:center;}
.modal-content{position:relative;background:radial-gradient(circle at top,rgba(15,15,20,.95),rgba(0,0,0,.9));border:2px solid rgba(0,234,255,.5);box-shadow:0 0 25px rgba(255,0,128,.4),0 0 40px rgba(0,234,255,.3);padding:50px 40px;border-radius:15px;text-align:center;max-width:420px;width:90%;}
.modal-content h2{color:#fff;text-shadow:0 0 10px #ff007f,0 0 20px #00eaff;margin-bottom:15px;}
.modal-content p{color:#ccc;margin-bottom:25px;}
.modal-content input{width:100%;padding:12px;border-radius:8px;border:none;background:rgba(255,255,255,.1);color:#fff;font-size:1em;margin-bottom:25px;outline:none;transition:.3s;}
.modal-content input:focus{box-shadow:0 0 15px rgba(0,234,255,.6);border:1px solid #00eaff;background:rgba(255,255,255,.2);}
.btn-modal{padding:12px 35px;border:none;border-radius:25px;background:linear-gradient(135deg,#00eaff,#00bfff);color:#000;font-weight:600;cursor:pointer;transition:.3s;box-shadow:0 0 25px rgba(0,234,255,.6);}
.btn-modal:hover{background:linear-gradient(135deg,#ff007f,#ff00cc);color:#fff;box-shadow:0 0 30px rgba(255,0,127,.7);}
.close{color:#fff;position:absolute;right:15px;top:10px;font-size:1.8em;cursor:pointer;transition:.3s;}
.close:hover{color:#00eaff;transform:scale(1.1);}


.container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(60%) saturate(120%);
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.subtitle {
  font-size: 1.1em;
  color: #bbb;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.content h1 {
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 15px #ff007f, 0 0 30px #ff007f;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6); /* Soft shadow */
  border: 3px solid #00eaff; /* Light cyan border */
}

.countdown span {
  font-size: 4em; /* Increase size of numbers */
  font-weight: bold;
  color: #ff007f; /* Neon pink color for numbers */
  text-shadow: 0 0 2px #ff007f, 0 0 4px #ff007f; /* Much softer glow effect */
  padding: 20px 40px; /* Add padding for a bigger, cleaner look */
  border-radius: 15px; /* Rounded corners */
}

.countdown p {
  font-size: 1.1em;
  color: #ddd;
  margin-top: 10px; /* Space between numbers and labels */
  letter-spacing: 1px;
  text-transform: uppercase; /* Make labels uppercase for consistency */
}


/* BUTTON */
.btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  color: #111;
  background: #00eaff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
  margin-bottom: 40px;
}
.btn:hover {
  background: #00b8cc;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.8);
}
.btn.small {
  padding: 8px 20px;
  font-size: 0.85em;
}

/* BODY AND HTML */
html, body {
  height: 100%; /* Ensure the body and HTML take full height */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* MAIN CONTENT AREA */
.main-content {
  flex-grow: 1; /* Ensures content takes available space above the footer */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Align the main content (e.g., countdown) to the center */
  padding-bottom: 100px; /* Prevent footer from overlapping */
}

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0); /* Transparent background */
  padding: 0px 0; /* Reduced padding for a shorter footer */
  text-align: center; /* Center the text horizontally */
  color: #aaa;
  font-size: 1em; /* Adjusted font size for larger text */
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: none; /* No shadow */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
}

/* Copyright text styling */
.copyright {
  color: #666; /* Lighter gray for copyright text */
  font-size: 1.2em; /* Increased font size for larger text */
  margin-top: 2; /* Remove margin */
  position: relative;
  bottom: 5px;
}



/* Social icons styling */
.socials img {
  width: 20px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.socials img:hover {
  filter: drop-shadow(0 0 10px #ff007f);
  transform: scale(1.1);
}

/* Copyright text styling */
.copyright {
  margin-top: 10px;
  color: #666;
  font-size: 0.75em;
}


/* SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
  filter: blur(8px);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.launch-date {
  font-size: 1.2em;
  color: #ff007f; /* Neon pink to match the countdown theme */
  opacity: 0;
  animation: fadeIn 2s forwards; /* Fade in effect */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.launch-date {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
  text-align: center;
  letter-spacing: 1.5px;
  margin-top: 30px;
}

