/* Custom styles for Breaking Bad theme */

.impact-font {
    font-family: Impact, 'Arial Black', sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #374151;
}

::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Hover effects */
.character-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Animation for new castings */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Custom button styles */
.btn-cursed {
    background: linear-gradient(45deg, #dc2626, #991b1b);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-cursed:hover {
    background: linear-gradient(45deg, #991b1b, #7f1d1d);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .impact-font {
        letter-spacing: 1px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Easter egg styles */
.konami-code::before {
    content: "🧪";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    z-index: 10;
}