/* Custom CSS for SMW Trolls Flask App */

/* Additional custom styles can be added here */
/* The main styling is handled in the base.html template */

/* Custom animations */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px var(--glow-color), 0 0 10px var(--glow-color);
    }
    50% {
        text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
    }
}

.retro-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Hover effects for cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Flask-specific styles */
.nav-link.active {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 5px var(--glow-color);
}

/* Construction page specific styles */
.construction-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
