/* Background Styles */
.page-background-wrapper {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-background::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-content-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
}

/* Ensure no WordPress default background */
body, body::before {
    background: none !important;
}
