* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    min-height: 100vh;

    font-family: Arial, sans-serif;

    text-align: center;

    color: #222;

    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #dff6ff,
            #f8f1ff
        );
}


/* =========================
   CLOUDS
========================= */

.cloud {

    position: fixed;

    font-size: 70px;

    opacity: 0.55;

    pointer-events: none;

    z-index: 0;

    animation:
        floatCloud 18s linear infinite;
}


.cloud1 {

    top: 12%;

    left: -100px;
}


.cloud2 {

    top: 35%;

    left: -200px;

    font-size: 50px;

    animation-duration: 25s;
}


.cloud3 {

    top: 65%;

    left: -150px;

    font-size: 90px;

    animation-duration: 30s;
}


@keyframes floatCloud {

    from {
        transform: translateX(-150px);
    }

    to {
        transform: translateX(110vw);
    }

}


/* =========================
   HERO
========================= */

.hero {

    position: relative;

    z-index: 1;

    padding-top: 70px;
}


.emoji {

    font-size: 70px;

    animation:
        balloonFloat 3s
        ease-in-out
        infinite;
}


@keyframes balloonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


.hero h1 {

    margin-top: 10px;

    font-size: 58px;

    letter-spacing: 1px;
}


.hero p {

    margin-top: 10px;

    font-size: 21px;

    color: #666;
}


/* =========================
   WELCOME
========================= */

.welcome {

    position: relative;

    z-index: 1;

    display: flex;

    justify-content: center;

    padding:
        25px 20px 0;
}


.welcome-card {

    width: 520px;

    max-width: 100%;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 25px;

    text-align: left;

    background:
        rgba(255, 255, 255, 0.72);

    border-radius: 20px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.07);
}


.welcome-icon {

    font-size: 38px;

    flex-shrink: 0;
}


.welcome-card h2 {

    font-size: 20px;

    margin-bottom: 4px;
}


.welcome-card p {

    font-size: 14px;

    line-height: 1.5;

    color: #667085;
}


/* =========================
   MAIN
========================= */

main {

    position: relative;

    z-index: 1;

    padding:
        45px 20px;
}


main > h2 {

    font-size: 32px;

    margin-bottom: 35px;
}


/* =========================
   GAMES
========================= */

.games {

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 30px;

    flex-wrap: wrap;
}


/* =========================
   GAME CARD
========================= */

.game-card {

    width: 320px;

    padding: 35px 28px;

    background:
        rgba(255, 255, 255, 0.92);

    border-radius: 25px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* HOVER ZOOM */

.game-card:hover {

    transform:
        translateY(-10px)
        scale(1.05);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.20);
}


/* =========================
   ICON
========================= */

.game-icon {

    font-size: 70px;

    margin-bottom: 18px;
}


/* =========================
   TITLE
========================= */

.game-card h3 {

    font-size: 25px;

    margin-bottom: 12px;
}


/* =========================
   DESCRIPTION
========================= */

.game-description {

    color: #666;

    line-height: 1.6;

    min-height: 55px;

    margin-bottom: 20px;
}


/* =========================
   INFO
========================= */

.game-info {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 25px;

    font-size: 13px;

    color: #667085;
}


.available {

    font-weight: bold;

    color: #2e9b59;
}


.coming {

    font-weight: bold;

    color: #c28a00;
}


/* =========================
   PLAY BUTTON
========================= */

.play-button {

    display: inline-block;

    padding: 13px 30px;

    border-radius: 30px;

    background: #222;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.play-button:hover {

    transform: scale(1.07);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.18);
}


.play-button:active {

    transform: scale(0.96);
}


/* =========================
   NORMAL BUTTON
========================= */

button {

    border: none;

    padding: 13px 30px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    background: #222;

    color: white;
}


button:disabled {

    opacity: 0.45;

    cursor: not-allowed;
}


/* =========================
   COMING SOON
========================= */

.coming-soon {

    opacity: 0.8;
}


/* =========================
   FOOTER
========================= */

footer {

    position: relative;

    z-index: 1;

    padding:
        20px 30px 30px;

    color: #777;

    font-size: 14px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .hero {

        padding-top: 45px;
    }


    .emoji {

        font-size: 60px;
    }


    .hero h1 {

        font-size: 42px;
    }


    .hero p {

        font-size: 18px;
    }


    .welcome {

        padding-top: 25px;
    }


    .welcome-card {

        padding: 16px 18px;

        gap: 13px;
    }


    .welcome-icon {

        font-size: 32px;
    }


    .welcome-card h2 {

        font-size: 18px;
    }


    .welcome-card p {

        font-size: 13px;
    }


    main {

        padding-top: 40px;
    }


    main > h2 {

        font-size: 27px;
    }


    .game-card {

        width: 90%;

        max-width: 330px;
    }


    .game-card:hover {

        transform:
            translateY(-5px)
            scale(1.02);
    }

}