#fw-section-custom-html-14102456-e82c-4250-bd84-d93e29a6a126 {

.golden-eruption {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.distress-mode {
  color: #00ccff !important;
  font-style: italic;
  letter-spacing: 0.05em;
  transition: all 0.4s ease-in-out;
  text-shadow:
    0 0 3px #00ccff,
    0 0 6px #00ccff,
    0 0 12px #00ccff,
    0 0 24px #0077aa,
    0 0 48px #004477;
}

.collapse-text {
  color: white !important;
  font-style: italic;
  letter-spacing: 0.15em;
  transition: all 1s ease-in-out;
  text-shadow:
    0 0 6px white,
    0 0 10px red,
    0 0 20px red;
  animation: glitchPulse 0.12s infinite alternate;
}

.whiteout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
  animation: whiteoutFlash 0.5s infinite alternate;
  mix-blend-mode: screen;
}

.fade-in {
  opacity: 0;
  animation: fadeInGlitch 1.2s forwards ease-in;
}

@keyframes fadeInGlitch {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px) scale(0.98);
  }
  60% {
    opacity: 1;
    filter: blur(1px);
    transform: translateY(0px) scale(1.01);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.fade-out *:not(.whiteout-overlay) {
  transition: opacity 3s ease-in-out;
  opacity: 0;
}

@keyframes glitchPulse {
  0% {
    transform: translate(0, 0) skew(0deg);
    opacity: 1;
    filter: drop-shadow(0 0 2px red);
  }
  25% {
    transform: translate(-0.5px, 1px) skew(-1deg);
    opacity: 0.9;
  }
  50% {
    transform: translate(0.5px, -1px) skew(1deg);
    opacity: 0.85;
  }
  75% {
    transform: translate(-0.2px, 0.8px) skew(-0.5deg);
    opacity: 1;
  }
  100% {
    transform: translate(0.2px, -0.6px) skew(0.5deg);
    opacity: 0.95;
  }
}

@keyframes whiteoutFlash {
  0% { opacity: 0.05; }
  100% { opacity: 0.25; }
}

@keyframes screenShake {
  0% { transform: translate(0px, 0px); }
  20% { transform: translate(1px, -1px); }
  40% { transform: translate(-1px, 2px); }
  60% { transform: translate(2px, 0px); }
  80% { transform: translate(-2px, -1px); }
  100% { transform: translate(0px, 0px); }
}

.screen-shake {
  animation: screenShake 0.4s ease-in-out;
}
}
#fw-section-custom-html-536e149a-893c-49fd-ab84-2bf4eb4a373e {

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: black;
  color: white;
  font-family: 'Georgia', serif;
}

main {
  padding: 100px 20px;
  text-align: center;
}

footer {
  background: radial-gradient(circle at center, #1b1b1b, #000);
  border-top: 2px solid #660000;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 -2px 20px rgba(100, 0, 0, 0.6);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

footer h2 {
  margin-bottom: 10px;
  color: #ffdddd;
  text-shadow: 0 0 5px #660000;
}

footer p {
  font-size: 1.1em;
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-credits {
  font-size: 0.9em;
  color: #777;
}

.footer-sigil {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 1.4em;
  color: #993333;
  opacity: 0.4;
  transform: rotate(-20deg);
  pointer-events: none;
}

.patreon-button {
  display: inline-block;
  margin: 10px auto 20px;
  padding: 10px 20px;
  background-color: #660000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ffdddd;
  border-radius: 6px;
  box-shadow: 0 0 10px #660000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.patreon-button:hover {
  background-color: #990000;
  box-shadow: 0 0 20px #ff4444;
}
}