::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
html {
    scroll-behavior: smooth;
}
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}
.glow-primary {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.glow-secondary {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.game-card:hover .play-overlay {
    opacity: 1;
}