/* Haunt Gothic Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Spectral:wght@400;500;600;700&display=swap');

:root {
  /* Haunt Color Palette */
  --haunt-void: #0d0221;
  --haunt-teal: #00ffd0;
  --haunt-purple: #2e1a47;
  --haunt-ghastly: #e0e0e0;
  --haunt-mist: rgba(0, 255, 208, 0.1);
  --haunt-shadow: rgba(0, 0, 0, 0.8);

  --text-primary: var(--haunt-ghastly);
  --text-accent: var(--haunt-teal);
  --text-muted: rgba(224, 224, 224, 0.6);

  --gradient-void: linear-gradient(135deg, var(--haunt-void), var(--haunt-purple));
  --gradient-spectral: linear-gradient(180deg, var(--haunt-purple), var(--haunt-void));
  --gradient-mist: linear-gradient(90deg, transparent, var(--haunt-mist), transparent);

  --shadow-spectral: 0 8px 32px rgba(0, 255, 208, 0.2);
  --shadow-crypt: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 15px var(--haunt-teal);

  --border-radius-crypt: 8px;
  --border-radius-spectral: 16px;
  --transition-spectral: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
  font-family: 'Spectral', serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--gradient-void);
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0, 255, 208, 0.05) 0%, transparent 80%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.4"/></svg>');
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

/* Haunt Gate Modal */
.haunt-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 2, 33, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(15px);
}

.haunt-gate-modal {
  background: var(--gradient-spectral);
  border-radius: var(--border-radius-spectral);
  padding: 50px;
  text-align: center;
  max-width: 450px;
  margin: 20px;
  border: 2px solid var(--haunt-teal);
  box-shadow: var(--shadow-crypt), var(--shadow-spectral);
  position: relative;
  overflow: hidden;
}

.haunt-gate-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--haunt-mist), transparent);
  pointer-events: none;
}

.haunt-gate-symbol {
  font-size: 5rem;
  margin-bottom: 25px;
  animation: spectralPulse 4s infinite ease-in-out;
  color: var(--haunt-teal);
  text-shadow: 0 0 20px rgba(0, 255, 208, 0.5);
}

.haunt-gate-modal h2 {
  font-family: 'Creepster', cursive;
  color: var(--haunt-teal);
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.haunt-gate-modal p {
  color: var(--haunt-ghastly);
  margin-bottom: 35px;
  font-size: 1.2rem;
  font-family: 'Spectral', serif;
}

.haunt-gate-buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.haunt-btn-primary,
.haunt-btn-secondary {
  padding: 18px 35px;
  border: none;
  border-radius: var(--border-radius-crypt);
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-spectral);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.haunt-btn-primary {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  box-shadow: var(--shadow-spectral);
}

.haunt-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px var(--haunt-teal);
}

.haunt-btn-secondary {
  background: transparent;
  color: var(--haunt-teal);
  border: 1px solid var(--haunt-teal);
}

.haunt-btn-secondary:hover {
  background: var(--haunt-mist);
  transform: translateY(-2px);
}

/* Haunt Navigation */
.haunt-nav {
  background: rgba(13, 2, 33, 0.9);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--haunt-teal);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.manor-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.specter-brand {
  position: relative;
}

.haunt-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--haunt-teal);
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
}

.specter-icon {
  font-size: 2.5rem;
  margin-right: 15px;
  animation: spectralPulse 4s infinite ease-in-out;
  filter: drop-shadow(0 0 10px var(--haunt-teal));
}

.specter-trail {
  font-size: 1.2rem;
  margin-left: 12px;
  opacity: 0.5;
  animation: ghostFloat 3s infinite ease-in-out;
}

.manor-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.manor-item {
  text-decoration: none;
  color: var(--haunt-ghastly);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: var(--transition-spectral);
  padding: 10px 15px;
  position: relative;
  text-transform: uppercase;
}

.manor-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--haunt-teal);
  transition: width 0.3s ease;
}

.manor-item:hover {
  color: var(--haunt-teal);
  text-shadow: 0 0 10px var(--haunt-teal);
}

.manor-item:hover::after {
  width: 100%;
}

.haunt-contact-btn {
  background: transparent;
  color: var(--haunt-teal);
  border: 1px solid var(--haunt-teal);
  padding: 12px 25px;
  border-radius: var(--border-radius-crypt);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-spectral);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Spectral', serif;
}

.haunt-contact-btn:hover {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  box-shadow: 0 0 20px var(--haunt-teal);
}

.spectral-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 208, 0.4), transparent);
  animation: shimmer 3s infinite;
}

.manor-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--haunt-teal);
  opacity: 0.3;
}

/* Pharaoh Hero Section */
/* Haunt Hero Section */
.haunt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  background: var(--gradient-spectral);
  overflow: hidden;
}

.spectral-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.mist-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, var(--haunt-mist), transparent 70%);
  animation: mistMove 20s infinite linear;
}

.haunt-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  z-index: 2;
}

.haunt-left {
  position: relative;
}

.haunt-badge {
  background: rgba(0, 255, 208, 0.1);
  color: var(--haunt-teal);
  padding: 12px 25px;
  border-radius: var(--border-radius-crypt);
  display: inline-block;
  margin-bottom: 35px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1px solid var(--haunt-teal);
  box-shadow: 0 0 15px var(--haunt-mist);
}

.spectral-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.spectral-icon {
  font-size: 1.5rem;
  animation: spectralPulse 3s infinite;
}

.haunt-title {
  font-family: 'Creepster', cursive;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.title-primary {
  display: block;
  color: var(--haunt-teal);
  text-shadow: 0 0 20px rgba(0, 255, 208, 0.4);
}

.title-secondary {
  display: block;
  color: var(--haunt-ghastly);
  opacity: 0.8;
}

.haunt-description {
  font-size: 1.4rem;
  color: var(--haunt-ghastly);
  margin-bottom: 45px;
  line-height: 1.6;
  opacity: 0.7;
  font-family: 'Spectral', serif;
}

.haunt-actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.haunt-btn {
  padding: 20px 45px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-spectral);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Spectral', serif;
  border-radius: var(--border-radius-crypt);
}

.haunt-btn.primary {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  box-shadow: 0 0 20px var(--haunt-mist);
}

.haunt-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 40px var(--haunt-teal);
}

.haunt-btn.secondary {
  background: transparent;
  color: var(--haunt-teal);
  border: 1px solid var(--haunt-teal);
}

.haunt-btn.secondary:hover {
  background: var(--haunt-mist);
  transform: translateY(-3px);
}

.haunt-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.manor-preview {
  position: relative;
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 208, 0.2));
}

.crypt-frame {
  background: var(--haunt-void);
  padding: 15px;
  border: 1px solid var(--haunt-teal);
  border-radius: var(--border-radius-crypt);
  box-shadow: var(--shadow-crypt);
}

.crypt-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 5px 10px;
}

.spectral-dot {
  width: 10px;
  height: 10px;
  background: var(--haunt-teal);
  border-radius: 50%;
  animation: spectralPulse 2s infinite;
  box-shadow: 0 0 10px var(--haunt-teal);
}

.haunt-status {
  color: var(--haunt-teal);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.crypt-screen {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
}

.manor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.crypt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--haunt-void) 0%, transparent 50%);
  pointer-events: none;
}

.phantom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 208, 0.1);
  border: 1px solid var(--haunt-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--haunt-teal);
  font-size: 2rem;
  text-decoration: none;
  transition: var(--transition-spectral);
  backdrop-filter: blur(5px);
}

.phantom-play:hover {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px var(--haunt-teal);
}

.btn-golden-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
}

.egyptian-btn.primary:hover .btn-golden-shine {
  left: 100%;
}

.pharaoh-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.temple-preview {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.sarcophagus-frame {
  background: var(--pharaoh-cream);
  border-radius: var(--border-radius-pyramid);
  padding: 25px;
  box-shadow: var(--shadow-sarcophagus);
  border: 4px solid var(--pharaoh-gold);
  position: relative;
  overflow: hidden;
}

.sarcophagus-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-gold);
  border-radius: var(--border-radius-pyramid);
  z-index: -1;
}

.frame-crown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pharaoh-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pharaoh-dot {
  width: 14px;
  height: 14px;
  background: var(--pharaoh-red);
  border-radius: 50%;
  animation: pharaohPulse 2.5s infinite;
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.pharaoh-status {
  color: var(--text-papyrus);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sarcophagus-screen {
  position: relative;
  border-radius: var(--border-radius-temple);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--pharaoh-dark-brown);
}

.temple-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.golden-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(205, 127, 50, 0.15));
  pointer-events: none;
}

.play-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(244, 228, 188, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pharaoh-gold);
  cursor: pointer;
  transition: var(--transition-pharaoh);
  border: 3px solid var(--pharaoh-gold);
  box-shadow: var(--shadow-pyramid);
}

.play-symbol:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--pharaoh-gold);
  color: var(--pharaoh-black);
}

/* Haunt Treasures Section */
.haunt-treasures {
  padding: 120px 0;
  background: var(--haunt-void);
  position: relative;
  overflow: hidden;
}

.crypt-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.crypt-title {
  font-family: 'Creepster', cursive;
  font-size: clamp(3rem, 7vw, 4.5rem);
  color: var(--haunt-teal);
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 255, 208, 0.3);
}

.crypt-subtitle {
  font-size: 1.3rem;
  color: var(--haunt-ghastly);
  opacity: 0.6;
}

.haunt-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.crypt-card {
  background: rgba(46, 26, 71, 0.3);
  border: 1px solid rgba(0, 255, 208, 0.1);
  padding: 50px 40px;
  transition: var(--transition-spectral);
  position: relative;
  border-radius: var(--border-radius-crypt);
}

.crypt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 208, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.crypt-card:hover {
  transform: translateY(-10px);
  border-color: var(--haunt-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 208, 0.1);
}

.crypt-card:hover::before {
  opacity: 1;
}

.crypt-card.featured {
  background: rgba(46, 26, 71, 0.5);
  border-color: rgba(0, 255, 208, 0.3);
}

.crypt-card.wide {
  grid-column: span 2;
}

.crypt-card-body {
  position: relative;
  z-index: 2;
}

.crypt-card-title {
  font-family: 'Creepster', cursive;
  font-size: 2.2rem;
  color: var(--haunt-teal);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.crypt-card-text {
  color: var(--haunt-ghastly);
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Manor Scrolls Section */
.manor-scrolls {
  padding: 120px 0;
  background: var(--gradient-spectral);
  position: relative;
}

.manor-container-alt {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  align-items: center;
}

.manor-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.phantom-block {
  position: relative;
}

.phantom-header {
  margin-bottom: 30px;
}

.phantom-heading {
  font-family: 'Creepster', cursive;
  font-size: 3rem;
  color: var(--haunt-teal);
  margin-bottom: 15px;
}

.spectral-line {
  width: 80px;
  height: 2px;
  background: var(--haunt-teal);
  box-shadow: 0 0 10px var(--haunt-teal);
}

.phantom-text {
  font-size: 1.25rem;
  color: var(--haunt-ghastly);
  line-height: 1.8;
  opacity: 0.8;
}

.manor-visual {
  display: flex;
  justify-content: center;
}

.spectral-frame {
  position: relative;
  padding: 10px;
  background: var(--haunt-void);
  border: 1px solid var(--haunt-teal);
  box-shadow: var(--shadow-crypt);
}

.manor-image-alt {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.spectral-frame:hover .manor-image-alt {
  opacity: 1;
}

.frame-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 30px var(--haunt-mist);
  pointer-events: none;
}

/* Decree Section */
/* Haunt Edict Section */
.haunt-edict {
  padding: 120px 0;
  background: var(--haunt-void);
  position: relative;
}

.edict-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.edict-header {
  text-align: center;
  margin-bottom: 80px;
}

.edict-title {
  font-family: 'Creepster', cursive;
  font-size: 3.5rem;
  color: var(--haunt-teal);
  letter-spacing: 2px;
}

.spectral-divider {
  width: 150px;
  height: 2px;
  background: var(--haunt-teal);
  margin: 20px auto;
  box-shadow: 0 0 10px var(--haunt-teal);
}

.edict-content {
  background: rgba(46, 26, 71, 0.2);
  border-radius: var(--border-radius-crypt);
  padding: 70px;
  border: 1px solid rgba(0, 255, 208, 0.2);
}

.edict-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hieroglyph-articles {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.edict-article {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.article-number {
  width: 50px;
  height: 50px;
  background: var(--haunt-teal);
  color: var(--haunt-void);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Creepster', cursive;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--haunt-mist);
}

.article-text {
  font-size: 1.2rem;
  color: var(--haunt-ghastly);
  line-height: 1.8;
  opacity: 0.8;
}

.edict-visual {
  display: flex;
  justify-content: center;
}

.crypt-frame-alt {
  position: relative;
  background: var(--haunt-void);
  padding: 10px;
  border: 1px solid var(--haunt-teal);
  box-shadow: var(--shadow-crypt);
}

.edict-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.5) contrast(1.2);
}

/* Crypt Contact Section */
.crypt-contact {
  padding: 120px 0;
  background: var(--haunt-void);
  position: relative;
}

.contact-manor-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-manor-header {
  text-align: center;
  margin-bottom: 100px;
}

.contact-manor-title {
  font-family: 'Creepster', cursive;
  font-size: 3.5rem;
  color: var(--haunt-teal);
  margin-bottom: 25px;
}

.contact-manor-subtitle {
  font-size: 1.3rem;
  color: var(--haunt-ghastly);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.6;
}

.contact-manor-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: flex-start;
}

.contact-manor-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.phantom-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.phantom-card {
  background: rgba(46, 26, 71, 0.3);
  padding: 35px;
  border-radius: var(--border-radius-crypt);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: var(--transition-spectral);
  border: 1px solid transparent;
}

.phantom-card:hover {
  transform: translateY(-5px);
  border-color: var(--haunt-teal);
  box-shadow: 0 0 20px var(--haunt-mist);
}

.phantom-card-icon {
  width: 60px;
  height: 60px;
  color: var(--haunt-teal);
  flex-shrink: 0;
}

.phantom-card-content h4 {
  font-family: 'Creepster', cursive;
  color: var(--haunt-teal);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.phantom-card-content p {
  color: var(--haunt-ghastly);
  font-size: 1rem;
  opacity: 0.7;
}

.contact-manor-benefits {
  background: rgba(46, 26, 71, 0.2);
  padding: 35px;
  border-radius: var(--border-radius-crypt);
  border: 1px solid rgba(0, 255, 208, 0.2);
}

.contact-benefits-title {
  font-family: 'Creepster', cursive;
  color: var(--haunt-teal);
  font-size: 2rem;
  margin-bottom: 25px;
}

.contact-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-benefits-list li {
  color: var(--haunt-ghastly);
  padding-left: 30px;
  position: relative;
  opacity: 0.8;
}

.contact-benefits-list li::before {
  content: '👻';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.crypt-form {
  background: rgba(13, 2, 33, 0.8);
  padding: 60px;
  border: 1px solid var(--haunt-teal);
  box-shadow: var(--shadow-crypt);
  position: relative;
}

.crypt-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.crypt-form-title {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: var(--haunt-teal);
  margin-bottom: 15px;
}

.crypt-form-subtitle {
  color: var(--haunt-ghastly);
  font-size: 1.1rem;
  opacity: 0.6;
}

.crypt-form-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.crypt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.crypt-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crypt-form-label {
  color: var(--haunt-teal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.crypt-form-input,
.crypt-form-textarea {
  padding: 18px 25px;
  border: 1px solid rgba(0, 255, 208, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--haunt-ghastly);
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  transition: var(--transition-spectral);
}

.crypt-form-input:focus,
.crypt-form-textarea:focus {
  outline: none;
  border-color: var(--haunt-teal);
  background: rgba(0, 255, 208, 0.1);
}

.crypt-form-submit {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  border: none;
  padding: 22px 50px;
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-spectral);
  margin-top: 25px;
  letter-spacing: 2px;
}

.crypt-form-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px var(--haunt-teal);
}

/* Seals Section */
.seals-section {
  padding: 80px 0;
  background: var(--pharaoh-cream);
}

.seals-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.seal-item {
  flex-shrink: 0;
}

.seal-frame {
  display: block;
  padding: 25px;
  background: var(--gradient-tomb);
  border-radius: var(--border-radius-temple);
  box-shadow: var(--shadow-papyrus);
  transition: var(--transition-pharaoh);
  border: 3px solid transparent;
}

.seal-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sarcophagus);
  border-color: var(--pharaoh-gold);
}

.seal-image {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* Haunt Seals Section */
.haunt-seals {
  padding: 80px 0;
  background: var(--haunt-void);
  border-top: 1px solid rgba(0, 255, 208, 0.1);
}

.seals-manor-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.seal-crypt-frame {
  display: block;
  padding: 25px;
  background: rgba(46, 26, 71, 0.2);
  border: 1px solid rgba(0, 255, 208, 0.1);
  transition: var(--transition-spectral);
  filter: grayscale(1) invert(1);
}

.seal-crypt-frame:hover {
  transform: translateY(-5px) scale(1.05);
  filter: grayscale(0) invert(0);
  border-color: var(--haunt-teal);
  box-shadow: 0 0 20px var(--haunt-mist);
}

.seal-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Crypt Footer */
.crypt-footer {
  background: var(--haunt-void);
  color: var(--haunt-ghastly);
  padding: 100px 0 40px;
  border-top: 1px solid var(--haunt-teal);
  position: relative;
  overflow: hidden;
}

.footer-manor-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-manor-main {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 120px;
  margin-bottom: 80px;
}

.footer-manor-brand h3 {
  font-family: 'Creepster', cursive;
  font-size: 2.5rem;
  color: var(--haunt-teal);
  margin-bottom: 30px;
}

.footer-manor-description {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.6;
}

.footer-manor-newsletter h4 {
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  color: var(--haunt-teal);
  margin-bottom: 25px;
}

.footer-manor-form {
  display: flex;
  gap: 15px;
}

.footer-manor-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 208, 0.2);
  padding: 15px 20px;
  color: var(--haunt-ghastly);
  font-family: 'Spectral', serif;
}

.footer-manor-submit {
  background: var(--haunt-teal);
  color: var(--haunt-void);
  border: none;
  padding: 15px 30px;
  font-family: 'Creepster', cursive;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-spectral);
}

.footer-manor-submit:hover {
  box-shadow: 0 0 20px var(--haunt-teal);
}

.footer-manor-links {
  border-top: 1px solid rgba(0, 255, 208, 0.1);
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-manor-link {
  color: var(--haunt-ghastly);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: var(--transition-spectral);
  opacity: 0.6;
}

.footer-manor-link:hover {
  color: var(--haunt-teal);
  opacity: 1;
  text-shadow: 0 0 10px var(--haunt-teal);
}

.footer-manor-bottom {
  text-align: center;
  opacity: 0.4;
  font-size: 0.9rem;
}

/* Animations */
@keyframes spectralPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
    filter: blur(2px);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0px);
  }
}

@keyframes ghostFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(2deg);
  }

  66% {
    transform: translateY(5px) rotate(-2deg);
  }
}

@keyframes mistMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .haunt-content {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .haunt-right {
    order: -1;
  }

  .manor-container-alt {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .edict-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-manor-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .footer-manor-main {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .manor-container {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }

  .manor-menu {
    gap: 25px;
  }

  .haunt-hero {
    padding-top: 180px;
  }

  .crypt-form-row {
    grid-template-columns: 1fr;
  }

  .crypt-card.wide {
    grid-column: span 1;
  }

  .footer-manor-links {
    flex-direction: column;
    gap: 25px;
  }

  .footer-manor-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .manor-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .haunt-actions {
    flex-direction: column;
    align-items: center;
  }

  .haunt-btn {
    width: 100%;
    justify-content: center;
  }

  .seals-manor-container {
    gap: 25px;
  }

  .seal-image {
    width: 70px;
    height: 70px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.spectral-content-block {
  padding: 80px 10%;
  background: var(--haunt-void);
}

.spectral-content-block h2 {
  font-family: 'Creepster', cursive;
  color: var(--haunt-teal);
  font-size: 3rem;
  margin-bottom: 30px;
}

.spectral-content-block p,
.spectral-content-block ul {
  color: var(--haunt-ghastly);
  font-family: 'Spectral', serif;
  line-height: 1.8;
  opacity: 0.8;
}

.crypt-portal-area {
  padding: 4rem 2rem;
  background: var(--haunt-void);
  border: 1px solid var(--haunt-teal);
  box-shadow: var(--shadow-crypt);
}

.spectral-game {
  max-width: 1000px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}