
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
  --netflix-red: #E50914;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    -webkit-font-smoothing: antialiased;
}

/* Animações Premium */
@keyframes scale-up {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-scale-up {
    animation: scale-up 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, #E50914 25%, #ff4d4d 50%, #E50914 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

/* Esconder scrollbars mas manter funcionalidade */
::-webkit-scrollbar {
  width: 0px;
}

/* Touch smoothing */
* {
    -webkit-tap-highlight-color: transparent;
}
