body {
  font-family: 'Arial', sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  margin: 0;
  scroll-behavior: smooth;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: black;
}

.navbar {
  position: sticky;
  top: 0;
  background: #111;
  z-index: 999;
  padding: 0.8rem 0;
  text-align: center;
  overflow-x: auto;
}

.navbar ul {
  margin: 0;
  padding: 0 1rem;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.navbar a {
  text-decoration: none;
  color: #66fcf1;
  font-weight: bold;
  transition: color 0.3s ease;
  scroll-snap-align: center;
}

.navbar a:hover {
  color: #ffffff;
}

.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: -1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}

.header-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.header-image {
  max-width: 300px;
  width: 80%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.quote {
  font-style: italic;
  margin-top: 1rem;
  color: #66fcf1;
}

.section {
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  color: #45a29e;
}

.team-list {
  list-style: none;
  padding-left: 0;
}

button.toggle-btn {
  margin-top: 1rem;
  background: #66fcf1;
  border: none;
  color: #000;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
}

.hidden {
  display: none;
}

footer {
  background: #1f2833;
  text-align: center;
  padding: 1rem;
  color: #aaa;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pulse-highlight {
  box-shadow: 0 0 8px 2px #66fcf1;
  transition: box-shadow 0.3s ease-in-out;
}

.telemetry-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  color: #cccccc;
}

.telemetry-list li::before {
  content: "► ";
  color: #66fcf1;
}

.roadmap-list {
  list-style: none;
  padding-left: 0;
  line-height: 2;
}

.roadmap-list li::before {
  content: "🚀 ";
  color: #66fcf1;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.shop-item {
  background: #1f2833;
  border: 1px solid #66fcf1;
  padding: 2rem;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  color: #66fcf1;
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

.shop-item.placeholder {
  opacity: 0.5;
  font-style: italic;
}

/* 🛰️ Oort+ Tracker Styles */
.tracker-container {
  position: relative;
  margin: 4rem auto;
  max-width: 800px;
  height: 80px;
}

.tracker-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #66fcf1;
  transform: translateY(-50%);
  z-index: 1;
}

.tracker-dot {
  position: absolute;
  top: 50%;
  left: 50%; /* Simulated middle position */
  width: 20px;
  height: 20px;
  background: #66fcf1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #66fcf1;
  z-index: 2;
}

.tracker-labels.above {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #66fcf1;
  pointer-events: none;
}

@keyframes moveDot {
  0% { left: 0%; }
  100% { left: 100%; }
}

/* Shop Tab Controls */
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.shop-tab {
  padding: 0.5rem 1.2rem;
  background-color: #1f2833;
  border: 1px solid #66fcf1;
  color: #66fcf1;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.shop-tab:hover,
.shop-tab.active {
  background-color: #66fcf1;
  color: #0b0c10;
}

/* Hide inactive content sections */
.shop-content {
  display: none;
}

.shop-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.shop-item {
  background: #1f2833;
  border: 1px solid #66fcf1;
  padding: 2rem;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  color: #66fcf1;
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

.shop-item.placeholder {
  opacity: 0.5;
  font-style: italic;
}

@media (max-width: 600px) {
  .header-content h1 {
    font-size: 2.2rem;
  }
}
