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

/* 1. BASE STYLES & BACKGROUND GRID */
body {
    background-color: var(--void-black);
    /* UNIQUE PANTS GRID: Cyan and Blood Red */
    background-image: 
        radial-gradient(var(--electric-cyan) 1.5px, transparent 1.5px),
        radial-gradient(var(--blood-red) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alignment for the Left-Shift */
    font-family: 'Arial Black', sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 2. NAVIGATION BUTTON */
.back-nav {
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    padding-left: 5%; /* Matches the article margin */
}

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

/* 3. THE "LEFT-SHIFT" MANIFESTO CONTAINER */
.manifesto-container {
    width: 60%;
    max-width: 850px;
    margin-top: 120px;
    margin-left: 5%; /* Anchors the article to the left */
    margin-right: auto;
    background: rgba(0, 0, 0, 0.95);
    border: 10px double var(--electric-cyan);
    padding: 50px;
    position: relative;
    transform: rotate(-0.5deg); /* The original wacky tilt */
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
    margin-bottom: 100px;
}

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

/* TRASH ADS: Your wacky sidebar blocks */
.trash-ad {
    background: var(--blood-red);
    border: 3px solid white;
    color: white;
    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(--laser-yellow);
    color: black;
    transform: rotate(-3deg);
}

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

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

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

/* DATA GRID */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 2px dashed var(--blood-red);
    padding-top: 20px;
}
.data-item { background: #0a0a0a; padding: 15px; border-left: 5px solid var(--toxic-green); }
.data-label { color: var(--laser-yellow); font-size: 0.7rem; display: block; }

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

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

/* 7. MOBILE FIX: Screens smaller than 1250px */
@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;
    }
}
