.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(201,146,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(139,26,26,0.2) 0%, transparent 50%),
    linear-gradient(180deg, #0a0804 0%, #1a1208 40%, #0f0a05 100%);
  overflow: hidden; padding: 2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,146,42,0.08) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none;
}
.flame-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.flame {
  position: absolute; bottom: -20px; width: 3px;
  border-radius: 50% 50% 20% 20%; animation: flicker linear infinite; opacity: 0;
}
@keyframes flicker {
  0%   { transform: scaleX(1) translateY(0); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { transform: scaleX(0.8) translateY(-60vh) scaleY(1.2); opacity: 0.3; }
  90%  { opacity: 0.1; }
  100% { transform: scaleX(1.1) translateY(-100vh); opacity: 0; }
}
.rune-ring {
  position: absolute; width: 600px; height: 600px;
  border: 1px solid rgba(201,146,42,0.1); border-radius: 50%;
  animation: rotate 60s linear infinite;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.rune-ring::before {
  content: '\169B \1694 \1695 \1696 \1697 \1698 \1699 \169A \169B \1694 \1695 \1696 \1697 \1698 \1699 \169A \169B \1694 \1695 \1696 \1697 \1698 \1699 \169A';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 14px; color: rgba(201,146,42,0.15);
  white-space: nowrap; letter-spacing: 8px; width: 590px; text-align: center;
}
.rune-ring-2 { width: 450px; height: 450px; animation: rotate 40s linear infinite reverse; border-color: rgba(139,26,26,0.12); }
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-emblem {
  font-size: 5rem; margin-bottom: 1.5rem;
  animation: glow-pulse 3s ease-in-out infinite;
  position: relative; z-index: 2; filter: drop-shadow(0 0 20px rgba(201,146,42,0.5));
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201,146,42,0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(201,146,42,0.8)) drop-shadow(0 0 60px rgba(212,68,26,0.3)); }
}
.hero-title {
  font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900;
  color: var(--gold-light); text-align: center; letter-spacing: 0.05em; line-height: 1.1;
  position: relative; z-index: 2;
  text-shadow: 0 0 30px rgba(201,146,42,0.5), 0 2px 4px rgba(0,0,0,0.8);
  animation: title-reveal 1.5s ease-out forwards; opacity: 0; transform: translateY(20px);
}
@keyframes title-reveal { to { opacity: 1; transform: translateY(0); } }
.hero-subtitle {
  font-family: 'Cinzel', serif; font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(201,146,42,0.7); letter-spacing: 0.3em; text-transform: uppercase;
  margin-top: 0.5rem; position: relative; z-index: 2;
  animation: title-reveal 1.5s ease-out 0.3s forwards; opacity: 0;
}
.hero-divider {
  display: flex; align-items: center; gap: 1rem; margin: 2rem 0;
  position: relative; z-index: 2;
  animation: title-reveal 1.5s ease-out 0.5s forwards; opacity: 0;
  width: min(500px, 90vw);
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-divider span { color: var(--blood); font-size: 1.5rem; }
.hero-desc {
  color: rgba(244,233,208,0.7); text-align: center; max-width: 540px;
  font-size: 1.1rem; line-height: 1.8; font-style: italic;
  position: relative; z-index: 2;
  animation: title-reveal 1.5s ease-out 0.7s forwards; opacity: 0;
}
.hero-cta {
  margin-top: 2.5rem; position: relative; z-index: 2;
  animation: title-reveal 1.5s ease-out 0.9s forwards; opacity: 0;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(201,146,42,0.4); font-family: 'Cinzel', serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}
