/* Urban Life Junctions - Futuristic design palette */
:root {
  --white: #ffffff;
  --pearl: #E8E4DF;
  --cyber-blue: #00B4D8;
  --purple: #7C3AED;
  --black: #0a0a0a;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes grow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade { animation: fade 0.6s ease-in-out; }
.animate-grow { animation: grow 0.8s ease-out; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #6D28D9; }
