/* 1. GLOBAL RESET */
* {
    box-sizing: border-box;
}

body {
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
}

/* 2. BUTTERFLY BLIZZARD (GHOST LAYER) */
.bfly-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important; 
    z-index: -1 !important; 
}

.bfly-zone span {
    position: absolute;
    top: -50px;
    font-size: 24px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    animation: FALLING 6s linear infinite;
}

@keyframes FALLING {
    0% { top: -10%; transform: rotate(0deg); }
    100% { top: 110%; transform: rotate(360deg); }
}

/* Spread butterflies out */
.bfly-zone span:nth-child(1) { left: 5%; animation-delay: 0s; }
.bfly-zone span:nth-child(2) { left: 25%; animation-delay: 2s; }
.bfly-zone span:nth-child(3) { left: 45%; animation-delay: 4s; }
.bfly-zone span:nth-child(4) { left: 65%; animation-delay: 1s; }
.bfly-zone span:nth-child(5) { left: 85%; animation-delay: 3s; }

/* 3. MAIN CONTAINER & BUTTONS */
.main-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 450px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #00ffff;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    box-shadow: 0 0 20px #00ffff;
}

h1, p, .intro-text {
    color: #ff00ff !important;
    text-shadow: 0 0 10px #ff00ff;
}

.big-neon-btn {
    display: block;
    padding: 15px;
    margin: 15px 0;
    color: #00ffff !important;
    border: 2px solid #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    background: black;
}

/* 4. THE IMAGE LOCKDOWN (STOP THE GIANT PICS) */
img {
    max-width: 100% !important; /* Forces images to fit the screen */
    height: auto !important;
    border: 2px solid #ff00ff; /* Purple border for selfies */
    margin: 10px 0;
    box-shadow: 0 0 10px #ff00ff;
}

/* For your Selfie/GIF Grid */
.selfie-grid, .gif-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    .selfie-grid img {
    width: 95%;
    max-width: 350px;
    height: auto;
    border: 2px solid #ff00ff; /* Purple border to pop against the cyan box */
    margin: 10px 0;
    box-shadow: 0 0 10px #ff00ff;
}
/* THE NUCLEAR OPTION */
* {
    color: #ff00ff !important; /* Force everything to Neon Purple */
}

/* Except for specific elements we WANT to be Cyan */
a, .big-neon-btn, .mood-label {
    color: #00ffff !important; 
    text-decoration: none !important;
}

/* Fix the glow so it's not navy either */
h1, h2, .big-neon-btn {
    text-shadow: 0 0 10px #ff00ff !important;
    border-color: #00ffff !important;
}
<style>
    /* THE ADMIN DARKROOM FIX */
    html, body {
        background-color: #000000 !important; /* Forces background to black */
        margin: 0;
        padding: 0;
        min-height: 100vh;
    }

    .main-container {
        background-color: #000000 !important; /* Inside of the box also black */
        border: 2px solid #ff0000;
        box-shadow: 0 0 20px #ff0000;
        margin: 20px auto;
        padding: 20px;
        max-width: 600px;
        min-height: 80vh;
    }

    /* Keep your text colors sharp against the black */
    p, li { color: #ffffff !important; } /* White text for readability */
    h1 { color: #ff0000 !important; }
    h3 { color: #00ffff !important; }
</style>
<style>
    /* BANISH THE NAVY FOREVER */
    * {
        color: #ff00ff !important; /* Forces everything to Bright Pink/Purple */
        text-shadow: 0 0 8px #ff00ff; /* Adds the neon glow */
    }

    body {
        background-color: #000000 !important;
    }

    /* THE COMMAND BOXES */
    .command-box {
        border: 2px solid #ff00ff; /* Pink Borders */
        background: #000;
        margin-bottom: 30px;
        padding: 15px;
        box-shadow: inset 0 0 10px #ff00ff, 0 0 10px #ff00ff;
    }

    /* THE LINK ITEMS */
    .link-item {
        display: block;
        margin: 15px 0;
        text-decoration: none;
        border-left: 3px solid #00ffff; /* Cyan accent for contrast */
        padding-left: 10px;
    }

    .link-item:hover {
        background: rgba(255, 0, 255, 0.2);
        color: #ffffff !important; /* Turns white on hover for clarity */
    }

    .link-desc {
        color: #00ffff !important; /* Descriptions in Cyan to break up the pink */
        text-shadow: 0 0 5px #00ffff;
        display: block;
        font-size: 0.8rem;
    }

    /* THE BLACKLIST */
    .blacklist-zone {
        border: 2px double #ff0000; /* Red for Danger */
        color: #ff0000 !important;
        text-shadow: 0 0 10px #ff0000;
        padding: 15px;
    }
</style>
<style>
    /* UNIVERSAL CONTRAST FIX */
    * {
        color: #ff00ff !important; /* Keep the Neon Pink */
        text-shadow: 0 0 5px #ff00ff;
        font-weight: 500; /* Makes text slightly thicker for visibility */
    }

    /* THE DESCRIPTIONS (Swapped from Blue to Ice White) */
    .link-desc {
        color: #e0f7fa !important; /* Pale Ice Blue - much easier to see */
        text-shadow: 0 0 3px #ffffff;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* THE LINK TITLES (Solid White for maximum cut-through) */
    .link-title {
        color: #ffffff !important;
        text-shadow: 0 0 10px #00ffff; /* Keeps a blue "glow" without being hard to read */
        text-transform: uppercase;
    }

    /* THE BORDERS */
    .command-box {
        border: 2px solid #ff00ff;
        box-shadow: 0 0 15px rgba(255, 0, 255, 0.5); /* Softened glow so it doesn't bleed into the text */
    }
</style>
/* THE NUCLEAR LINK OVERRIDE */
a, a:link, a:visited, a:active {
    color: #ff00ff !important; /* Force Pink */
    text-decoration: none !important;
    text-shadow: 0 0 8px #ff00ff !important;
}

a:hover {
    color: #ffffff !important; /* Force White on hover */
    text-shadow: 0 0 15px #00ffff !important;
}

/* This forces the descriptions inside the links to stay Ice Blue */
a .link-desc {
    color: #e0f7fa !important;
}


    width: 100%;
}
