/* Descrição do Jogo */

.game-info {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30%;
    color: #fffde7;
}

.game-info strong {
    color: #ffffff;
    font-weight: 800;
}

.dados{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    max-height: 100%;
}

/*descrição do Jogo - Lista de Regras */

.descricao{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 30px;
    flex: 1;
    min-width: 250px;
    font-weight: 300;
    color: #ffeb3b ;
    font-size: 1.5rem;
    
}

/* Accordion Curiosidades */
.curiosidades {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center
}

.curiosidades h2 {
    color: #ffeb3b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.accordion {
    border: 2px solid #ffeb3b;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 235, 59, 0.3);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    cursor: pointer;
    color: #ffeb3b;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: rgba(255, 235, 59, 0.1);
}

.triangulo {
    transition: transform 0.3s ease;
}

.accordion-item.ativo .triangulo {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: left;
}

.accordion-item.ativo .accordion-content {
    max-height: 100px;
    padding: 10px 20px;
}

.accordion-content p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.link {
    display: inline-block;
    margin: 10px 0;
    padding: 5px 10px;
    background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
    color: #1b5e20;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
    border: 2px solid transparent;
}

.link:hover {
    background: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.5);
    letter-spacing: 1px;
}

.link:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 235, 59, 0.3);
}





