* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    line-height: 1.7;
}

.topo-fixo {
    background: rgba(0, 0, 0, 0.9);
    padding: 1.2rem 0;
    border-bottom: 3px solid #ff6b6b;
}

.container-topo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logotipo img {
    height: 70px;
    width: auto;
}

.menu-navegacao {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-navegacao a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

.menu-navegacao a:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.menu-navegacao a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s;
}

.menu-navegacao a:hover::after {
    width: 100%;
}

.botao-jogar {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.botao-jogar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 107, 107, 0.7);
}

.navegacao-migalhas {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 0;
}

.navegacao-migalhas ol {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.navegacao-migalhas a {
    color: #4ecdc4;
    text-decoration: none;
}

.navegacao-migalhas a:hover {
    text-decoration: underline;
}

.conteudo-principal {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.secao-artigo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 2.5rem 0 1.2rem;
    color: #ffe66d;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #4ecdc4;
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.9;
}

strong {
    color: #ff6b6b;
    font-weight: 700;
}

.grade-jogos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cartao-jogo {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cartao-jogo:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.cartao-jogo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.conteudo-cartao {
    padding: 1.8rem;
}

.conteudo-cartao h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #ffe66d;
}

.conteudo-cartao p {
    font-size: 1rem;
    color: #f0f0f0;
}

.lista-avaliacoes {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.item-avaliacao {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 2rem;
    border-left: 5px solid #ff6b6b;
}

.cabecalho-avaliacao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.info-autor h4 {
    font-size: 1.3rem;
    color: #ffe66d;
    margin-bottom: 0.3rem;
}

.info-autor p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}

.estrelas-avaliacao {
    color: #ffe66d;
    font-size: 1.3rem;
}

.texto-avaliacao {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f5f5f5;
}

.secao-faq {
    margin: 3rem 0;
}

.item-faq {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4ecdc4;
}

.pergunta-faq {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffe66d;
    margin-bottom: 1rem;
}

.resposta-faq {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.rodape-site {
    background: rgba(0, 0, 0, 0.95);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 4px solid #ff6b6b;
}

.container-rodape {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.coluna-rodape h3 {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 1.2rem;
}

.coluna-rodape p, .coluna-rodape ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.coluna-rodape ul {
    list-style: none;
}

.coluna-rodape ul li {
    margin-bottom: 0.8rem;
}

.coluna-rodape a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s;
}

.coluna-rodape a:hover {
    color: #ff6b6b;
}

.rodape-inferior {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.rodape-inferior p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.aviso-idade {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .container-topo {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-navegacao {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .grade-jogos {
        grid-template-columns: 1fr;
    }
}
