@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

html, body {
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: #000;
  overflow: hidden;
  color: white;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}

canvas {
  pointer-events: auto !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0d0d0d;
  padding: 10px 20px;
  z-index: 10;
  border-bottom: 1px solid #1a1a1a;
}

.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-logo {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #00eaff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #00eaff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.container {
  position: relative;
  z-index: 5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  pointer-events: none;
}

.container * {
  pointer-events: auto;
}

h1 {
  font-size: 60px;
  font-weight: 800;
  color: #00eaff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  color: #cccccc;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-logo {
    height: 30px;
  }

  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
}
