.ashprit-wrapper {
    scroll-behavior: smooth;
}
.ashprit-wrapper input:focus {
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.4);
}

/* Premium Futuristic Visuals */
.font-neon {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
}
.neon-text-glow {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}
.glow-box {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.glow-button {
    position: relative;
    overflow: hidden;
}
.glow-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s;
}
.glow-button:hover::after {
    opacity: 1;
}
.glow-card {
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.15), 0 1px 1px 0 rgba(255, 255, 255, 0.05) inset;
}
