*{
  margin: 0;
  padding: 0;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(-45deg, #0c1a2c, #0f2a47, #0c1a2c, #0f2a47);
  background-size: 400% 400%;
  color: #f1f5f9;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  animation: gradientBG 20s ease infinite;
  position: relative;
}

/* Background gradient animation */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animated Background Elements */
.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(12, 140, 207, 0.15) 0%,
    rgba(12, 140, 207, 0) 70%
  );
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  background: radial-gradient(
    circle,
    rgba(6, 172, 236, 0.1) 0%,
    rgba(6, 172, 236, 0) 70%
  );
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  background: radial-gradient(
    circle,
    rgba(11, 140, 208, 0.1) 0%,
    rgba(11, 140, 208, 0) 70%
  );
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Binary Code Rain Effect */
.binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.binary-digit {
  position: absolute;
  color: #06acec;
  font-family: "Courier New", monospace;
  font-size: 14px;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* HEADER */
.navbar {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 26, 44, 0.8);
}


/* Navbar styles */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #06acec, #0c8cd0);
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(6, 172, 236, 0.3);
}
.logo-text {
  color: rgb(163, 163, 163);
  font-size: 20px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #06acec;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.nav-links a:hover {
  color: #06acec;
}
.nav-links a:hover::after {
  width: 100%;
}

/* MAIN */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  text-align: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 5;
}

/* Main box */
.main-box {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

/* Coming Soon Container with Enhanced Background */
.coming-soon-container {
  position: relative;
  padding: 60px 40px;
  border-radius: 24px;
  background: rgba(12, 26, 44, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.coming-soon-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #06acec,
    #0c8cd0,
    #06acec,
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Coming Soon Title with enhanced background */
.coming-title {
  font-size: 80px;
  font-weight: 800;
  margin: 0;
  color: #06acec;
  animation: popInInfinite 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes popInInfinite {
  0% {
    transform: scale(1);
    text-shadow: 0 0 30px rgba(6, 172, 236, 0.3);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 50px rgba(6, 172, 236, 0.5);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 30px rgba(6, 172, 236, 0.3);
  }
}

.description {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ABOUT SECTION */
.about {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatAbout 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 172, 236, 0.1);
}
.about:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
@keyframes floatAbout {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(6px);
  }
}

/* FOOTER */
.footer {
  width: 100%;
  padding: 22px 24px;
  font-size: 14px;
  color: #cbd5e1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 26, 44, 0.8);
}
.footer .date{
  margin-bottom: 20px;
}
.footer .date a{
  color: #06acec;
}
.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #06acec;
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-title {
    font-size: 60px;
  }

  .coming-soon-container {
    padding: 40px 20px;
  }

  .main {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .coming-title {
    font-size: 48px;
  }

  .coming-soon-container {
    padding: 30px 15px;
  }

  .footer {
    gap: 10px;
    text-align: center;
  }
}
