body {
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    background-color: #00008B; /* Azul escuro do CN */
    color: white;
    text-align: center;
    padding: 20px;
}

.header {
    background-color: #FFD700; /* Amarelo vibrante */
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Para posicionar o botão de voltar */
}

.header h1 {
    color: #E7000F; /* Vermelho forte */
    font-size: 2.5em; /* Um pouco menor que o título principal */
    margin: 0;
    text-shadow: 3px 3px 5px rgba(0,0,0,0.5);
}

.back-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E7000F; /* Vermelho */
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #B2000B; /* Vermelho mais escuro no hover */
}

.game-container {
    background-color: #1A1A1A; /* Fundo escuro para o player do jogo */
    width: 90%; /* Ajusta a largura */
    max-width: 960px; /* Largura máxima para jogos */
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Garante que o iframe fique dentro */
    position: relative;
    padding-top: 56.25%; /* Proporção 16:9 para o iframe responsivo (altura = 9/16 * largura) */
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    background-color: #4169E1; /* Azul royal */
    padding: 20px;
    margin: 30px auto;
    max-width: 960px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.game-info h2 {
    color: #FFD700; /* Amarelo */
    font-size: 2em;
    margin-top: 0;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.game-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsividade básica */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    .back-button {
        position: static;
        transform: none;
        margin-bottom: 15px;
        display: inline-block;
    }
    .game-info {
        padding: 15px;
    }
    .game-info h2 {
        font-size: 1.8em;
    }
}