/* Horror Theme - Dark, red accents, eerie */
:root {
  --theme-bg-1: #0d0a0a;
  --theme-bg-2: #1a0f0f;
  --theme-accent: #8b0000;
  --theme-accent-2: #ff4444;
  --theme-text: #c9b8b8;
  --theme-muted: #6b5555;
  --theme-card: rgba(139, 0, 0, 0.08);
}

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

/* Blood drip effect at top */
.theme-horror::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(139, 0, 0, 0.3), transparent);
  z-index: 0;
}

.theme-horror .page-title,
.theme-horror .project-detail-header h2 {
  color: var(--theme-accent-2);
  text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.theme-horror .project-category-badge {
  background: rgba(139, 0, 0, 0.3);
  border-color: var(--theme-accent);
  color: var(--theme-accent-2);
}

.theme-horror .tag-badge {
  background: rgba(139, 0, 0, 0.3);
  color: var(--theme-accent-2);
  border: 1px solid var(--theme-accent);
}

.theme-horror .project-detail-content {
  background: var(--theme-card);
  border: 1px solid var(--theme-accent);
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.2);
}

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

.theme-horror .tech-item {
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid var(--theme-accent);
  color: var(--theme-text);
}

.theme-horror .btn {
  background: var(--theme-accent);
  color: #fff;
}

.theme-horror .btn:hover {
  background: var(--theme-accent-2);
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.theme-horror .btn.primary {
  background: var(--theme-accent-2);
}

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

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

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

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

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

.theme-horror .nav a:hover {
  color: var(--theme-accent-2);
  background: rgba(139, 0, 0, 0.2);
}
