body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 2px;
}

p {
  margin-top: 15px;
  font-size: 1.1rem;
}


.tag {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
}

.footer {
  margin-top: 30px;
  font-size: 0.8rem;
}

/* ==========================================================================
   GLOBAL NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(5, 5, 16, 0.95); /* Matches your deep background layout */
  border-bottom: 2px solid #ff007f;  /* Clean fuchsia accent line separating nav from content */
  display: flex;
  justify-content: space-between;    /* Pushes links to left, game to right */
  align-items: center;
  padding: 0 2rem;
  z-index: 100;                      /* Keeps it stuck on top when scrolling */
}

/* Link Group Layout */
.nav-links {
  display: flex;
  gap: 2rem; /* Creates clean, even spacing between text items */
}

/* Individual Nav Items */
.nav-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  transition: color 0.2s ease;
}

/* Hover state: switches cleanly to your cyan color */
.nav-item:hover {
  color: #00f3ff;
}

/* Active Page Indicator (Optional) */
.nav-item.active {
  color: #00f3ff;
  border-bottom: 1px solid #00f3ff;
}

/* Far Right Game Placeholder */
.nav-game-slot {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #666688; /* Blends back softly so it doesn't distract yet */
}



