/**
 * WordSolve Custom Stylesheet
 */

/* Custom transitions and interactive feedback styles */
.word-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-card:active {
    transform: scale(0.97);
}

/* Glassmorphism custom styling utilities */
.glass-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-container {
    background: rgba(33, 49, 69, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

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

.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animate transitions on theme switch */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}
