body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b1c2c;
    color: #b3e5fc;
    margin: 0;
    padding: 0;
  }
  
  header {
    padding: 2rem;
    background: linear-gradient(black, #112233);
    text-align: center;
  }
  
  header img {
    height: 48px;
  }
  
  h1 {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  
  .quote {
    font-style: italic;
    color: #80deea;
  }
  
  main {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .button {
    display: inline-block;
    background-color: #00796b;
    color: white;
    padding: 0.8em 1.2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1.5rem;
  }
  /* TOS-style Spinning Shuttle */
#shuttle-container {
    margin: 20px auto;
    text-align: center;
  }
  
  .shuttle-gif {
    max-width: 480px; /* formerly 320px */
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(33, 211, 255, 0.6);
    transition: transform 0.2s ease-in;
  }
  
  }
  
  .shuttle-gif:hover {
    transform: scale(1.05);
  }
  
  .caption {
    font-size: 0.9rem;
    color: #a0d7ff;
    margin-top: 0.4rem;
    font-style: italic;
  }
  
  /* === Review Form Styles === */
.rating-final {
  background-color: #112233;
  color: #b3e5fc;
  border-top: 2px dashed #80deea;
  padding: 30px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  border-radius: 8px;
}

.rating-final select,
.rating-final textarea,
.rating-final input[type="email"] {
  background-color: #0b1c2c;
  color: #b3e5fc;
  border: 1px solid #80deea;
  font-size: 1em;
  padding: 10px;
  border-radius: 6px;
  margin-top: 8px;
  width: 80%;
}

.rating-final textarea {
  resize: vertical;
}

.rating-final button[type="submit"] {
  background-color: #00796b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.3s ease;
}

.rating-final button[type="submit"]:hover {
  background-color: #009688;
}

.archive-link {
  background-color: #263238;
  color: #80deea;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 1rem;
  transition: background 0.3s ease;
}

.archive-link:hover {
  background-color: #37474f;
}
@keyframes pulse {
  from { box-shadow: 0 0 8px #ff6f00; }
  to { box-shadow: 0 0 16px #ffa726; }
}
/* General body styles */
body {
  background-color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0; /* Remove default margin */
}

/* Hover hint text */
.hover-hint {
  font-size: 1rem;
  color: #94a3b8; /* Subtle text color */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

body:hover .hover-hint {
  opacity: 1;
}

/* Navigation styles (Next button) */
nav {
  align-self: flex-end;
  margin-right: 3em;
  opacity: 0; /* Button starts invisible */
  transition: opacity 0.5s ease;
}

body:hover nav {
  opacity: 1; /* Button fades in on hover */
}

nav a {
  color: #fca5a5;
  background-color: #334155;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  text-decoration: none;
}

nav a:hover {
  background-color: #475569;
}

/* Print styles */
@media print {
  body {
    background-color: #fff;
    color: #000;
  }
  nav {
    display: none;
  }
}

/* General body styles */
body {
  background-color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Hover hint text */
.hover-hint {
  font-size: 1rem;
  color: #94a3b8; /* Subtle text color */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

body:hover .hover-hint {
  opacity: 1;
}

/* Navigation styles (Next button) */
nav {
  align-self: flex-end;
  margin-right: 3em;
  opacity: 0; /* Button starts invisible */
  transition: opacity 0.5s ease;
}

body:hover nav {
  opacity: 1; /* Button fades in on hover */
}

nav a {
  color: #fca5a5;
  background-color: #334155;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  text-decoration: none;
}

nav a:hover {
  background-color: #475569;
}

/* Print styles */
@media print {
  body {
    background-color: #fff;
    color: #000;
  }
  nav {
    display: none;
  }
}
/* Hover area styles */
.hover-area {
  width: 200px; /* Adjust size of hover area */
  height: 200px;
  position: relative;
  background-color: transparent; /* Invisible but functional */
  border: 1px dashed #94a3b8; /* Optional: Add a visible border for debugging */
}

.hover-area:hover .hover-hint {
  opacity: 1;
}

.hover-hint {
  font-size: 1rem;
  color: #94a3b8; /* Subtle text color */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevent interaction with the text */
}

/* Navigation styles (Next button) */
nav {
  align-self: flex-end;
  margin-right: 3em;
  opacity: 0; /* Button starts invisible */
  transition: opacity 0.5s ease;
}

.hover-area:hover + nav {
  opacity: 1; /* Button fades in only when hover area is active */
}

nav a {
  color: #fca5a5;
  background-color: #334155;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  text-decoration: none;
}

nav a:hover {
  background-color: #475569;
}
.hover-area {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.hover-hint {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.terminal-box {
  background-color: #000;           /* Black background */
  padding: 1em;
  border: 2px solid #0f0;           /* Neon green border */
  font-family: 'Courier New', monospace;
  color: #0f0;                      /* Green text */
  box-shadow: 0 0 8px #0f0;         /* Glowy effect */
  max-width: 75ch;
  margin-top: 1em;
}

.terminal-box h4 {
  color: #0f0;
  margin-bottom: 0.5em;
}

.terminal-box pre {
  white-space: pre-wrap;
  margin: 0;
}