html, body {
    width: 100%;
    min-height: 100vh; /* FORCES body to fill the screen */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the BG from scrolling */
    text-align: center;
    cursor: url('images/Custom\ Cursor.png'), auto;
}


span {
    font-family: "iceland", system-ui;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke: 0.5px rgb(0, 0, 0);
    font-size: 2rem;
    font-style: normal;
    color: rgb(255, 255, 255);
    text-shadow: 9px 5px 3px #000000;
    top: 2px;
}

hr {
  height: 2px;
  background-color: #ff0000;
  width: 100%;
  opacity: 50%;
}


h1 { font-family: "Manufacturing Consent", system-ui;
    font-weight: 100;
    font-style: normal;
	-webkit-text-stroke: 2px rgb(0, 0, 0);
    text-shadow: #ff0000 3% 4% 5%;
	font-size: 4.5rem;
    font-style: normal;
	color: rgb(255, 255, 255);
	text-shadow: 2px 5px 3px #ff0000;
	margin:-1rem;
    background-image: url(/images/H1\ New\ Background.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 1rem;
    border: red solid 2px;
}



h2 {
    font-family: "Manufacturing Consent", system-ui;
    font-style: normal;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    font-size: 3rem;
    text-shadow: #ffffff 1px 2px 1px;
    color: rgb(13, 255, 0);
    display: inline-block;
    margin: 20px auto;
    width: auto;
    border: 2px solid #ff0000; 
    padding: 15px 30px;    /* Adjust these numbers to change the space inside the border */
    border-radius: 12px;
    background-image: url("/images/H1\ New\ Background.png");
    /* 'contain' ensures the whole image fits inside the box without being cut off */
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    white-space: nowrap;
}

h3 {
    font-family: "Zen Dots", system-ui;
    font-style: normal;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    font-size: 1.6rem;
    text-shadow: #000000 1px 2px 1px;
    color: rgb(253, 7, 7);
    display:flex;
    text-align:center;
    margin: 1.5px auto;
    width: auto;
    border: 2px solid #ff0000; 
    padding: 10px 10px;    /* Adjust these numbers to change the space inside the border */
    border-radius: 12px;
    background-image: url("/images/ANAL.png");
    /* 'contain' ensures the whole image fits inside the box without being cut off */
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    white-space: nowrap;
}


a {
    font-family: "cinzel decorative", serif;
    font-weight: 400;
    font-style: normal;
	-webkit-text-stroke: 0.5px rgb(0, 0, 0);
	font-size: 1.5rem;
    font-style: normal;
	color: rgb(255, 255, 255);
	text-shadow: 1px 4px 0px #ff0000;
}

a:hover {
	-webkit-text-stroke: 1px rgb(60, 255, 0);
    font-style: normal;
	color: black;
	opacity: 1;
}

/* ==== GRID CONTAINER ==== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
    width: 90%;
    margin: 0 auto; /* Remove the large negative margin */
    padding-top: 20px;
    animation: simpleFade 0.5s ease forwards;
}

/* ==== GRID ITEMS (CARDS) ==== */
.grid-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #a3a3a3;
    padding: 3px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 1px;
    transition: transform 1s ease, border-color 1s ease, box-shadow 1s ease;
    font-family: "iceland";
    text-decoration: none;
    margin-top: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ==== IMAGE STYLING ==== */
.grid-item img {
    width: 45%;              /* all images same width */
    aspect-ratio: 1 / 1;     /* keeps same shape */
    object-fit: cover;       /* crops evenly inside box */
    border-radius: 4px;
    margin-bottom: 15px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.grid-item:hover img {
    filter: grayscale(0%);
}

/* ==== BACKGROUND IMAGE (OPTIONAL) ==== */
.grid-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/images/KVLT POOP.png"); /* optional background image */
    background-size: cover;
    background-position: center;
    opacity: 0.1;   /* subtle behind image */
    z-index: 0;

    /* Glow layer on hover */
    box-shadow: 0 0 0 rgba(255, 0, 0, 0); /* default no glow */
    transition: opacity 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

/* Hover glow effect */
.grid-item:hover::before {
    opacity: 0.15;   /* slightly more visible */
    box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.6); /* red glow */
    transform: scale(1.05); /* subtle expansion */
}

/* Ensure content stays above pseudo-element */
.grid-item > * {
    position: relative;
    z-index: 1;
}

/* Card hover transform & border glow */
.grid-item:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* ==== RESPONSIVE GRID ==== */
@media (max-width: 800px){
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        width: 95%;
    }
}

@media (max-width: 500px){
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==== OPTIONAL CARD SCALE TWEAK ==== */
.card-class-name { 
    transform: scale(0.85);
    margin: -5px;
}

.support-dropdown[open] .magazine-tab-container.integrated-zine {
    position: fixed; /* Changed from absolute to fixed to stay centered on screen */
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw; 
    max-width: 900px;
    height: 70vh; /* Set a height so it doesn't vanish */
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
    padding: 20px;
    z-index: 10001; /* Higher than the player */
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px #000, 0 0 20px rgba(255, 0, 0, 0.5);
}

.support-dropdown summary {
    list-style: none; /* Removes the default arrow */
    outline: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.support-dropdown summary::-webkit-details-marker {
    display: none;
}

.support-dropdown summary h2:hover {
    color: #0dff00;
    transform: scale(1.02);
    transition: 0.2s;
}

.support-dropdown[open] .grid-container {
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

/* Optional size tweak */
.card-class-name { 
    transform: scale(0.85);
    margin: -5px;
}

/* Smooth fade-in animation when it opens */
/* 1. Define the Animation */
@keyframes simpleFadeIn {
    from {
        opacity: 0;
        /* Start at the center (50/50) but tiny */
        transform: translate(-50%, 0%) scale(0.7);
    }
    to {
        opacity: 1;
        /* End at the center (50/50) at full size */
        transform: translate(-50%, 0%) scale(1);
    }
}


/* 2. Apply to the Grid Container */
.support-dropdown[open] .grid-container{
    animation: simpleFadeIn 0.4s ease-out forwards;
    /* Keeps the layout fixed as established previously */
    position: fixed;
    top: 50%;
    left: 50%;
}

/* Smooth fade-in animation when it opens */
/* 1. Define the Animation */
@keyframes simpleFadeIn {
    from {
        opacity: 0;
        /* Start at the center (50/50) but tiny */
        transform: translate(-50%, 0%) scale(0.7);
    }
    to {
        opacity: 1;
        /* End at the center (50/50) at full size */
        transform: translate(-50%, 0%) scale(1);
    }
}


/* 2. Apply to the Grid Container */
.support-dropdown[open] .quiz-container{
    animation: simpleFadeIn 0.4s ease-out forwards;
    /* Keeps the layout fixed as established previously */
    position: fixed;
    top: 50%;
    left: 50%;
}

/* Smooth fade-in animation when it opens */
/* 1. Define the Animation */
@keyframes simpleFadeIn {
    from {
        opacity: 0;
        /* Start at the center (50/50) but tiny */
        transform: translate(-50%, 0%) scale(0.7);
    }
    to {
        opacity: 1;
        /* End at the center (50/50) at full size */
        transform: translate(-50%, 0%) scale(1);
    }
}

/* 1. Define the Animation */
@keyframes zineFadeIn {
    from {
        opacity: 0;
        /* Start at the center (50/50) but tiny */
        transform: translate(-50%, -50%) scale(0.7);
    }
    to {
        opacity: 1;
        /* End at the center (50/50) at full size */
        transform: translate(-50%, -50%) scale(1);
    }
}


/* 2. Apply to the Magazine */
.support-dropdown[open] .magazine-tab-container.integrated-zine {
    animation: zineFadeIn 0.4s ease-out forwards;
    /* Keeps the layout fixed as established previously */
    position: fixed;
    top: 50%;
    left: 50%;
}

/* TERMINAL OVERRIDE STYLES */
#system-override {
    position: fixed;
    bottom: 4.688rem; /* 75px */
    left: 1.25rem;    /* 20px */
    padding: 0.625rem 1.25rem;
    background: #000;
    color: #00ff00; /* Terminal Green */
    border: 0.125rem solid #00ff00;
    font-family: "Special Elite", monospace;
    cursor: pointer;
    z-index: 10002;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    transition: all 0.3s ease;
}

#system-override:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
}

/* THE 1960s HORROR VIBE */
body.terminal-mode {
    background-color: #0a0a0a !important;
    overflow-x: hidden;
    /* Vignette effect: darkens the corners of the screen */
    box-shadow: inset 0 0 200px #000;
}

/* SAFE FILM GRAIN */
body.terminal-mode::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.1; /* Lowered opacity for safety */
    z-index: 10000;
    pointer-events: none;
    /* We remove the rapid 'grain-move' animation entirely */
}
/* SCANLINES (Thick and Dusty) */
#terminal-scanline {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 2px,
        transparent 2px,
        transparent 4px
    );
    z-index: 10001;
    pointer-events: none;
}

body.terminal-mode #terminal-scanline {
    display: block;
}

/* ANIMATIONS */
@keyframes grain-move {
    0% { transform: translate(0,0); }
    25% { transform: translate(-1%, -2%); }
    50% { transform: translate(-2%, 1%); }
    75% { transform: translate(1%, -1%); }
    100% { transform: translate(-1%, 2%); }
}

/* Gritty Text */
body.terminal-mode * {
    color: #eee !important;
    text-shadow: 0 0 2px rgba(255,255,255,0.3);
}

.tab-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: 40px auto;
    flex-wrap: wrap; /* Allows content to drop to the next line */
}

.support-dropdown {
    width: auto;
    /* This prevents the button from growing when the tab opens */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* This forces the opened content to take up its own row below the buttons */
.support-dropdown[open] .grid-container,
.support-dropdown[open] .quiz-container {
    position: absolute; 
    top: 300px; /* Adjust this based on where your tabs sit */
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1200px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff0000;
    padding: 20px;
}

#custom-cursor {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(255,0,0,1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Important: allows clicking through the glow */
    z-index: 99999;
    transition: transform 0.1s ease-out;
}


/* quiz */

/* Container to hold both dropdowns side-by-side */
.dropdown-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
    align-items: flex-start; /* Keeps them aligned at the top */
}

/* Share the same styling as the support dropdown for consistency */
.quiz-dropdown {
    width: 100%; /* Flex will handle the actual width */
    max-width: 500px;
}

/* Specific styling for the quiz box inside the dropdown */
.quiz-container {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    padding: 20px;
    margin: 30px;
    border-radius: 8px;
    font-family: "Special Elite", sans-serif;
    position: relative;
}

.close-quiz {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ff0000; /* Red to match your theme */
    font-family: "Manufacturing Consent", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.close-quiz:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Mobile Responsive: Stack them on top of each other */
@media (max-width: 800px) {
    .dropdown-row {
        flex-direction: column;
        align-items: center;
    }
    .support-dropdown, .quiz-dropdown {
        width: 100%;
    }
}

p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

hr {
    border: none;
    border-top: 1px solid #444;
    margin: 20px 0;
}

span {
    font-weight: bold;
    color:white;
    font-size: 2rem;
}

/* player */

        /* PLAYER DOCK: THIN BAR AT BOTTOM */
        .player-card-sticky {
            position: fixed !important;
            bottom: 0;
            left: 0 !important;
            width: 100% !important;
            height: 60px !important;
            background-image: url(/images/Image\ 2.jpg);
            border: solid 2px  rgba(255, 255, 255, 0.813);
            box-sizing: border-box;
            background-repeat: no-repeat;
            background-position: center;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
            z-index: 999999 !important;
            transition: all 0.5s;
            position: relative;
        }

        .player-card-sticky.close{
            bottom: -60px;
            #drop-down-button::after{
                transform: rotate(-45deg);
            }
            #drop-down-button::before{
                transform: rotate(45deg);
            }
        }

        #drop-down-button{
            width: 50px;
            height: 50px;
            background-color: rgba(0, 221, 11, 0.551);
            top: -50px;
            left: calc(15% - 25px);
            position: absolute;
            cursor: pointer;
        }

        #drop-down-button::after{
            content: "";
            display: block;
            position: absolute;
            width:25px;
            height: 5px;
            z-index: 5;
            background-color: #000000;
            top: 50%;
            left: 5px;
            transform: rotate(45deg);
            transition: all 0.5s;
            cursor: pointer;
        }

        #drop-down-button::before{
            content: "";
            display: block;
            position: absolute;
            width: 25px;
            height: 5px;
            z-index: 5;
            background-color: #000000;
            top: 50%;
            right: 5px;
            transform: rotate(-45deg);
            transition: all 0.5s;
            cursor: pointer;
        }



        /* PLAYLIST DRAWER: POPS UP */
        #playlist {
            display: none; 
            position: absolute !important;
            bottom: 57.5px !important; 
            left: 2px !important;
            width: fit-content !important;
            border: 1px solid rgb(0, 229, 255) !important;
            flex-direction: column !important;
            position: relative;
            max-height: 250px;
            overflow-y: fit-content;
            overflow-x: fit-content;
            z-index: 1000000 !important;
            background-image: url(/images/Untitled-6.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        #playlist.open {
            display: flex !important;
        }

        #status {  font-family: "Cinzel Decorative", serif;
                    font-weight: 400;
                    font-style: normal;
	                color: rgb(255, 255, 255);
                     font-size: 25px !important;
			        font-weight: 700;
                     -webkit-text-stroke: 0.5px  #ffa200;
                     text-shadow: 3px 4px 5px #22ff00;
                     background-color: rgba(0, 0, 0, 0.8);
                     cursor: pointer !important;
                    margin: 0 !important;
                     padding-right: 20px;
                     max-width: 50%;
                     overflow: hidden;
                     text-wrap: nowrap;
                     text-overflow: ellipsis;
        }

        audio {
            flex-grow: 1 !important;
            width: 50px;
            height: 40px !important;
            filter: invert(1) hue-rotate(180deg) brightness(1.5) !important;
			padding-right: 10px;
        }
		
        .track {
  font-family: "Cinzel Decorative", serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.2rem;
  -webkit-text-stroke: 0.5px #000000;
            padding: 5px !important;
            color: #00f2ff !important;
            background-color: #00000078;
            cursor: pointer !important;
            border-bottom: 1px solid #222 !important;
            text-align: left !important;
            text-shadow: 3px 3px 3px rgb(255, 0, 0);
            border: solid white;
            text-wrap: nowrap;
            font-weight: bold;
        }

        .track:hover { color: #00ff3c !important; background: #ff000025 !important; }
        .track.active { color: #fff !important; background: #220000 !important; }

/* magazine */

/* This ensures the 'Magazine' button is centered in the row */
.tab-row {
    display: flex;
    justify-content: center;
    gap: 40px; 
    margin-top: 20px;
}

/* The 'Integrated' logic for that middle void */
.support-dropdown[open] .magazine-tab-container.integrated-zine {
    /* 1. Fix it to the screen so it doesn't push the body height */
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* 2. Constrain the size so it never leaves the viewport */
    width: 90vw;
    height: 85vh; 
    max-width: 1100px;
    max-height: 80%; /* Adjust based on your preference */
    margin-top: auto;
    display: flex;
    top: 55%;

    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #ff0000;
    padding: 15px;
    z-index: 9999; /* Ensure it's above everything */
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px #000;
}

.magazine-viewer {
    flex-grow: 1; /* Fills the remaining space in the container */
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents the viewer itself from leaking out */
    background: #000;
}

.magazine-viewer embed {
    width: 100%;
    height: 100%;
    border: none;
}
/* chat */

:root {
    --primary-color: #710000;
    --terminal-green: #00ff00;
    --text-dim: #aaa;
}

.chat-wrapper {
    position: fixed;
    bottom: 69px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: 2px solid #000;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.chat-container {
    display: none; /* Managed by JS */
    flex-direction: column;
    width: 320px;
    height: 450px;
    background: #000;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    position: absolute;
    bottom: 80px;
    right: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* HEADER FIXES */
.chat-header {
    padding: 10px;
    border-bottom: 1px solid var(--primary-color);
    background: #000;
}

.chat-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header span {
    font-family: 'Special Elite', serif;
    font-size: 1.2rem; /* Fixed giant 2rem size */
    color: white;
    margin: 0;
}

.xbutton {
    background: transparent;
    border: none;
    color: var(--terminal-green);
    font-size: 20px;
    cursor: pointer;
}

/* USER LIST AREA */
#userListContainer {
    background: rgba(0, 255, 0, 0.05);
    padding: 8px;
    border-bottom: 1px solid #333;
}

.u {
    font-family: 'Iceland', sans-serif;
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 10px;
}

.people {
    font-family: 'Iceland', sans-serif;
    color: var(--terminal-green);
    font-weight: bold;
    cursor: pointer;
}

#userList {
    margin: 5px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column; /* This stacks names vertically */
    gap: 5px;               /* Space between names */
}

#userList li {
    font-family: 'Iceland', sans-serif;
    color: var(--terminal-green);
    font-size: 13px;
    padding-left: 8px;
    border-left: 2px solid rgba(0, 255, 0, 0.3); /* Tactical vertical line */
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* MESSAGES AREA */
.chat-messages {
    flex: 1; /* This fills the void */
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 85%;
    font-size: 14px;
    font-family: 'Special Elite', sans-serif;
}

.message.user {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
}

.message.bot {
    background: transparent;
    color: #ff4444; /* Brighter red for readability */
    align-self: flex-start;
    border: 1px dashed var(--primary-color);
    width: 90%;
}

/* INPUT AREA */
.chat-input-area {
    padding: 10px;
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--primary-color);
}

.chat-input-area input {
    flex: 1;
    background: #111;
    color: white;
    border: 1px solid #444;
    padding: 8px;
    border-radius: 4px;
    outline: none;
}

.chat-input-area button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* MODAL STYLING */
#horror-warning {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000; /* Above everything else */
    font-family: 'Courier New', Courier, monospace;
}

.modal-hidden { display: none !important; }

.modal-content {
    background: #111;
    border: 2px solid #ff0000;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.modal-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.modal-buttons button {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
}

#proceed-horror:hover { background: #ff0000; border-color: #ff0000; }

#broadcast-timer {
    position: fixed;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%); /* Only centers horizontally */
    
    font-family: "Cinzel Decorative", serif;
    color: #ffffff;
    font-size: 2rem; /* Slightly smaller to be less intrusive */
    border: white solid 2px;
    
    /* Text Stroke & Glow */
    -webkit-text-stroke: #00eeff 0.2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 3px 4px 5px rgba(0, 0, 0, 0.5);
    
    z-index: 999; /* High enough to be seen, but below pop-up tabs */
    pointer-events: none; /* Allows users to click "through" it */
    
    /* Remove the solid black background to stop the "big block" look */
    background-image: url(/images/KVLT\ POOP.png);
    
    padding: 10px 20px;
    width: auto;
    white-space: nowrap;
}


#submission-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #000;
    color: red;
}

#submission-form input, #submission-form textarea {
    background: #000;
    color: #00ff00;
    padding: 10px;
    font-family: 'Courier New', monospace;
}

#submit-btn {
    background: #11a803;
    color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;

}

#submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

