/* Retro Gaming Theme - Dark with neon accents */
:root {
  --theme-bg-1: #0a0a0a;
  --theme-bg-2: #1a1a1a;
  --theme-accent: #00ff00;
  --theme-accent-2: #ff00ff;
  --theme-text: #00ff00;
  --theme-muted: #00aa00;
  --theme-card: rgba(0, 255, 0, 0.05);
}

body.theme-retro {
  background: linear-gradient(180deg, var(--theme-bg-1), var(--theme-bg-2));
  font-family: 'Press Start 2P', 'Courier New', monospace;
}

.theme-retro .page-title,
.theme-retro .project-detail-header h2 {
  color: var(--theme-accent);
  text-shadow: 0 0 10px var(--theme-accent), 0 0 20px var(--theme-accent);
  font-family: 'Press Start 2P', monospace;
}

.theme-retro .project-category-badge {
  background: rgba(0, 255, 0, 0.15);
  border-color: var(--theme-accent);
  color: var(--theme-accent);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
}

.theme-retro .tag-badge {
  background: rgba(0, 255, 0, 0.2);
  color: var(--theme-accent);
  border: 1px solid var(--theme-accent);
}

.theme-retro .project-detail-content {
  background: var(--theme-card);
  border: 2px solid var(--theme-accent);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2), inset 0 0 30px rgba(0, 255, 0, 0.05);
}

.theme-retro .project-detail-content h3 {
  color: var(--theme-accent);
  text-shadow: 0 0 5px var(--theme-accent);
}

.theme-retro .project-detail-content p,
.theme-retro .project-detail-content li {
  color: #aaffaa;
}

.theme-retro .tech-item {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid var(--theme-accent);
  color: var(--theme-accent);
}

.theme-retro .btn {
  background: var(--theme-accent);
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  border: none;
  box-shadow: 0 0 10px var(--theme-accent);
}

.theme-retro .btn:hover {
  box-shadow: 0 0 20px var(--theme-accent), 0 0 30px var(--theme-accent);
}

.theme-retro .btn.primary {
  background: var(--theme-accent-2);
  box-shadow: 0 0 10px var(--theme-accent-2);
}

.theme-retro .back-link {
  color: var(--theme-accent);
}

.theme-retro .gif-container,
.theme-retro .project-gallery img {
  border: 2px solid var(--theme-accent);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.theme-retro .topbar {
  background: linear-gradient(90deg, rgba(0, 255, 0, 0.05), transparent);
  border-bottom: 1px solid var(--theme-accent);
}

.theme-retro .brand h1,
.theme-retro .brand .accent {
  color: var(--theme-accent);
  text-shadow: 0 0 10px var(--theme-accent);
}

.theme-retro .nav a {
  color: var(--theme-muted);
}

.theme-retro .nav a:hover {
  color: var(--theme-accent);
  background: rgba(0, 255, 0, 0.1);
}

/* Scanline effect */
.theme-retro::before {
  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),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 1000;
}
