/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at top, #000010, #000000);
  color: #00ffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* === Common Section Styling === */
section {
  width: 90%;
  max-width: 700px;
  margin: 30px 0;
  padding: 25px 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(0, 10, 20, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

section:hover {
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.4);
  transform: scale(1.02);
}

h2 {
  font-family: "Orbitron", sans-serif;
  color: cyan;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px cyan, 0 0 15px #00ffff77;
  letter-spacing: 1.5px;
}

/* === Mission Planning Inputs === */
.mission-planning-system input {
  display: block;
  width: 90%;
  margin: 12px auto;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 30, 0.7);
  color: #e6faff;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.mission-planning-system input:focus {
  border-color: cyan;
  box-shadow: 0 0 12px cyan;
}

/* === Fuel Management === */
.fuel-management {
  text-align: center;
}

.fuel-management span {
  font-size: 1.2rem;
  font-weight: 600;
}

.fuel-management button {
  margin: 10px 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: "Orbitron", sans-serif;
  border-radius: 12px;
  border: 1px solid cyan;
  background: rgba(0, 0, 30, 0.7);
  color: cyan;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fuel-management button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 12px cyan;
}

/* === Launch Mission Section === */
.launch-mission {
  text-align: center;
}

#launch-button {
  padding: 12px 25px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  border-radius: 12px;
  border: 1px solid cyan;
  background: rgba(0, 0, 30, 0.8);
  color: cyan;
  cursor: pointer;
  transition: all 0.3s ease;
}

#launch-button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 15px cyan;
}

#countdown {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #00ffff;
  text-align: center;
  margin-top: 15px;
  text-shadow: 0 0 8px cyan, 0 0 15px #00ffff77;
}

/* === Dashboard / Mission Log === */
.dashboard ol {
  list-style: decimal inside;
  color: #e6faff;
  padding-left: 0;
}

.dashboard li {
  margin: 10px 0;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 30, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  transition: 0.3s;
}

.dashboard li:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 18px cyan;
}

/* === Astronaut Details === */
.astronaut-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#astronaut-log p {
  margin: 6px 0;
  padding: 10px 16px;
  width: 80%;
  text-align: center;
  border-radius: 12px;
  background: rgba(0, 0, 30, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  font-family: "Orbitron", sans-serif;
  transition: 0.3s;
}

#astronaut-log p:hover {
  background: rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 18px cyan;
  transform: translateY(-2px);
}

/* === Responsive Styling === */
@media (max-width: 768px) {
  section {
    width: 95%;
    padding: 20px;
  }

  .mission-planning-system input {
    width: 95%;
  }

  #astronaut-log p {
    width: 95%;
  }
}
