/* Global watermark logo for entire website */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/new/asdg-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

/* Ensure all content stays above the global watermark */
body > * {
    position: relative;
    z-index: auto;
}
