/* Fonts */
.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* Background */
.bg-gradient {
  background: radial-gradient(
      circle at top,
      #0a1a2f,
      #05070d 40%,
      #020409 70%
  );
}

/* Text effects */
.gradient-text {
  background: linear-gradient(90deg, #4fc3ff, #7c6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  text-shadow: 0 0 12px rgba(79, 195, 255, 0.6);
}

/* Navbar links */
.nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: white;
}

/* Sections */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

.section-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-text {
  color: rgba(255,255,255,0.65);
}

/* Links */
.gradient-link {
  background: linear-gradient(90deg, #4fc3ff, #7c6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1.2s ease forwards;
}
