/* 90s Theme CSS */
:root {
  --primary-color: #ff00ff;
  --secondary-color: #00ffff;
  --background: #000080;
  --text-color: #ffffff;
}

body {
  margin: 0;
  font-family: "MS Sans Serif", "Arial", sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  background-image: url("stars.gif");
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAMNSURBVFiF7ZZNaFxVGIaf75w7mUwySWbaJE3TxlZtqqJYN4ILQVddVBAUXAiCmy7cuBJ0IbhzI7gQXLkQdCEIggtBEEFQEAQVasWqtbU/+ZNJJ5nM3HvOcTGTyUwysz/GhVB4YWHOO+c77/udH+69A//X/13yt0zZ3VgZp5Qcp5gdxBqDiCDGYEQwRjDGICKICNaCiMFag4hBRLDWYoxBRLDWYq3FGPOf7SuKtRYRwVqLiGCMwVr7t33XWowxGGtRVRQQEVSVvFNKTonIZaAMZMaYn0TkvIhcMcYsWWuLqVRqzHt/HVhX1TtE5HZVfUBVLwKfA9dEZDESiVwWkTkRuWaMuSQiV621t4nIEVWdVtUjwLfAd8AFa+1la+1t1toJVZ1W1fuBz4BvgPMicklEJowxR1X1iKpOA18BX6rqORE5KyLjxpijqnpEVe8FPgW+Bs6KyEURGbfWHlPVw6p6EPgY+AL4SETOiMiYMeaYqk6p6n7gI+Bz4AMROSMihVQqdUJVJ1V1L/AB8BnwvojMiEheRI6r6j5V3Q28B3wKvCsiMyKSE5ETqrpXVXcB7wKfAG+LyIyIZEXkpKruUdWdwDvAx8BbIjIjIhkROamqu1V1B/A28BHwpojMiEhaRE6p6i5V3Q68BXwIvCEiMyKSFJFpVd2pqtuAt4APgNdFZEZEEiJyWlV3qOoW4E3gfeA1EZkRkbiInFbV7aq6GXgDeA94VURmRCQmItOquk1VNwGvA+8Cr4jIjIhEReS0qm5V1Y3Aa8A7wMsiMmOtjajqaVXdoqobgFeAt4GXRGRGRMIiclpVN6vqeuBl4C3gRRGZMcaEVHVaVTep6jrgJeBN4AURmTHGBEXktKpuVNU1wIvAG8DzIjJjjAmIyGlV3aCqq4HngdeBZ0VkxhjjE5FpVV2vqquA54DXgGdEZMYY4xORaVVdp6orgWeB14CnRWRGRLwiclpV16rqCuAZ4FXgKRGZMca4ReS0qq5R1TLwNPAK8KSIzBhjXCJyWlVXq2oJeAp4GXhCRP7l7/k3179UPwPYH0eJYwAAAABJRU5ErkJggg=="),
    auto;
}

/* Construction Banner */
.construction-banner {
  background: #ffff00;
  color: #000000;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  animation: blink 1s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.construction-banner img {
  width: 100%;
  height: auto;
}

.construction-gif {
  height: 40px;
  image-rendering: pixelated;
}

/* Visitor Counter */
.visitor-counter {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #000000;
  padding: 5px;
  border: 2px solid #ffffff;
  font-family: "Courier New", monospace;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Rainbow Text Effect */
.rainbow-text {
  font-size: 48px;
  text-align: center;
  background: linear-gradient(
    to right,
    #ff0000,
    #ff7f00,
    #ffff00,
    #00ff00,
    #0000ff,
    #4b0082,
    #8f00ff
  );
  -webkit-background-clip: text;
  color: transparent;
  animation: rainbow 5s infinite;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: auto;
}

.screenshot-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #f5f0f0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0;
  padding: 10px;
  background-color: #000000;
  border: 3px solid #ccc;
  border-radius: 5px;
}

.hero-features img {
  display: block;
  margin: 0 auto;
}

.feature-badge {
  background-color: #ffd700; /* Classic yellow color */
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  margin: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
}

.feature-badge {
  /* ... other styles ... */
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.feature-badge:hover {
  background-color: #ff9800; /* A darker shade of yellow */
  transform: scale(1.05);
}

/* Marquee */
.marquee {
  background: #000000;
  padding: 10px;
  border: 2px solid #ffffff;
  overflow: hidden;
  margin: 20px 0;
}

.marquee p {
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  margin: 0;
}

/* 3D Buttons */
.button-3d {
  display: inline-block;
  padding: 10px 20px;
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  color: #000000;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.1s;
}

.button-3d:active {
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: scale(0.98);
}

/* Game Grid */
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.game-card {
  background: #c0c0c0;
  border: 2px solid #ffffff;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.game-card img {
  max-width: 100%;
  height: fit-content;
  transition: transform 0.3s;
  image-rendering: pixelated;
}

.game-card .price {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px 0;
}

/* Popups */
.game-popup,
.order-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #c0c0c0;
  padding: 20px;
  border: 2px solid #ffffff;
  max-width: 500px;
  text-align: center;

  color: #000000;
}

/* Loading Bar */
.loading-bar {
  width: 100%;
  height: 20px;
  background: #000080;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #ffffff;
  animation: loading 1s infinite linear;
}

/* Cursor Trail */
.cursor-trail {
  cursor: url("cursor.cur"), auto;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  z-index: 9999;
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* Order Form */
.order-form {
  background: #c0c0c0;
  padding: 20px;
  border: 2px solid #ffffff;
  max-width: 500px;
  margin: 0 auto;
}

.order-form input {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  font-family: "MS Sans Serif", "Arial", sans-serif;
  border: 2px inset #ffffff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000000;
  border-top: 2px solid #ffffff;
  margin-top: 40px;
  font-size: large;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.footer-buttons img {
  height: 45px;
  image-rendering: pixelated;
}

/* Animations */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.blink {
  animation: blink 1s infinite;
}

/* Sections */
section {
  margin: 40px 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffffff;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  animation: rainbow 5s infinite linear;
}

/* Navigation */
nav {
  text-align: center;
  padding: 20px;
  background: #000000;
  border-bottom: 2px solid #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}
