<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles for HanziMaster */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Character card hover effects */
.character-card {
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation for the character demo */
#character-target {
    background-color: #f9fafb;
    transition: background-color 0.3s ease;
}

#character-target:hover {
    background-color: #f3f4f6;
}

/* Custom focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .character-card {
        padding: 0.75rem;
    }
    
    .character-card .text-4xl {
        font-size: 1.75rem;
    }
}

/* Quiz mode styles */
.quiz-active #character-target {
    background-color: #eff6ff;
    border-color: #6366f1;
}

/* Animation for stroke order demonstration */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stroke-animation {
    animation: fadeIn 0.5s ease-in-out;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}</pre></body></html>