.baralho-cigano-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background: #2c1b3d; /* Cor de fundo baseada na imagem */
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#baralho-cigano-container h2 {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f1c40f !important;
}

.importante {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.instrucao {
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 40px;
    color: #fff;
}

/* Deck em leque */
.deck-fan {
    position: relative;
    height: 400px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 800px;
}

.card-back {
    width: 120px;
    height: 190px;
    background: #4b0082;
    border: 2px solid #ffd700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back:hover {
    transform: translateY(-20px) scale(1.1);
    z-index: 100 !important;
}

.card-back.selected {
    border-color: #f1c40f;
    box-shadow: 0 0 15px #f1c40f;
    transform: translateY(-30px);
    opacity: 0.5;
    pointer-events: none;
}

/* Resultados */
#baralho-results {
    margin-top: 40px;
    text-align: left;
}

.resultado-titulo {
    text-align: center;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
}

.interpretacao-item {
    display: flex;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    align-items: center;
}

.interpretacao-item img {
    width: 120px;
    height: 190px;
    border-radius: 5px;
    margin-right: 25px;
    border: 2px solid #f1c40f;
}

#baralho-cigano-container .interpretacao-text h3 {
    color: #f1c40f !important;
    margin-top: 0;
}

.btn-reset {
    background: #f1c40f;
    color: #2c1b3d;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
}

.btn-reset:hover {
    background: #d4ac0d;
}

#baralho-selection-status {
    font-size: 1.2em;
    margin-top: 20px;
    color: #f1c40f;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .baralho-cigano-wrapper {
        padding: 20px;
    }

    .baralho-cigano-wrapper h2 {
        font-size: 2em;
    }

    .instrucao {
        font-size: 1.2em;
    }

    .deck-fan {
        height: 200px; /* Altura ainda mais reduzida para o leque em mobile */
        margin-top: 20px;
        margin-bottom: 40px; /* Mais espaço abaixo */
    }

    .card-back {
        width: 80px; /* Tamanho da carta reduzido */
        height: 130px;
    }

    .interpretacao-item {
        flex-direction: column; /* Empilha a imagem e o texto */
        text-align: center;
    }

    .interpretacao-item img {
        margin-right: 0;
        margin-bottom: 20px; /* Espaço entre a imagem e o texto */
    }
}
