/**
 * Elite Premium - Custom Styles & Animations
 */

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Glassmorphism Hover Effects */
.glass-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

/* Hide Scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Premium Border Animation */
@keyframes rotate-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-border {
    background: linear-gradient(-45deg, #8B5CF6, #3B82F6, #F43F5E, #3B82F6);
    background-size: 400% 400%;
    animation: rotate-border 10s ease infinite;
}

/* Text Selection */
::selection {
    background: rgba(139, 92, 246, 0.5);
    color: white;
}

#googleBtn {
    overflow: hidden;
    width: 100%;
    box-shadow: none;
}

#googleBtn iframe {
    box-shadow: none !important;
    filter: sepia(0.12) saturate(1.2) hue-rotate(-18deg);
}
