@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

::-webkit-scrollbar {
   display: none;  
}

*{
	margin: 0px;
	padding: 0px;    
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
   line-height: 1.4;
   font-size: 1em;
   -webkit-font-smoothing: antialiased;
   font-optical-sizing: auto;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body{
	background: #111;
}

.container{
	width: 100%;
	max-width: 1250px;
}

/* ---------- Scroll Animations ---------- */
.animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out,
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
