/* Global Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0e0e10;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #0b0b0c;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #6cf;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6cf;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0e0e10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(108,204,255,0.2) 0%, transparent 70%);
  animation: pulse 10s infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

#hero-title {
  font-size: 2.8rem;
  font-family: 'Orbitron', sans-serif;
  color: white;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.highlight {
  color: #6cf;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #aaa;
}

.cta-button {
  margin-top: 5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(to right, #6cf, #58b);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(108, 204, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(108, 204, 255, 0.7);
}

/* Features */
.features {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  background: #111;
}

.feature {
  background: #1c1c2c;
  padding: 2rem;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 20px rgba(108, 204, 255, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: #0b0b0c;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}
