body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background-color: #000;
}

.hidden {
    display: none;
}

.bananaVideo.initial {
    display: hidden;
}

.clickArea {
    display: block;
    width: 100%;     
    cursor: pointer;
}

.bananaOverlay.disabled {
    pointer-events: none;
}

.bananaVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: none;
    filter: brightness(115%) saturate(110%);
}

.bananaOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.clickArea {
    display: block;
    width: 100%;     
    cursor: pointer;
}

.clickArea:nth-child(1) { height: 32%; }
.clickArea:nth-child(2) { height: 18%; }
.clickArea:nth-child(3) { height: 20%; }
.clickArea:nth-child(4) { height: 30%; }

/* Adjustments for wider screens */
@media (min-aspect-ratio: 16/9), (min-aspect-ratio: 4/3) {
    .bananaVideo[data-orientation="wide"] {
        display: block;
    }
    .clickArea:nth-child(1) { height: 24%; }
    .clickArea:nth-child(2) { height: 20%; }
    .clickArea:nth-child(3) { height: 21%; }
    .clickArea:nth-child(4) { height: 30%; }
}

/* Adjustments for narrower screens */
@media (max-aspect-ratio: 9/16), (max-aspect-ratio: 3/4) {
    .bananaVideo[data-orientation="narrow"] {
        display: block;
    }
}
