/* Muhurat Finder - Premium Theme */

.muhurat-card {
    animation: cardReveal 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.muhurat-card:nth-child(1) { animation-delay: 0.05s; }
.muhurat-card:nth-child(2) { animation-delay: 0.1s; }
.muhurat-card:nth-child(3) { animation-delay: 0.15s; }
.muhurat-card:nth-child(4) { animation-delay: 0.2s; }
.muhurat-card:nth-child(5) { animation-delay: 0.25s; }
.muhurat-card:nth-child(6) { animation-delay: 0.3s; }
.muhurat-card:nth-child(7) { animation-delay: 0.35s; }
.muhurat-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

.muhurat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(122, 26, 59, 0.12);
}

.muhurat-card.highly {
    border-left: 4px solid #d4a926;
}

.muhurat-card.good {
    border-left: 4px solid #7a1a3b;
}

.date-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.level-badge {
    font-size: 0.65rem;
    padding: 2px 10px;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-highly {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.level-good {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #9d174d;
}

.nakshatra-tag {
    background: rgba(253, 245, 230, 0.8);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #7a1a3b;
    font-weight: 500;
}

.stats-grid {
    animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
