* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgba(10, 13, 11, 1);
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 15, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

.loading-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
  letter-spacing: 2px;
  text-align: center;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(1); }
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 13, 11, 0.9);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #00eaff;
}

.nav a {
  text-decoration: none;
  color: #ccc;
  margin-left: 1.2rem;
  transition: color 0.3s;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: #00eaff;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00eaff;
}

.hero p {
  max-width: 600px;
  color: #ccc;
  margin-top: 1rem;
  font-size: 1.1rem;
}
.hero .highlight {
  color: #0094ff;
}
.hero button {
  margin-top: 2rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(90deg, #00eaff, #0094ff);
  border: none;
  border-radius: 8px;
  color: #0b0b0f;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero button a {
  text-decoration: none;
  color: #0b0b0f;
}

.hero button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0094ff, #00eaff);
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 13, 11, 0.9);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}