* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Press Start 2P', monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scanline overlay for CRT feel */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 9999;
}

/* Header */
header {
  text-align: center;
  padding: 48px 20px 32px;
}

.logo {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.pickle {
  color: #39ff14;
  text-shadow:
    0 0 10px #39ff14,
    0 0 30px #39ff1466,
    0 0 60px #39ff1433;
}

.fish {
  color: #00fff5;
  text-shadow:
    0 0 10px #00fff5,
    0 0 30px #00fff566,
    0 0 60px #00fff533;
}

.tagline {
  margin-top: 16px;
  font-size: 0.65rem;
  color: #ff2d95;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  text-shadow: 0 0 8px #ff2d9566;
}

/* Main */
main {
  flex: 1;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* Game Grid */
.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* Game Tile */
.game-tile {
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  border-radius: 8px;
  padding: 32px 24px;
  text-decoration: none;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.game-tile:hover {
  transform: scale(1.03);
}

.game-tile.neon-green:hover {
  border-color: #39ff14;
  box-shadow:
    0 0 12px #39ff1444,
    0 0 30px #39ff1422,
    inset 0 0 12px #39ff1411;
}

.game-tile.neon-cyan:hover {
  border-color: #00fff5;
  box-shadow:
    0 0 12px #00fff544,
    0 0 30px #00fff522,
    inset 0 0 12px #00fff511;
}

.game-tile.neon-pink:hover {
  border-color: #ff2d95;
  box-shadow:
    0 0 12px #ff2d9544,
    0 0 30px #ff2d9522,
    inset 0 0 12px #ff2d9511;
}

.game-tile.coming-soon {
  opacity: 0.4;
  cursor: default;
  border-style: dashed;
}

.game-tile.coming-soon:hover {
  transform: none;
}

.game-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.game-title {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.game-desc {
  font-size: 0.55rem;
  line-height: 1.8;
  color: #888;
  letter-spacing: 0.02em;
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 0.5rem;
  color: #444;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.5rem;
  }

  header {
    padding: 32px 16px 24px;
  }

  .games {
    grid-template-columns: 1fr;
  }
}
