/* ==========================================================================
   ICETME-2027 | Premium Custom Styles 
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f7f9fb; 
}
::-webkit-scrollbar-thumb {
    background: #c3c5d9; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #737688; 
}

.gradient-text {
    background: linear-gradient(135deg, #003ec7, #0052ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(195, 197, 217, 0.15);
    box-shadow: inset 0 1px 0 rgba(221, 225, 255, 0.5); 
}

.oiled-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(195, 197, 217, 0.40);
    box-shadow: 0 32px 64px rgba(25, 28, 30, 0.08);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0); 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}
