body {
    background: black;
    color: #b30000;
    font-family: "Courier New", monospace;
    margin: 0;
}

/* grainy overlay */
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("https://i.pinimg.com/736x/b4/b8/88/b4b888d5cc2e50c64caa2af5b271e05b.jpg");
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

/* 🔥 DARK OVERLAY (keeps text readable) */
body::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    z-index: -1;
}

/* 🩸 BACKGROUND SLIDESHOW */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    z-index: -2;
    opacity: 0;

    animation: fadeCycle 60s infinite;
}

/* your images */
.bg1 { background-image: url("https://i.pinimg.com/736x/e4/1a/81/e41a81b0eb3e9a755843a366d387f004.jpg"); animation-delay: 0s; }
.bg2 { background-image: url("https://i.pinimg.com/736x/45/30/ea/4530ea6a181875d6269602132e7e9fe1.jpg"); animation-delay: 10s; }
.bg3 { background-image: url("https://i.pinimg.com/736x/5b/db/d4/5bdbd461d32d77a5d672c5a3487fc2f9.jpg"); animation-delay: 20s; }
.bg4 { background-image: url("https://i.pinimg.com/736x/79/c4/0c/79c40cf5c57b54de4d8790b9e1c59de3.jpg"); animation-delay: 30s; }
.bg5 { background-image: url("https://i.pinimg.com/736x/c7/31/c9/c731c9de4cc222ac9a8b6c820e5034c5.jpg"); animation-delay: 40s; }
.bg6 { background-image: url("https://i.pinimg.com/736x/4b/e5/bb/4be5bb2d12b3a0f6049e0690593931b8.jpg"); animation-delay: 50s; }
.bg7 { background-image: url("https://i.pinimg.com/736x/99/f6/dc/99f6dcb23c00fe3134c106a3e7cd790c.jpg"); animation-delay: 60s; }
/* fade animation */
@keyframes fadeCycle {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    15%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
}

/* layout */
.container {
    width: 900px;
    margin: auto;
    border: 2px solid #660000;
    box-shadow: 0 0 20px red;
}

/* header */
.header {
    background: #0a0a0a;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #660000;
}

.header h1 {
    margin: 0;
    font-size: 40px;
    letter-spacing: 3px;
}

/* title row (images + text) */
.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.side-img {
    width: 100px;
    height: 100px;
}

/* flashing text */
@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.flash {
    animation: flash 2s infinite;
}

/* main layout */
.main {
    display: flex;
}

/* sidebar */
.sidebar {
    width: 200px;
    background: #050505;
    padding: 15px;
    border-right: 1px solid #660000;
}

.sidebar h2 {
    font-size: 16px;
    border-bottom: 1px solid #660000;
}

.sidebar a {
    display: block;
    color: #b30000;
    text-decoration: none;
    margin: 8px 0;
}

.sidebar a:hover {
    color: red;
    text-shadow: 0 0 5px red;
}

.divider {
    height: 1px;
    background: #660000;
    margin: 15px 0;
}

.quote {
    font-size: 11px;
    color: #777;

}

/* content */
.content {
    flex: 1;
    padding: 20px;
}

.content h2 {
    border-bottom: 1px solid #660000;
}

/* scrollbox */
.scrollbox {
    height: 120px;
    overflow-y: scroll;
    border: 1px solid #660000;
    padding: 10px;
    background: #0a0a0a;
}

/* footer */
.footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #660000;
    font-size: 12px;
    color: #555;
}

.sidebar-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;

    object-fit: contain;
}
.sidebar-img {
    border: none;
}
.bottom-left-img {
    margin-top: 10px;
}

.bottom-left-img {
    width: 100%;
    overflow: hidden;     /* stops spill */
}

.bottom-left-img img {
    width: 100%;
    max-width: 150px;     /* hard cap */
    height: auto;
    display: block;
    
}

