body {
  background-color: #000000;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: #ffff00;
  text-decoration: none;
}

a:hover {
  background-color: #00ffff;
  color: #000000;
}

.retro-header, .retro-footer, .content-box, .counter-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 10px; /* Reduced from 40px/50px */
}

.site-title {
  color: #00ffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3.5em;
}

.retro-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.retro-nav a {
  font-weight: bold;
  font-size: 1.2em;
}

.content-box {
  border: none;
  background-color: transparent;
  padding: 10px 20px;
}

.counter-label {
  color: #00ff00;
  font-size: 0.8em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.counter-label {
  color: #00ff00;
  font-size: 1em;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#globe-container {
  width: 100%; 
  height: 350px; 
  cursor: grab;
}

.globe-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #00ff00;
  padding: 10px 20px;
  color: #00ffff;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
  text-align: center;
  white-space: nowrap;
  max-width: 90%;
}

.table-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.retro-table {
  width: 80%;
  border-collapse: collapse;
}

.retro-table th, .retro-table td {
  border: none;
  padding: 8px 15px;
  text-align: center;
}

.retro-table th {
  font-size: 1.4em;
  color: #00ff00;
  padding-bottom: 15px;
}

.retro-hr {
  border: 0;
  border-top: 3px double #00ff00;
  width: 600px;
  max-width: 100%;
  margin: 20px auto;
}

.footer-columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  margin-top: 15px;
  margin-bottom: 20px;
  gap: 80px;
  padding: 0;
}

.footer-col {
  text-align: left;
  min-width: 120px;
}

.footer-col h3 {
  color: #00ff00;
  margin-bottom: 10px;
  font-size: 1.6em;
}

.footer-col ul {
  list-style-type: square;
  padding-left: 20px;
  margin: 0;
}

.footer-col li {
  margin-bottom: 5px;
}

.text-left {
  text-align: left;
}

.retro-heading {
  color: #00ffff;
  font-size: 1.3em;
  margin-bottom: 5px;
  border-bottom: 1px dashed #005500;
  display: inline-block;
}

.retro-list {
  list-style-type: square;
  padding-left: 20px;
}

.retro-list li {
  margin-bottom: 15px;
  line-height: 1.4;
}

.retro-hr-small {
  border: 0;
  border-top: 1px dashed #00ff00;
  margin: 30px 0;
  opacity: 0.5;
}