        body {
            position: relative;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-image: url('bgsft.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: top left;
            color: #333;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            z-index: -1;
        }

        .content {
            background: rgba(255, 255, 255, 0.6);
            max-width: 800px;
            margin: 20px auto;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .content img {
            max-width: 100%;
            height: auto;
        }

        .contentgame {
    position: relative;
    background: url('game.gif') no-repeat center center;
    background-size: cover; /* Ajusta a imagem para cobrir todo o fundo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: black;
}


        .contentmar {
    position: relative;
    background: url('mar1.gif') no-repeat center center;
    background-size: cover; /* Ajusta a imagem para cobrir todo o fundo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: black;
}

.contentmar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* Transparência para o fundo */
    z-index: -1; /* Garante que o fundo fique atrás do conteúdo */
}

        .contentmar1 {
    position: relative;
    background: url('mar2.gif') no-repeat center center;
    background-size: cover; /* Ajusta a imagem para cobrir todo o fundo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: black;
}

.contentmar1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* Transparência para o fundo */
    z-index: -1; /* Garante que o fundo fique atrás do conteúdo */
}

        
        .banner-container {
            position: relative;
            margin: 20px auto;
            text-align: center;
            max-width: 100%;
        }

        .banner-container img {
            width: 100%;
            max-width: 1024px;
            height: auto; /* Ajuste a altura para: auto/;*/
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: opacity 0.9s ease;
        }

        .banner-nav {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .banner-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            font-size: 10px;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            margin: 0 10px;
        }

        .banner-nav button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .highlight-title {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, #add8e6, #87cefa);
            color: black;
            padding: 10px 20px;
            border-radius: 10px;
            display: inline-block;
            margin: 10px auto;
            text-align: center;
            box-shadow: 0 4px 10px rgba(135, 206, 250, 0.3);
        }



/* Teste da animação shake */
.button-highlightgame {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: black;
    background-color: #FFA500; /* cor laranja */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* sombra */
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s ease; /* transições suaves */
    animation: shake 0.5s infinite; /* animação de balanço */
}

/* Efeito de hover que faz o botão aumentar */
.button-highlightgame:hover {
    transform: scale(1.70); /* aumenta o tamanho do botão em 50% */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* aumenta a sombra no hover */
}

/* Definindo a animação shake */
@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}


/* Botão de compra */

        .button-highlight {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            color: black;
            background-color: #FFA500; /* cor laranja */
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* sombra */
            transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s ease; /* transições suaves */
        } 

        .button-highlight:hover {
            transform: scale(1.1);
            background-color: #FF8C00; /* cor laranja mais escura ao passar o mouse */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* sombra mais intensa ao passar o mouse */
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            color: white;
            background-color: #007BFF;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* sombra */
            transition: transform 0.2s, background-color 0.3s;
        }

        .button:hover {
            transform: scale(1.1);
            background-color: #0056b3;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* sombra */
        }

        ul {
            text-align: left;
            margin: 0 auto;
            max-width: 600px;
            list-style: none;
            padding: 0;
        }

        ul li {
            margin-bottom: 10px;
        }

        footer {
            text-align: center;
            padding: 10px;
            background-color: ##87cefa;
            color: white;
        }

        footer a {
            color: blue;
            text-decoration: underline;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .highlight-title {
                font-size: 18px;
                padding: 10px;
            }

            .content {
                padding: 10px;
            }

            .button-highlight,
            .button {
                padding: 10px 15px;
                font-size: 14px;
            }

            ul {
                max-width: 100%;
            }

            ul li {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .highlight-title {
                font-size: 16px;
                padding: 5px;
            }

            .button-highlight,
            .button {
                font-size: 12px;
                padding: 8px 10px;
            }
        }

.meme_content {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px; /* Ajuste o tamanho máximo da div conforme necessário */
}

/* Estilos para a seção meme_content */
.meme_content {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.meme_content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.meme-image {
    max-height: 300px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.meme_content p {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}
.meme-content img {
    transition: transform 0.3s ease;
}

.meme-content img:hover {
    transform: scale(1.1);
}
