body, html {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  color: #e0dede;
  background-color: #0b0b0b;
}

.vampire-bg {
  background-image: url('https://s14.gifyu.com/images/bwVVO.gif'); /* use a dark gothic texture */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  backdrop-filter: blur(2px);
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 3em;
  color: #b30000;
  text-shadow: 0 0 10px #600000;
}

header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2em;
  color: #ccc;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #e0dede;
  font-size: 1.1em;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #b30000;
  border-bottom: 2px solid #b30000;
}

.intro {
  text-align: center;
  margin-top: 60px;
}

.intro h2 {
  font-size: 2.5em;
  color: #990000;
}

.intro p {
  font-size: 1.2em;
  font-family: 'Cormorant Garamond', serif;
  color: #ccc;
}
/* 🕸️ Fog Overlay */
.fog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.fog-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* 🩸 Blood-drip Hover */
nav a {
  position: relative;
  color: #e0dede;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: crimson;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* 🕯️ Candle Flicker Glow */
header h1 {
  font-size: 3em;
  color: #b30000;
  text-shadow: 0 0 10px #600000, 0 0 20px #b30000;
  animation: flicker 1.5s infinite;
}

@keyframes flicker {
  0%, 100% { text-shadow: 0 0 10px #600000, 0 0 20px #b30000; }
  50% { text-shadow: 0 0 5px #400000, 0 0 10px #800000; }
}

/* 🪦 Gothic Frame */
.vampire-bg {
  border: 10px solid #2c0a0a;
  box-shadow: 0 0 40px #1a0000 inset;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.85);
}

/* 🧵 Custom Cursor */
body {
  cursor: url('https://s14.gifyu.com/images/bwFDD.png'), auto;
}
/* 🔮 Arcane Sigil */
.magic-sigil {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  animation: pulseMagic 6s infinite ease-in-out;
}

.magic-sigil img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 🔥 Crimson Pulse Aura */
@keyframes pulseMagic {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

/* ✨ Magic Shimmer Hover */
nav a:hover {
  color: #ff0033;
  text-shadow: 0 0 10px #ff0033, 0 0 20px #990000;
  transition: all 0.3s ease-in-out;
}

/* 🩸 Optional: Blood Mist Particles */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://s14.gifyu.com/images/bwVZu.gif');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
