/* Body background */
body {
  background: url("hero-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: white;
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}
/* Navigation Bar Container */
nav {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
/* Navigation links */

}
nav a {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
/* Galaxy Style Navigation Buttons */
nav a {
  background: linear-gradient(145deg, #0a0f2c, #1c1f3b);
  color: #00ffff;
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 5px;
  box-shadow: 0 0 8px #00ffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  background: linear-gradient(145deg, #1c1f3b, #0a0f2c);
  color: #ffcc00;
  box-shadow: 0 0 12px #ffcc00;
  transform: scale(1.05);
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* Title with stars */
.star-title {
  position: relative;
  display: inline-block;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px #0fffff, 0 0 20px #0fffff;
  margin-top: 30px;
}

/* Star before the S */
.star-title::before {
  content: "✦";
  position: absolute;
  left: -40px; /* adjust closer/further */
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0fffff;
  text-shadow: 0 0 6px #0fffff, 0 0 12px #0fffff;
  @keyframes float-title {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
}

/* Star after the k */
.star-title::after {
  content: "✦";
  position: absolute;
  right: -40px; /* adjust closer/further */
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0fffff;
  text-shadow: 0 0 6px #0fffff, 0 0 12px #0fffff;
  animation: float-title 5s ease-in-out infinite;
}

/* Headings */
h1 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 10px #0fffff, 0 0 20px #0fffff;
  margin-top: 30px;
}
h2 {
  font-size: 28px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 5px #0fffff;
  margin-bottom: 20px;
}

/* Paragraphs */
p {
  color: #ffffff;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}

/* Footer */
footer {
  color: #cccccc;
  font-size: 0.9em;
  text-align: center;
  margin-top: 30px;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}
/* Twinkle animation just for the stars */
@keyframes twinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.star-title::before,
.star-title::after {
  animation: twinkle 2s infinite alternate;
}