/* Pure black stage background */
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #000;   /* pure black */
  color: #fff;              /* default text white */
}

/* Hero title: white with subtle glow */
.hero-title {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.6); }
  50%      { text-shadow: 0 0 40px rgba(255,255,255,0.8); }
}

/* Header / footer (keep dark gradients if you want depth) */
.flame-header {
  background: linear-gradient(180deg, #000, #111);
}
.flame-footer {
  background: linear-gradient(180deg, #111, #000);
}

/* Glitch effect: white text */
.glitch {
  position: relative;
  color: #fff;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}
.glitch::after {
  animation: glitchBottom 1.5s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  0%   { clip-path: inset(0 0 100% 0); }
  50%  { clip-path: inset(0 0 0 0); transform: translate(-5px, -2px); }
  100% { clip-path: inset(0 0 100% 0); }
}
@keyframes glitchBottom {
  0%   { clip-path: inset(100% 0 0 0); }
  50%  { clip-path: inset(0 0 0 0); transform: translate(5px, 2px); }
  100% { clip-path: inset(100% 0 0 0); }
}

/* Burn shadow effect */
.shadow-burn {
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shadow-burn:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 0 35px rgba(255,255,255,0.6);
}

/* Quotes */
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
}

/* Encrypted text: blurred white */
.encrypted {
  font-family: monospace;
  letter-spacing: 0.2em;
  color: #fff;
  filter: blur(3px);
  user-select: none;
  transition: filter 0.6s ease, color 0.6s ease;
}

/* Decrypted text: clear white */
.decrypted {
  filter: blur(0);
  color: #fff;
}

/* Powerful ignite explosion + shake */
.ignite {
  animation: igniteExplosion 1.5s ease forwards;
}

@keyframes igniteExplosion {
  0% {
    background-color: #000;
    filter: none;
    transform: none;
  }
  10% {
    background-color: #222;
    filter: brightness(3) contrast(3);
    transform: scale(1.05) rotate(2deg);
    box-shadow: inset 0 0 300px rgba(255,255,255,0.8);
  }
  30% {
    background-color: #444;
    filter: invert(1) hue-rotate(90deg);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: inset 0 0 500px rgba(255,255,255,0.7);
  }
  60% {
    background-color: #111;
    filter: brightness(2) saturate(2);
    transform: scale(1.05) rotate(1deg);
    box-shadow: inset 0 0 400px rgba(255,255,255,0.6);
  }
  100% {
    background-color: #000;
    filter: none;
    transform: none;
    box-shadow: none;
  }
}

@keyframes igniteShake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-15px, 8px); }
  40% { transform: translate(15px, -8px); }
  60% { transform: translate(-8px, 15px); }
  80% { transform: translate(8px, -15px); }
}

.ignite-shake {
  animation: igniteShake 0.6s ease;
}
