/* 1. SCALINES: The lowest layer you want to see through */
.scanlines {
    /* Only one z-index here, and it must be lower than the content */
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    animation: scanline-scroll 2s linear infinite;
}

@keyframes scanline-scroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 4px;
    }
}

/* 2. BODY: Removed flex layout since content uses absolute/relative positioning */
body {
    background-color: #333333;
    color: #CCCCCC;
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

#hole-container,
#text-container,
#disclaimer-container,
#drain-container {
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

#hole-container {
    z-index: 0;
    position: absolute;
    top: 10%;
    left: 0;
}

#text-container {
    z-index: 20;
    background-color: #333333;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 100vw;
}


#drain-container {
    z-index: 20;
    position: absolute;
    bottom: 20%;
    left: -1%;
}

#disclaimer-container {
    text-align: center;
    z-index: 0;
    position: absolute;
    bottom: 5%;
    left: -1%;
}

