/**
 * RhymeCraft - Professional Custom Stylings & Animations
 * Complements Tailwind CSS with smooth UI transitions and custom widgets
 */

/* 1. Custom Smooth Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

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

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

/* 2. Visual Animation & Micro-Transitions */
.fade-in {
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Glow Effects */
.glow-indigo {
    box-shadow: 0 0 20px 2px rgba(99, 102, 241, 0.15);
}

/* 3. Text & Typography Refinements */
.text-display-gradient {
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Touch-Friendly Padding Overrides */
.touch-target {
    min-height: 44px;
    min-width: 44px;
}
