body {
  background-color: black;
  color: lime;
  font-family: "Press Start 2P", monospace;
  text-align: center;
  padding: 20px;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
}

.logo {
  font-family: "Press Start 2P", monospace;
  font-size: 36px;
  font-weight: 900;
  color: #FFD700; /* bright gold/yellow */
  letter-spacing: 6px;
  text-transform: uppercase;
  user-select: none;
  padding: 20px 60px;
  background-color: #000;
  display: inline-block;
  border: 8px solid #FFD700;
  box-shadow:
    6px 6px 0 #B8860B,  /* dark gold “shadow” block */
    12px 12px 0 #8B6508; /* darker shadow for depth */
  text-shadow:
    2px 2px 0 #B8860B,  /* pixel “depth” shadow */
    4px 4px 0 #8B6508,  /* deeper shadow */
    -2px 0 #FFFACD,     /* highlight edge left */
    0 -2px #FFFACD;     /* highlight top edge */
  transform: skew(-5deg);
  position: relative;
}

.logo span {
  display: inline-block;
  position: relative;
  animation: pixelJitter 3s infinite;
}

@keyframes pixelJitter {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1px, -1px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  75% {
    transform: translate(1px, 1px);
  }
}

/* Optional pixel grid overlay behind the text for extra arcade vibes */
.logo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
  border: none;
}

@keyframes pulsePixel {
  0%, 100% {
    box-shadow:
      0 0 0 4px #000080,
      4px 4px 0 #ff0000;
  }
  50% {
    box-shadow:
      0 0 0 6px #0000cc,      /* slightly brighter blue border */
      6px 6px 0 #ff3300;      /* stronger red shadow */
  }
}



nav {
  margin: 20px 0;
  background-color: #222;
  padding: 10px;
  border: 2px dashed lime;
}

nav a {
  color: cyan;
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  color: yellow;
  text-decoration: underline;
}

.review {
  background-color: #111;
  border: 2px solid lime;
  margin: 20px auto;
  padding: 15px;
  width: 80%;
  max-width: 600px;
  text-align: left;
}

.review h2 {
  color: cyan;
}

.review p {
  color: white;
}

.blink {
  animation: blink 1s steps(2, start) infinite;
  color: magenta;
}

@keyframes blink {
  to { visibility: hidden; }
}

.footer {
  margin-top: 40px;
  font-size: 12px;
  color: gray;
}

.gif {
  display: block;
  margin: 20px auto;
}
