body {
  background-color: black;
  color: white;
  font-family: monospace, Courier, monospace;
  margin: 20px;
}

a {
  color: green;
  text-decoration: underline;
}

.centered-text {
  text-align: center;
  margin-bottom: 30px;
}

nav.nav-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: monospace, Courier, monospace;
  margin-bottom: 20px;
  font-size: 18px;
}

nav.nav-flex a {
  color: green;
  text-decoration: underline;
}

nav.nav-flex a.current {
  color: purple;
  font-weight: bold;
}

nav .pipe {
  color: white;
  user-select: none;
}

.divider {
  border: none;
  border-bottom: 1px solid white;
  margin: 40px 0 20px 0;
}

.game-list {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  font-family: monospace, Courier, monospace;
}

.slider-box {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid white;
  text-align: left;
  font-family: monospace, Courier, monospace;
  color: white;
}

.slider-box label {
  display: block;
  margin-bottom: 5px;
  margin-top: 20px;
  color: white;
}

.slider-box input[type="range"] {
  width: 100%;
  accent-color: green;
}

.section-heading {
  text-align: center;
  color: white;
  font-family: monospace, Courier, monospace;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
}

.price-quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  font-family: monospace, Courier, monospace;
}

.price-display {
  font-size: 18px;
  margin: 0;
}

.quote-note {
  font-size: 16px;
  margin: 0;
}

.quote-note a {
  color: green;
  text-decoration: underline;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  text-align: center;
  max-width: 900px;
}

.card {
  flex: 1 !important;
  min-width: 220px !important;
  min-height: 80px !important;
  box-sizing: border-box !important;
  padding: 20px !important;
  border: 2px solid white;
  border-radius: 6px !important;
  color: white;
  background-color: #111;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.card-green {
  background-color: #003300 !important;
  border-color: #00ff00 !important;
  color: #00ff00 !important;
}

.card-red {
  background-color: #330000 !important;
  border-color: #ff4444 !important;
  color: #ff4444 !important;
}
