/* * FILE: style.css
 * Description: Custom premium styles and animations for URLZY.IN
 */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom button hover effect */
.btn-premium {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Table Row Hover */
tr {
    transition: background-color 0.2s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animated Gradient Background for specific sections */
.bg-mesh {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
                      radial-gradient(at 50% 0%, hsla(225,39%,23%,1) 0, transparent 50%), 
                      radial-gradient(at 100% 0%, hsla(225,39%,13%,1) 0, transparent 50%);
}