        body {
            background-image: url('/site/Gam2/images/Mar_Desenhar_Top_background.png');
            background-size: cover;
            background-attachment: fixed;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            user-select: none;
            -webkit-user-select: none; /* Para navegadores baseados em WebKit */
            -moz-user-select: none;    /* Para navegadores Firefox */
            -ms-user-select: none;  
        }
        
        #container-superior {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 450px;
            width: 450px;
            margin: 10px auto;
            border: 10px solid #3d3c3c;
            border-radius: 5px;
        }
        #start-screen {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        #game-container {
            width: 450px;
            height: 450px;
            display: none; /* Esconder até o jogo começar */
            flex-wrap: wrap;
        }
        .card {
            width: 92px;
            height: 92px;
            margin: 10px;
            background-color: transparent; /* Fundo transparente */
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .card img {
            width: 100%;
            height: 100%;
        }
        .card .back {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('/site/Gam5/images/card-back.png'); /* Imagem de fundo do verso do cartão */
            background-size: cover;
        }
        .card.flipped .back {
            display: none;
        }
        #result-screen {
            display: none;
            text-align: center;
            color: #3d3c3c;
            font-family: 'Rock Salt', cursive;
        }
        #congrats-gif {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .menu-bar {
            display: flex;
            align-items: center;
            width: 450px;
            border-radius: 5px;
            background-color: #3d3c3c;
            box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            position: relative;
        }
        .menu-bar .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .banner {
            padding-top: 1px;
        }
    
     @media (max-width: 600px) {
     #container-superior{
        width: 90vw;
        height: 90vw; /
        margin: 10px auto;
        flex-wrap: wrap;
        overflow: hidden;
    }
    
    #start-screen img {
    max-width: 90vw;
    max-height: 90vw;
    object-fit: contain;
    }
    
    .card {
            width: 82px;
            height: 82px;
            margin: 5px;
            background-color: transparent; /* Fundo transparente */
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

    .menu-bar {
        width: 90%;
        max-width: 450px;
    }