/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 40;
  background: black;
  color: white;
  overflow-x: hidden;
  cursor: none; /* Hide normal cursor */
}

/* Starfield background */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

/* Spaceship Cursor */
#cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url("assets/spaceship.png") no-repeat center/contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 0 10%;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  text-shadow: 0 0 10px cyan, 0 0 20px blue;
}

.hero h1 span {
  color: cyan;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: cyan;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px cyan;
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px cyan;
}

.hero img {
  max-width: 600px;
  filter: drop-shadow(0 0 20px rgba(0,255,255,0.8));
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(0,255,255,0.8));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(0,255,255,1));
  }
}

/* Glassmorphism Navbar */
.glass-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.glass-nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.glass-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.glass-nav ul li a:hover {
  color: #00f6ff;
  text-shadow: 0 0 10px #00f6ff;
}
.glass-nav ul li a.active {
  color: #00f6ff;
  font-weight: bold;
  text-shadow: 0 0 15px #00f6ff, 0 0 30px #00f6ff;
  border-bottom: 2px solid #00f6ff;
  padding-bottom: 3px;
}
/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5%;
  }

  .hero img {
    margin-top: 30px;
    max-width: 80%;
  }

  .glass-nav {
    width: 90%;
    flex-direction: column;
    gap: 10px;
  }

  .glass-nav ul {
    gap: 15px;
  }
}

