body {
    /* Sets the background to absolute pitch-black */
    background-color: #000000;

    /* Loads the artwork and centers it flawlessly */
    background-image: url('home-bg.png');
    background-repeat: no-repeat;
    background-position: top center;

    /* Keeps your clean 35% shrinkage (65% width) */
    background-size: 65% auto;

    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.construction-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Keeps Pikachu perfectly positioned */
    padding-top: 68vh; 
    
    /* Matches your background image width precisely */
    width: 65%;
    margin: 0 auto;

    /* Prevents any weird vertical overflow boxes */
    overflow: visible;

    /* ─── THE LEFT & RIGHT ONLY GLOW ─── */
    box-shadow: 
        300px 0 80px -140px rgba(74, 46, 128, 0.4),  /* Deep Right Glow */
        -300px 0 80px -140px rgba(74, 46, 128, 0.4); /* Deep Left Glow */
}