: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(--laser-yellow) 1px, transparent 1px), 
        radial-gradient(var(--neon-pink) 0.5px, transparent 0.5px);
    background-size: 50px 50px, 20px 20px;
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; /* Aligns content to the left */
    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(--laser-yellow); 
    color: black; 
    padding: 10px 25px; 
    text-decoration: none; 
    border: 4px solid white; 
    box-shadow: 6px 6px 0px var(--toxic-green); 
}

/* MAIN CONTAINER - SHIFTED LEFT */
.manifesto-container {
    width: 60%; 
    max-width: 850px; 
    margin-top: 120px; 
    margin-left: 5%; /* Fixes the "blank left side" */
    margin-right: auto;
    background: rgba(0, 0, 0, 0.98);
    border: 10px double var(--laser-yellow); 
    padding: 60px; 
    position: relative;
    transform: rotate(-0.8deg); 
    box-shadow: 25px 25px 0px rgba(255, 255, 0, 0.1); 
    margin-bottom: 100px;
}

/* WIDE AD SIDEBAR - FOR REVENUE */
.ad-sidebar { 
    position: absolute; 
    right: -360px; /* Pushed into the wide right-side void */
    top: 50px; 
    width: 320px; 
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trash-ad { 
    background: var(--blood-red); 
    color: white; 
    padding: 10px; 
    font-size: 0.7rem; 
    transform: rotate(8deg); 
    border: 2px solid white;
    animation: jitter 0.2s infinite;
}

/* THE GHOST AD (High-Paying 300x600 slot) */
.insane-ghost-ad {
    width: 300px;
    min-height: 600px;
    background: #000;
    border: 4px solid var(--electric-cyan);
    box-shadow: 10px 10px 0px var(--neon-pink);
    animation: jitter 0.3s infinite;
    position: relative;
}

.insane-ghost-ad::before {
    content: "ADVERTISEMENT";
    position: absolute;
    top: -15px;
    left: 0;
    color: var(--electric-cyan);
    font-size: 0.6rem;
}

/* CONTENT STYLES */
h1 { font-size: 3rem; color: var(--laser-yellow); -webkit-text-stroke: 1px white; margin: 0; line-height: 1; }
h2 { color: var(--toxic-green); text-transform: uppercase; border-bottom: 2px solid var(--electric-cyan); margin-top: 50px; }
p { line-height: 1.8; font-size: 1.2rem; color: #ccc; margin-bottom: 25px; }
strong { color: var(--neon-pink); }

.expert-box {
    background: #111; border-left: 10px solid var(--neon-pink); padding: 20px;
    margin: 30px 0; font-family: 'Courier New', monospace; font-size: 0.9rem;
}

.data-corrupted {
    background: var(--blood-red); color: white; padding: 10px;
    text-align: center; letter-spacing: 10px; font-size: 0.8rem; margin: 40px 0;
    animation: flicker 0.1s infinite;
}

.survival-guide {
    border: 2px dashed var(--toxic-green); padding: 20px; margin-top: 40px;
}

@keyframes flicker { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }

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

/* MOBILE FIX */
@media (max-width: 1250px) {
    .ad-sidebar { 
        display: flex; 
        position: relative; 
        right: auto; 
        top: 20px; 
        width: 100%; 
        align-items: center; 
        transform: none;
    }
    .manifesto-container { 
        width: 90%; 
        margin-left: auto; 
        margin-right: auto; 
        padding: 30px;
    }
    .insane-ghost-ad { width: 100%; max-width: 320px; min-height: 250px; }
}

