/* Bujjamma Safety Nets - Premium Custom Micro-Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F8FAFC; 
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8; 
}

/* Glassmorphism Refinements */
.glassmorphic {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Smooth Image Transitions */
img {
    transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Custom typed blinking cursor */
.typed-cursor {
    color: #E11D48;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/* Premium gradient pulsing glow */
.pulsing-glow {
    position: relative;
}
.pulsing-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1E3A8A 0%, #E11D48 100%);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.4;
    border-radius: inherit;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
    0% { opacity: 0.3; filter: blur(6px); }
    100% { opacity: 0.6; filter: blur(10px); }
}
