:root {
    --bs-dark: #0F0F12;
    --bs-body-bg: #0A0A0C;
    --bs-border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
}

.max-w-lg {
    max-width: 600px;
}

.anime-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.anime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.5) !important;
}

.anime-img {
    height: 320px;
    object-fit: cover;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    background-color: rgba(15, 15, 18, 0.85);
}