
        main {
            max-width: 1200px;
            margin: 100px auto 50px;
            padding: 0 20px;
        }
        h1, h2 {
            text-align: center;
        }
        .game-info {
            margin-bottom: 30px;
            text-align: center;
        }
        .about-game {
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .game-grid img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .cta-container {
            text-align: center;
            margin-bottom: 50px;
        }
        /* Como Jogar / Sobre o Jogo */
.game-info, .about-game {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.game-info p, .about-game p {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 2.4;
}

/* Grid de imagens */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
}



/* Responsividade */
@media(max-width: 768px) {
    .nav-list {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}