@charset "UTF-8";

.container:nth-child(2) {
    background-color: #f49265;
    background-image: url("../images/asset9.png");
    background-size: cover;


}

* {
    box-sizing: border-box;
}

.container {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    color: black;
    font-size: 100px;
    scroll-snap-align: start;


}


.main-container {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}


.separator1 {
    width: 100%;

    margin: 0px auto;

    padding: 10px;
    text-align: center;
    background-color: #33ff00;

    color: #ff4cde;

    font-family: 'Tahoma', sans-serif;
    letter-spacing: 1px;
    border: 1px solid #64ffa5;
    border-radius: 5px;
    font-size: 70px;
    font-weight: bolder
}



.separator2 {
    width: 100%;

    margin: 0px auto;

    padding: 10px;
    text-align: center;
    background-color: #ff0099;

    color: #ffb300;

    font-family: 'Tahoma', sans-serif;
    letter-spacing: 12px;
    border: 1px solid #64ffa5;
    border-radius: 5px;
    font-size: 80px;
    font-weight: bolder
}



.separator3 {
    width: 100%;

    margin: 0px auto;

    padding: 10px;
    text-align: center;
    background-color: #a200ff;

    color: #e1ff00;

    font-family: 'Tahoma', sans-serif;
    letter-spacing: 12px;
    border: 1px solid #64ffa5;
    border-radius: 5px;
    font-size: 80px;
    font-weight: bolder
}



.separator4 {
    width: 100%;

    margin: 0px auto;

    padding: 10px;
    text-align: center;
    background-color: #00ffff;

    color: #ffffff;

    font-family: 'Tahoma', sans-serif;
    letter-spacing: 12px;
    color: #ff49c6;
    border-radius: 5px;
    font-size: 80px;
    font-weight: bolder
}




/* -------------------------------------- */
/* --------------- GAME 1 --------------- */
/* -------------------------------------- */

#g1-game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #FAD7A0;

}

#g1-background {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#g1-bikini {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    transition: transform 1s, opacity 1s;

    pointer-events: none;
}

.g1-mark {
    position: absolute;
    width: 50px;

    height: 50px;

    border-radius: 50%;

    background-color: white;

    opacity: 1;
    transition: background-color 2s ease, opacity 1s ease-out;

    z-index: 3;
}


.g1-mark.tan {
    background-color: #ffb994;

}



/* -------------------------------------- */
/* --------------- GAME 2 --------------- */
/* -------------------------------------- */


#g2-game-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, rgb(151, 30, 21), #4d2204);
    font-family: Arial, sans-serif;
    position: relative
}


.g2-bubble {

    position: absolute;
    width: 50vw;
    height: 50vh;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    animation: floatDown 5s linear infinite;
    cursor: pointer;
    z-index: 5;
}

@keyframes floatDown {
    from {
        top: 110%;

    }

    to {
        top: -10%;

    }
}



.g2-lemon-slice {
    height: 35vw;
    width: 35vw;
    border-radius: 50%;
    background-color: #ffee00;

    position: relative;
    top: 10%;

    left: 25%;

    transform: translate(-50%, -50%);
    border: 1px solid grey;
    animation: floatUp 5s ease-in-out infinite;
    z-index: 1;
}


.g2-border {
    height: 33.5vw;
    width: 33.5vw;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid white;
}

.g2-pit {
    background-color: white;
    height: 6vw;
    width: 6vw;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.g2-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 33vw;
    background-color: white;
    transform-origin: center;

    transform: translateX(-50%) translateY(-50%);

}

#g2-l1 {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);

}

#g2-l2 {
    transform: translateX(-50%) translateY(-50%) rotate(120deg);

}

#g2-l3 {
    transform: translateX(-50%) translateY(-50%) rotate(240deg);

}


@keyframes floatUp {
    0% {
        transform: translate(-50%, -50%) translateY(40px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(40px);
    }
}



/* -------------------------------------- */
/* --------------- GAME 3 --------------- */
/* -------------------------------------- */
.g3-bouee {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 1;

    cursor: pointer;
    transform: translate(-50%, -50%);
    background-image: url("../images/asset7.png");
    background-size: cover;
}

#g3-game-container {
    margin: 0;
    display: flex;

    justify-content: center;
    align-items: center;
    height: 100vh;

}

.g3-piscine {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(#00b7ff, #559cff, #0044ff);
    border-radius: 1px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.3);
}





/* -------------------------------------- */
/* --------------- GAME 4 --------------- */
/* -------------------------------------- */
#g4-game-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

#g4-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #87CEEB);

    transition: background 1s ease;
}

#g4-sun,
#g4-moon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    cursor: grab;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

#g4-sun {
    background: radial-gradient(circle, #FFA500, #FF4500);
    box-shadow: 0 0 20px 10px rgba(255, 165, 0, 0.8);
}

#g4-moon {
    background: radial-gradient(circle, #FFFFFF, #C0C0C0);
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.8);
}

#g4-stars {
    position: absolute;
    width: 100%;
    height: 50%;

    pointer-events: none;

    top: 0;
    left: 0;
    z-index: 2;

}

#g4-clouds {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('../images/clouds.png') repeat-x;
    background-size: contain;
    opacity: 0.7;
    z-index: 2;
}




.g4-hidden {
    display: none;
}

/* -------------------------------------- */
/* --------------- GAME 5 --------------- */
/* -------------------------------------- */
#g5-game-container {
    margin: 0;
    background: #6cff76;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}


.g5-cone {
    position: absolute;
    width: 250px;
    height: 300px;
    top: 40%;
    left: calc(50% - 250px / 2);
    background: linear-gradient(to top, #a78453, #eac29e);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 2;

}

.g5-scoop-pink {
    background-color: #f78fb3;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 80%;
    top: calc(40% - 190px);
    left: calc(50% - 250px / 2);
    transform: translateX(-30%);
    z-index: 2;

}

.g5-scoop-blue {
    background-color: #6f4e37;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: calc(40% - 190px);
    left: calc(50% - 250px / 2);
    transform: translateX(30%);
    z-index: 2;

}

.g5-drip {
    position: absolute;
    width: 20px;
    height: 60px;
    border-radius: 100px;
    background-color: #f78fb3;
    left: 50%;
    transform: translateX(-50%);
    animation: drip-animation 3s linear infinite;
    pointer-events: auto;

    z-index: 2;

}

.g5-drip-brown {
    background-color: #6f4e37;
    transform: translateX(400%);
}

.g5-drip-pink {
    background-color: #f78fb3;
    transform: translateX(-400%);
}

.g5-drip:hover {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    pointer-events: auto;
    border-radius: 50%;
    z-index: 3;

}

@keyframes drip-animation {
    0% {
        top: 50%;
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 1;
    }
}

#puddle-pink,
#puddle-brown {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: width 0.5s, height 0.5s, background-color 0.5s;
}


.g5-puddle-pink {
    background-color: #fcbad3;
    bottom: 5px;

    left: 45%;
    z-index: 1;

}


.g5-puddle-brown {
    background-color: #b98364;
    bottom: 5px;

    left: 55%;
    z-index: 3;

}


.stream {
    position: absolute;
    top: 40%;

    left: 50%;

    transform: translateX(-50%);

    width: 10px;
    height: 20px;

    border-radius: 6px;
    z-index: 2;

}

#g5-stream-pink {
    transform: translateX(-400%);
}

#g5-stream-brown {
    transform: translateX(400%);
}