.ai-carta {
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    opacity: 0;
    animation: aparecer 0.5s forwards ease-out;
}

.carta-completa { width: 90px; }
.carta2 { width: 60px; }

@keyframes aparecer {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Carta bajada */
.carta-bajada {
    width: 160px;
    border-radius: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.4s ease;
}

/* Vibración */
@keyframes vibrar {
    0%, 100% { transform: translateY(20px) rotate(0deg); }
    20% { transform: translateY(20px) rotate(1deg); }
    40% { transform: translateY(20px) rotate(-1deg); }
    60% { transform: translateY(20px) rotate(1deg); }
    80% { transform: translateY(20px) rotate(-1deg); }
}

/* Glow dorado */
@keyframes glow {
    0% { box-shadow: 0 0 0px gold; }
    50% { box-shadow: 0 0 30px gold; }
    100% { box-shadow: 0 0 0px gold; }
}

.carta-bajada.visible {
    opacity: 1;
    animation: glow 1.5s ease-out forwards;
}

.carta-bajada.vibrar {
    animation: vibrar 0.5s ease-in-out, glow 1.5s ease-out forwards;
}

.ai-texto {
    font-family: 'Georgia', serif;
    margin-top: 10px;
}
.ai-texto p.frase {
    font-style: italic;
    font-size: 1.1em;
    color: #5b3924;
    margin: 6px 0 4px;
}

.ai-texto p.tip {
    font-size: 0.9em;
    color: #8c7a57;
    margin: 0 0 8px;
    font-weight: 500;
}

/* CONTENEDOR carta + texto */
#ai-carta-composicion {
    position: relative;
    width: 320px;
    padding: 25px 20px 30px;
    background: white;
    border-radius: 20px;
    border: 6px solid #d4af37; /* borde dorado fijo */
    color: #8B6F1E;
    font-family: 'Georgia', serif;
    user-select: none;
    margin: 0 auto;
}

/* Imagen dentro del contenedor */
#ai-carta-composicion img {
    display: block;
    max-width: 280px;
    margin: 0 auto 15px;
    border-radius: 15px;

    /* Sombra exterior dorada suave */
    box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.9);
    transition: box-shadow 0.3s ease;
}
#ai-carta-composicion img:hover {
    box-shadow: 0 0 30px 10px rgba(255, 223, 70, 1);
}

#ai-carta-composicion .ai-texto {
    text-align: center;
}

/* Texto limpio, sin sombra */
#ai-carta-composicion h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 1.6rem;
    text-shadow: none;
    letter-spacing: 1.2px;
}
#ai-carta-composicion p.frase {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: none;
}
#ai-carta-composicion p.tip {
    font-size: 1rem;
    color: #f0d86e;
    font-weight: 600;
    margin-top: 0;
    text-shadow: none;
}

/* Marca handle abajo a la derecha */
#ai-carta-composicion .ai-handle {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d4af37cc;
    text-shadow: 0 0 3px rgba(212, 175, 55, 0.8);
    user-select: text;
    pointer-events: none;
}

/* Responsive para móvil */
@media (max-width: 400px) {
    #ai-carta-composicion {
        width: 90vw;
        padding: 20px 15px 25px;
    }
    #ai-carta-composicion img {
        max-width: 90vw;
    }
}
