/* Reset */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Orbitron', sans-serif;
  height: 100%;
  background: black;
}

/* Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/moonpilotbg2.jpg') no-repeat center center/cover;
  z-index: 0;
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

/* Title with flicker effect */
.flight-plan-title {
  font-size: 48px;
  color: #00ffff;
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,  
    -2px 2px 0 #000,  
    2px 2px 0 #000,  /* Black outline */
    0 0 5px #00ffff, 
    0 0 10px #00ffff, 
    0 0 20px #ff00ff, 
    0 0 40px #ff00ff;
  animation: neonFlicker 4s infinite alternate;
  margin-bottom: 50px;
}


/* Flicker Animation */
@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

/* Plans Layout */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.plan-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ffff;
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 0 25px #ff00ff, 0 0 50px #ff00ff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #00ffff, 0 0 70px #ff00ff;
}

/* Plan Titles */
.plan-card h2 {
  color: #ff00ff;
  margin-bottom: 10px;
  font-size: 26px;
}

/* Plan Price */
.price {
  color: #00ffff;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Plan Features */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card li {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  background: #00ffff;
  color: black;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn:hover {
  background: #ff00ff;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

/* Footer */
.footer {
  margin-top: 50px;
  color: #00ffff;
  font-size: 14px;
}

.footer a {
  color: #00ffff;
  margin: 0 8px;
  text-decoration: none;
}

.footer a:hover {
  color: #ff00ff;
}

