:root {
  --bg-color: #030208;
  --text-color: #e5e3eb;
  --text-muted: #858099;
  --accent-blue: #3d6eff;
  --accent-purple: #7a3dff;
  --border-color: #1a1726;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Star Field Background Simulation */
.star-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #eee, transparent),
    radial-gradient(1.5px 1.5px at 150px 50px, #fff, transparent),
    radial-gradient(1px 1px at 80px 180px, #ddd, transparent),
    radial-gradient(2px 2px at 250px 300px, #fff, transparent),
    radial-gradient(1px 1px at 350px 80px, #eee, transparent);
  background-repeat: repeat;
  background-size: 550px 550px;
  opacity: 0.25;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.nav-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.coords {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--accent-blue);
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(61, 110, 255, 0.4);
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 2px;
  letter-spacing: 2px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-space {
  border: 1px solid var(--accent-purple);
  color: #fff;
  background: rgba(122, 61, 255, 0.05);
  box-shadow: 0 0 20px rgba(122, 61, 255, 0.15);
}

.btn-space:hover {
  background: var(--accent-purple);
  box-shadow: 0 0 30px rgba(122, 61, 255, 0.5);
  transform: translateY(-2px);
}

/* Sections General */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--accent-purple);
  letter-spacing: 2px;
}

.section-heading h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

/* Manifest Section */
.manifest-content {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifest-content p {
  text-align: justify;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gallery-item {
  border: 1px solid var(--border-color);
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.01);
  transition: border-color 0.3s;
}

.gallery-item:hover {
  border-color: var(--accent-blue);
}

.gallery-image-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(90%) contrast(105%);
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.03);
}

.item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.item-exposure {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Gear Section */
.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gear-list li {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gear-type {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent-blue);
  letter-spacing: 1px;
}

.gear-model {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  font-family: 'Share Tech Mono', monospace;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}
