/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a; /* Unified dark background */
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px; 
  background-color: #000000; /* Solid black navbar */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff; /* White logo text */
  text-decoration: none; /* No underline */
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  display: inline;
}

.nav-links ul li a {
  text-decoration: none;
  color: #ffffff; /* White nav link text */
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: #ff00cc; /* Pink on hover */
}

.nav-links ul li.active a {
  color: #3333ff; /* Blue for active link */
  font-weight: bold;
}

.menu-btn {
  display: none; /* Hidden by default on large screens */
  width: 25px;
  height: 25px; /* Consistent size */
  background-color: #1a1a1a; /* Slightly lighter black for contrast against navbar */
  position: relative;
  cursor: pointer;
}

/* Hamburger lines */
.menu-btn::before,
.menu-btn::after,
.menu-btn span {
  content: '';
  position: absolute;
  width: 20px; /* Line length */
  height: 2px; /* Line thickness */
  background-color: #ffffff; /* White lines */
  left: 2.5px; /* Center horizontally */
  transition: all 0.3s ease; /* Smooth animation for potential toggle */
}

.menu-btn::before {
  top: 5px; /* Top line */
}

.menu-btn span {
  top: 11.5px; /* Middle line */
}

.menu-btn::after {
  bottom: 5px; /* Bottom line */
}

/* Coming Soon Section */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px); /* Full height minus navbar height */
}

.title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

/* Glow Animation */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ff00cc, 0 0 10px #ff00cc, 0 0 20px #ff00cc, 0 0 40px #ff00cc;
  }
  100% {
    text-shadow: 0 0 10px #3333ff, 0 0 20px #3333ff, 0 0 40px #3333ff, 0 0 80px #3333ff;
  }
}

/* Background Animation */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 0, 204, 0.1), rgba(51, 51, 255, 0.1));
  animation: pulse 5s infinite alternate;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
    background-color: #000000; /* Ensure black navbar on mobile */
  }

  .navbar .logo {
    font-size: 1.2rem; /* Reduced logo size for smaller screens */
    color: #ffffff; /* White logo */
  }

  .menu-btn {
    display: block; /* Visible on smaller screens */
    width: 25px;
    height: 25px; /* Consistent size */
    background-color: #1a1a1a; /* Slightly lighter black for contrast */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 50px; /* Adjusted to fit smaller navbar */
    right: 10px;
    background-color: #000000; /* Black background for mobile menu */
    border-radius: 8px;
    padding: 10px;
  }

  .nav-links.mobile-menu {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px; /* Reduced gap for compactness */
  }

  .nav-links ul li a {
    font-size: 0.9rem; /* Reduced font size for smaller screens */
    color: #ffffff; /* White text */
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 1.5rem; /* Kept as previously adjusted */
  }
}