@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

#media-container video, #media-container img {
    transition: all 0.3s ease-in-out;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card.advice-card {
    border-left: 4px solid #f43f5e;
    background-color: #fff1f2;
}

.result-card.advice-card h4 {
    color: #e11d48;
}

.result-card h4 {
    color: #4f46e5;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.result-card h4 i {
    margin-right: 0.5rem;
}

.result-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}
