/* ==================== Guru Games ==================== */
.guru-games {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bkg-color-2);
    margin: 0px;
    padding: 0px;
}

.guru-games-left {
    padding: 30px 80px;
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.guru-games-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain; /* Mantiene le proporzioni senza distorsioni */
}

    .guru-games-left p {
        margin-bottom: 15px;
    }

    .guru-games-left button {
        align-self: baseline;
        margin: 20px 0px;
    }

    #guru_games_btn
    {
        background-color: gray;
    }

    #unity_asset_store_btn {
        display: flex;
        align-items: center;
        gap: 8px; /* spazio tra immagine e testo */
    }

        #unity_asset_store_btn img {
            width: 20px;
            height: auto;
        }

.guru-games-right {
    flex: 2;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .guru-games-right img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Mantiene le proporzioni senza distorsioni */
    }

@media (max-width: 1300px) {
    .guru-games {
        flex-direction: column;
    }

    .guru-games-left {
        text-align: center;
        align-items: center;
        padding: 30px 20px;
    }

    .guru-games-logo {
        max-width: min(70%, 280px);
        margin-bottom: 15px;
    }

        .guru-games-left button {
            align-self: center;
        }

    .guru-games-right {
        flex: 1;
        clip-path: none;
        width: 100%;
    }
}
