* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #05060d;
  font-family: sans-serif;
  color: #e8e4d9;
}

.ship {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.3; }
}

.ship-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #1a1d26;
  border-bottom: 3px solid #2e3342;
}

.ship-nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.ship-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8a8fa0;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.ship-nav-links a:hover {
  background: #232734;
  color: #7fd4ff;
}

.nav-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a4f60;
}

.ship-nav-links a.active .nav-light {
  background: #4ecf4e;
  box-shadow: 0 0 5px #4ecf4e;
}

.status-led {
  position: absolute;
  top: 76px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #4a7a9a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ecf4e;
  box-shadow: 0 0 5px #4ecf4e;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ship-content {
  position: relative;
  z-index: 5;
  max-width: 500px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: rgba(60, 170, 255, 0.05);
  border: 1px solid rgba(100, 190, 255, 0.25);
  border-radius: 8px;
}

.ship-content a {
  color: #ffd98a;
}

.ship-content-wide {
  max-width: 750px;
  padding: 2.5rem 3rem;
  font-size: 18px;
  line-height: 1.7;
}

.post-image {
  margin: 1.5rem 0;
  padding: 6px;
  background: #05060d;
  border: 1px solid rgba(127, 212, 255, 0.3);
  box-shadow: 0 0 12px rgba(60, 170, 255, 0.15);
  border-radius: 8px; /* matches hologram panel */
  overflow: hidden;
}

.post-image img {
  display: block;
  width: 100%;
  border-radius: 4px; /* slightly smaller so it nests inside the padding */
}

.post-image figcaption {
  font-size: 14px;
  color: #4a7a9a;
  letter-spacing: 0.05em;
  margin-top: 6px;
  text-align: center;
}