body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
    background-image: url('img/sombra.png');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 200px;
}

main {
    padding: 20px;
    text-align: center;
    position: relative; /* Para garantir que o conteúdo principal fique acima do background */
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo semi-transparente para contraste */
    padding: 20px;
    border-radius: 8px;
}

.promo {
    background-color: #transparent;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: left;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.promo h1 {
    color: #f767a3;
    font-size: 28px;
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

.promo .promo-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: #ffffff;
    margin: 10px 0;
}

.promo p {
    font-size: 18px;
    margin: 10px 0;
    color: #b5b5b5;
}

.cta-button {
    background-color: #ff4081;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0px;
    font-size: 18px;
    margin-top: 20px;
    display: inline-block;
}

.games {
    width: 100%;
    max-width: calc(100% - 540px);
    box-sizing: border-box;
}

.games h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Garante que as colunas ocupem todo o espaço disponível */
    gap: 5px; /* Diminuir ainda mais o espaço entre os itens */
    padding: 0; /* Remover padding */
}

.game {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0; /* Remover margens */
}

.game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    margin: 0; /* Remover margens */
}

footer {
    background-color: #212121;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
    .promo {
        width: 100%;
        margin-bottom: 20px;
    }

    .games {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .promo .promo-highlight {
        font-size: 28px;
    }

    .promo p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .game img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .promo h1 {
        font-size: 24px;
    }

    .promo .promo-highlight {
        font-size: 24px;
    }

    .promo p {
        font-size: 14px;
    }

    .cta-button {
    background-color: #ff4081;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0px;
    font-size: 18px;
    margin-top: 20px;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
}

}
