/* ===================================
   Boxed Layout Override
   Maximum width container for entire site
   =================================== */

body {
    background-color: #000000;
}

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #1a1a1a;
    box-shadow: 0 0 80px rgba(255, 0, 85, 0.3);
    position: relative;
}

/* Adjust sticky elements to work within wrapper */
.header {
    position: sticky;
    top: 0;
}

.main-nav {
    position: relative;
    top: 0;
}

.mini-player {
    position: relative;
    top: 0;
}

/* Cookie banner stays full width */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    max-width: 100%;
}

/* Responsive adjustments for boxed layout */
@media (max-width: 1440px) {
    .page-wrapper {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    body {
        background-size: 10px 10px;
    }
    
    .page-wrapper {
        margin: 0;
        box-shadow: none;
    }
}

