/* RESET AND CHAOS BASE */
body {
    background-color: black;
    background-image: url('background_tiled.gif'); /* Must be a jarring tiled image */
    color: lime; /* Neon Green */
    font-family: 'Comic Sans MS', sans-serif; /* The most chaotic font */
    margin: 0;
    padding: 0;
    cursor: url('cursor_custom.cur'), auto; /* Custom cursor */
    text-align: center;
}

h1, h2 {
    color: #FF00FF; /* Hot Pink */
    text-shadow: 2px 2px #00FFFF; /* Electric Blue Shadow */
    font-size: 3em;
    animation: shake 0.5s infinite alternate; /* Constant Shaking */
}

/* MARQUEE STYLING */
#header-banner {
    background-color: purple;
    border: 5px solid yellow;
    padding: 5px;
}

.marquee-text-wrapper {
    background-color: black;
    border: 3px dashed red;
    padding: 5px;
    height: 60px;
    overflow: hidden;
    margin: 10px auto;
    width: 80%;
}

/* BLINKING EFFECT (for modern browsers) */
@keyframes blinker {
    50% { opacity: 0; }
}

.blink a {
    color: red !important;
    text-decoration: underline;
    font-size: 2em;
    font-weight: bold;
    animation: blinker 0.1s step-end infinite; /* Fast, annoying blink */
}

/* IMAGES AND GIFS */
img {
    border: 2px solid yellow;
    margin: 5px;
}

.hit-counter, .netscape_badge {
    display: block;
    margin: 10px auto;
}

.flashing-banner {
    width: 90%;
    max-width: 600px;
    height: auto;
    border: 10px double red;
    animation: pulse 1s infinite alternate; /* Pulsing effect */
}

/* ANIMATIONS */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    100% { transform: translate(-1px, -1px) rotate(1deg); }
}

@keyframes pulse {
    0% { border-color: red; box-shadow: 0 0 10px red; }
    100% { border-color: yellow; box-shadow: 0 0 20px yellow; }
}

/* LAYOUT (Intentional poor design) */
#content-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 20px auto;
    border: 4px dotted hotpink;
    padding: 10px;
}

.sidebar {
    width: 200px;
    padding: 10px;
    background-color: #330033; /* Dark Purple */
    border-right: 3px solid white;
    font-size: 1.2em;
}

.main-body {
    flex-grow: 1;
    padding: 0 20px;
    text-align: left;
}
