/* ==========================================================================
   Vanilla JS Async Page Transitions - Working Crossfade
   ========================================================================== */

/* Page wrapper - fixed position for stacking */
.page-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #0a0a0a;
    opacity: 1;
    z-index: 1;
}

/* Page inner - contains the actual content */
.page-inner {
    min-height: 100%;
}
