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

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #0a0015 100%);
    color: #e0e0ff;
    line-height: 1.8;
    min-height: 100vh;
}

.cabecalho-bn {
    background: linear-gradient(90deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    padding: 1.5rem 0;
    box-shadow: 0 5px 25px rgba(255, 0, 110, 0.4);
    position: relative;
}

.cabecalho-bn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff006e, #3a86ff, #ff006e);
}

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

.logo-bn img {
    height: 75px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.navegacao-bn ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navegacao-bn a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navegacao-bn a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff006e;
    transform: translateY(-3px);
}

.btn-jogar-bn {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 6px 30px rgba(255, 0, 110, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-jogar-bn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 0, 110, 0.9);
}

.breadcrumb-bn {
    max-width: 1300px;
    margin: 1rem auto;
    padding: 0 2rem;
}

.breadcrumb-bn ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    color: #b0b0ff;
}

.breadcrumb-bn a {
    color: #ff006e;
    text-decoration: none;
}

.hero-bn {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3)), url('images/1.jpg') center/cover;
    padding: 6rem 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(255, 0, 110, 0.4);
}

.hero-bn h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 0, 110, 1);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-bn p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.secao-bn {
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.secao-bn h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff006e;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(255, 0, 110, 0.8);
    font-weight: 900;
}

.secao-bn h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #3a86ff;
    text-transform: uppercase;
    font-weight: 700;
}

.secao-bn p, .secao-bn li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 2;
}

.grid-jogos-bn {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.card-jogo-bn {
    background: linear-gradient(145deg, #1a0033 0%, #0a0015 100%);
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 35px rgba(255, 0, 110, 0.3);
    transition: all 0.4s ease;
    border: 2px solid #8338ec;
}

.card-jogo-bn:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(58, 134, 255, 0.6);
    border-color: #ff006e;
}

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

.card-jogo-bn h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: #ff006e;
    margin: 0;
    text-align: center;
}

.card-jogo-bn p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    color: #b0b0ff;
}

.avaliacoes-bn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.avaliacao-item-bn {
    background: linear-gradient(135deg, #1a0033 0%, #0a0015 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 6px solid #ff006e;
    box-shadow: 0 6px 20px rgba(131, 56, 236, 0.3);
}

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

.avaliacao-autor-bn {
    font-weight: 700;
    color: #ff006e;
    font-size: 1.2rem;
}

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

.avaliacao-texto-bn {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #e0e0ff;
}

.avaliacao-data-bn {
    font-size: 0.9rem;
    color: #8080ff;
    margin-top: 0.8rem;
}

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

.faq-item-bn {
    background: linear-gradient(135deg, #1a0033 0%, #0a0015 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #3a86ff;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.faq-item-bn h4 {
    color: #ff006e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item-bn p {
    color: #e0e0ff;
    line-height: 1.9;
}

.rodape-bn {
    background: linear-gradient(90deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.container-rodape-bn {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.coluna-rodape-bn {
    flex: 1;
    min-width: 220px;
}

.coluna-rodape-bn h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

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

.coluna-rodape-bn a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.coluna-rodape-bn a:hover {
    color: #0a0015;
}

.copyright-bn {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

@media (max-width: 768px) {
    .container-cabecalho-bn {
        flex-direction: column;
        text-align: center;
    }
    
    .navegacao-bn ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-bn h1 {
        font-size: 2.5rem;
    }
    
    .grid-jogos-bn {
        flex-direction: column;
        align-items: center;
    }
    
    .card-jogo-bn {
        width: 100%;
        max-width: 400px;
    }
}
