body,
html {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  height: 100%;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  max-width: 600px;
  margin-bottom: 30px;
}

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.link-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.link-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.top-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: row; 
  gap: 10px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 15px; 
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 0.9em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Status Boxes Design */
.status-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

.status-box {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  text-align: left;
  transition: transform 0.3s ease;
}

.status-box:hover {
  transform: scale(1.02);
}

.status-box h2 {
  margin-top: 0;
}

.status-box img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  p {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .link-btn {
    padding: 8px 16px;
    margin: 8px;
    font-size: 0.9em;
  }

  .top-nav {
    top: 10px;
    right: 10px;
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    font-size: 0.8em;
    padding: 6px 12px;
    min-width: auto;
  }

  .status-boxes {
    margin-top: 30px;
    gap: 15px;
    padding: 0 10px;
  }

  .status-box {
    padding: 15px;
    width: 100%;
  }

  .content {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  p {
    font-size: 0.95em;
  }

  .link-btn {
    font-size: 0.85em;
  }

  .nav-link {
    font-size: 0.75em;
  }
}
