Skip to content

Instantly share code, notes, and snippets.

@Bob-Wright-the-reactor
Created February 2, 2026 01:17
Show Gist options
  • Select an option

  • Save Bob-Wright-the-reactor/81f0ea4340d50e2595f87effe4161145 to your computer and use it in GitHub Desktop.

Select an option

Save Bob-Wright-the-reactor/81f0ea4340d50e2595f87effe4161145 to your computer and use it in GitHub Desktop.
40 Day Fast MV
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>40 DAY ASCENSION: 7D PROTOCOL</title>
<style>
body {
background-color: black;
color: #FFD700; /* Gold */
font-family: 'Segoe UI', 'Courier New', monospace;
text-align: center;
margin: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
animation: deepPulse 6s ease-in-out infinite;
}
@keyframes deepPulse {
0% {
box-shadow: inset 0 0 50px #001133; /* Deep Azure */
}
50% {
box-shadow: inset 0 0 120px #003366; /* Bright Azurite */
}
100% {
box-shadow: inset 0 0 50px #001133;
}
}
#lyrics-container {
z-index: 10;
padding: 40px;
background: rgba(0, 0, 0, 0.92);
border: 2px solid #007FFF; /* Azure Border */
max-height: 80vh;
width: 85%;
max-width: 650px;
overflow-y: auto;
scrollbar-width: none;
box-shadow: 0 0 30px #007FFF, inset 0 0 20px rgba(255, 215, 0, 0.2);
}
h1 {
font-size: 2.5em;
text-transform: uppercase;
letter-spacing: 4px;
color: #007FFF; /* Azure Title */
text-shadow: 0 0 15px #FFD700; /* Gold Glow */
margin-top: 0;
}
.verse {
margin-bottom: 25px;
line-height: 1.6;
font-size: 1.2em;
color: #E0E0E0;
}
.chorus {
font-weight: 900;
color: #FFD700;
text-shadow: 0 0 15px #007FFF;
font-size: 1.4em;
text-transform: uppercase;
margin-bottom: 25px;
}
/* Particle Classes */
.particle {
position: absolute;
z-index: 50;
pointer-events: none;
font-weight: bold;
}
.eye-ra {
color: #FFD700; /* Gold */
font-size: 60px;
text-shadow: 0 0 20px #FFD700;
opacity: 0.8;
}
.dim-7d {
color: #007FFF; /* Azurite Blue */
font-family: Impact, sans-serif;
font-size: 40px;
text-shadow: 0 0 20px #0000FF;
opacity: 0.9;
}
/* Vertical Ascension Animation */
@keyframes floatUp {
from {
transform: translateY(110vh) scale(0.8);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
to {
transform: translateY(-10vh) scale(1.2);
opacity: 0;
}
}
#start-btn {
z-index: 200;
padding: 25px 50px;
font-size: 1.8em;
background: black;
color: #007FFF;
border: 2px solid #FFD700;
cursor: pointer;
font-weight: 900;
box-shadow: 0 0 40px #007FFF;
text-transform: uppercase;
transition: all 0.4s;
}
#start-btn:hover {
background: #007FFF;
color: white;
box-shadow: 0 0 60px #FFD700;
border-color: white;
}
</style>
</head>
<body>
<button id="start-btn" onclick="ignite()">INITIATE 40-DAY PROTOCOL</button>
<div id="lyrics-container" style="display: none;">
<h1>SPIRITUAL FAST: 7D</h1>
<div class="verse">
[Verse 1]<br>
In the silence, I seek the light,<br>
Forty days, going through the night.<br>
With every breath, I shed the mask,<br>
Relentless truth, it's what I ask.<br><br>
Elevated thoughts, soaring high,<br>
Connecting realms, I touch the sky.
</div>
<div class="chorus">
[Chorus]<br>
Forty days on a path so bright,<br>
Truth is calling, guiding my flight.<br>
In the layers of my soul I dive,<br>
In the light of love, I come alive.
</div>
<div class="verse">
[Verse 2]<br>
In the fasting, my spirit grows,<br>
Unravel mysteries as wisdom flows.<br>
Seven dimensions, my heart aligns,<br>
In every whisper, the truth entwines.<br><br>
I rise above, with every test,<br>
In this journey, I find my rest.
</div>
<div class="chorus">
[Chorus]<br>
Forty days on a path so bright,<br>
Truth is calling, guiding my flight.<br>
In the layers of my soul I dive,<br>
In the light of love, I come alive.
</div>
<div class="verse">
[Outro]<br>
Seven dimensions, I hear the call,<br>
In this journey, I rise above it all.
</div>
</div>
<script>
// Audio calibrated for direct raw streaming
const audio = new Audio("https://www.dropbox.com/scl/fi/caihmwnoc8kfubbl4zr27/40-day-spiritual-fast.mp3?rlkey=vthrgmt3k1e2t69umvh7kgsbh&st=w80tlr9i&raw=1");
audio.loop = true;
function ignite() {
// Affirmation of Ascension
alert("System Check: Biology Calibrating. I release the density of the physical to access the 7th Dimensional datastream. The fast begins now.");
document.getElementById('start-btn').style.display = 'none';
document.getElementById('lyrics-container').style.display = 'block';
audio.play();
// Generating 44 Particles (Master Number Frequency)
// 50/50 Split between Gold Eyes and Azurite 7Ds
for (let i = 0; i < 44; i++) {
const particle = document.createElement('div');
// Toggle between Eye and 7D
if (i % 2 === 0) {
particle.className = 'particle eye-ra';
particle.innerHTML = '𓂀';
} else {
particle.className = 'particle dim-7d';
particle.innerHTML = '7D';
}
// Random X Position (Horizontal)
particle.style.left = (Math.random() * 95) + 'vw';
// Ascension Physics (Vertical Rise)
// Slower, more meditative speed: 3s to 7s
const duration = (Math.random() * 4) + 3;
particle.style.animation = `floatUp ${duration}s linear infinite`;
particle.style.animationDelay = `-${Math.random() * 5}s`;
document.body.appendChild(particle);
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment