/* Asylum/Creepy Theme - Distorted, clinical */
:root {
  --theme-bg-1: #1a1a2e;
  --theme-bg-2: #16213e;
  --theme-accent: #7b00e4;
  --theme-accent-2: #08ff30;
  --theme-text: #a8dadc;
  --theme-muted: #457b9d;
  --theme-card: rgba(123, 0, 228, 0.1);
}

body.theme-asylum {
  background: linear-gradient(180deg, var(--theme-bg-1), var(--theme-bg-2));
  color: var(--theme-text);
}

.theme-asylum .page-title,
.theme-asylum .project-detail-header h2 {
  color: var(--theme-accent-2);
  text-shadow: 2px 2px 0 var(--theme-accent), -1px -1px 0 var(--theme-accent);
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 1px); }
  94% { transform: translate(2px, -1px); }
  96% { transform: translate(-1px, 2px); }
  98% { transform: translate(1px, -2px); }
}

.theme-asylum .project-category-badge {
  background: var(--theme-accent);
  border-color: var(--theme-accent-2);
  color: var(--theme-accent-2);
}

.theme-asylum .tag-badge {
  background: rgba(123, 0, 228, 0.4);
  color: var(--theme-accent-2);
  border: 1px solid var(--theme-accent);
}

.theme-asylum .project-detail-content {
  background: var(--theme-card);
  border: 2px solid var(--theme-accent);
  box-shadow: 0 0 30px rgba(123, 0, 228, 0.3);
}

.theme-asylum .project-detail-content h3 {
  color: var(--theme-accent-2);
}

.theme-asylum .tech-item {
  background: rgba(123, 0, 228, 0.3);
  color: var(--theme-accent-2);
}

.theme-asylum .btn {
  background: var(--theme-accent);
  color: var(--theme-accent-2);
  border: 2px solid var(--theme-accent-2);
}

.theme-asylum .btn:hover {
  background: var(--theme-accent-2);
  color: var(--theme-accent);
}

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

.theme-asylum .gif-container,
.theme-asylum .project-gallery img {
  border: 3px solid var(--theme-accent);
  box-shadow: 0 0 20px rgba(123, 0, 228, 0.4);
}

.theme-asylum .topbar {
  background: linear-gradient(90deg, rgba(123, 0, 228, 0.2), transparent);
}

.theme-asylum .brand .accent {
  color: var(--theme-accent-2);
}

.theme-asylum .nav a:hover {
  color: var(--theme-accent-2);
  background: rgba(123, 0, 228, 0.3);
}
