/* Tier Section Animations */
.tier-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.tier-section[data-tier="SS"] { animation-delay: 0.1s; }
.tier-section[data-tier="S"] { animation-delay: 0.2s; }
.tier-section[data-tier="A"] { animation-delay: 0.3s; }
.tier-section[data-tier="B"] { animation-delay: 0.4s; }
.tier-section[data-tier="C"] { animation-delay: 0.5s; }
.tier-section[data-tier="D"] { animation-delay: 0.6s; }

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

/* Animal Card Hover Effects */
.animal-card {
    transition: all 0.3s ease;
}

.animal-card:hover {
    transform: translateY(-4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tier-section {
        animation-delay: 0s !important;
    }
}

/* Table Responsive */
@media (max-width: 640px) {
    table {
        font-size: 0.75rem;
    }
    th, td {
        padding: 0.5rem 0.25rem;
    }
}

