:root {
    --void-black: #050505;
    --neon-pink: #FF00FF;
    --toxic-green: #39FF14;
    --electric-cyan: #00FFFF;
    --laser-yellow: #FFFF00;
    --blood-red: #FF0000;
}

body {
    background-color: var(--void-black);
    background-image: 
        radial-gradient(var(--blood-red) 1.5px, transparent 1.5px),
        radial-gradient(var(--toxic-green) 1px, transparent 1px);
    background-size: 40px 40px, 15px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Arial Black', sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* BACK NAVIGATION */
.back-nav {
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.void-btn {
    background: var(--electric-cyan);
    color: black;
    padding: 10px 25px;
    text-decoration: none;
    border: 4px solid white;
    box-shadow: 6px 6px 0px var(--blood-red);
    font-size: 1rem;
}

/* MAIN CONTAINER - SHIFTED LEFT */
.manifesto-container {
    width: 60%; /* Narrowed to allow sidebar room */
    max-width: 850px;
    margin-top: 120px;
    margin-left: 5%; /* Docks article to the left */
    margin-right: auto;
    background: rgba(0, 0, 0, 0.95);
    border: 10px double var(--laser-yellow);
    padding: 50px;
    position: relative;
    transform: rotate(0.5deg); /* Kept original tilt */
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.2);
    margin-bottom: 100px;
}

.incident-header {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

/* RADAR BOX */
.radar-box {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #111 20%, var(--void-black) 100%);
    border: 5px solid var(--toxic-green);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--toxic-green);
    animation: scan 2s linear infinite;
}

@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }

/* TEXT STYLING */
h1 { font-size: 2.5rem; color: var(--toxic-green); -webkit-text-stroke: 1px white; margin: 0; }
h2 { color: var(--electric-cyan); text-transform: uppercase; letter-spacing: 3px; margin-top: 40px; border-bottom: 2px solid var(--neon-pink); padding-bottom: 10px; }
p { line-height: 1.8; font-size: 1.2rem; color: #ddd; margin-bottom: 20px; }
strong { color: var(--laser-yellow); }

/* DATA GRID */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 2px dashed var(--electric-cyan);
    padding-top: 20px;
}

.data-item { background: #0a0a0a; padding: 15px; border-left: 5px solid var(--neon-pink); }
.data-label { color: var(--laser-yellow); font-size: 0.7rem; display: block; }

/* WITNESS LOGS */
.witness-log {
    margin-top: 40px;
    background: #000;
    border: 2px solid var(--electric-cyan);
    padding: 30px;
    font-family: 'Courier New', monospace;
    position: relative;
}

.witness-log::before {
    content: "DECRYPTED TESTIMONIALS";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--electric-cyan);
    color: black;
    font-size: 0.7rem;
    padding: 2px 8px;
}

/* ADS SIDEBAR - MADE WIDER */
.ad-sidebar {
    position: absolute;
    right: -360px; /* Pushed into the wide right-side void */
    top: 50px;
    width: 320px; /* Wide enough for 300px ads */
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: rotate(-0.5deg); /* Kept original tilt */
}

.trash-ad {
    background: var(--laser-yellow);
    border: 3px solid var(--blood-red);
    color: black;
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
    transform: rotate(5deg);
    box-shadow: 5px 5px 0px var(--electric-cyan);
    animation: jitter 0.2s infinite;
}

.trash-ad:nth-child(even) { background: var(--neon-pink); transform: rotate(-3deg); animation: jitter 0.3s infinite reverse; }

/* THE GHOST AD SLOT - WIDE REVENUE UNIT */
.insane-ghost-ad {
    width: 300px;
    min-height: 600px; /* Set for 300x600 Half-Page ads */
    background: rgba(0, 0, 0, 0.9);
    border: 5px solid var(--electric-cyan);
    padding: 10px;
    position: relative;
    transform: rotate(-2deg) skewX(1deg); 
    animation: jitter 0.4s infinite;    
    filter: hue-rotate(90deg) contrast(1.5); 
    box-shadow: 10px 10px 0px var(--blood-red);
}

.insane-ghost-ad::before {
    content: "STRANGE TRANSMISSION";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--electric-cyan);
    color: black;
    font-size: 0.6rem;
    padding: 2px 5px;
    z-index: 10;
}

.insane-ghost-ad ins {
    background: transparent !important;
}

@keyframes jitter {
    0% { transform: translate(0,0) rotate(5deg); }
    50% { transform: translate(2px, -2px) rotate(4deg); }
    100% { transform: translate(-1px, 1px) rotate(6deg); }
}

footer { margin-top: 20px; font-size: 12px; display: flex; gap: 20px; }
        footer a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
        footer a:hover { text-decoration: underline; color: #fff; }


@media (max-width: 1250px) {
    /* 1. Stop hiding the ads */
    .ad-sidebar { 
        display: flex; 
        position: relative; /* Unlocks it from the side */
        right: auto; 
        top: auto; 
        width: 100%; 
        align-items: center;
        margin-top: 50px; /* Pushes ads below the article */
        transform: none; 
    }

    /* 2. Center the article for better reading */
    .manifesto-container { 
        width: 90%; 
        margin-left: auto; 
        margin-right: auto; 
        transform: rotate(0.5deg); /* Keep the subtle "wacky" tilt */
    }

    /* 3. Make sure the big Ghost Ad fits on the phone screen */
    .insane-ghost-ad {
        width: 95%;
        max-width: 336px; /* Standard large mobile banner size */
        min-height: 280px;
        margin: 0 auto;
    }
}

