/* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); } ::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #7c3aed, #ec4899); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(to bottom, #6d28d9, #db2777); } /* Custom animations */ @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Selection styles */ ::selection { background: rgba(167, 139, 250, 0.5); color: white; } /* Custom styles for the page */ body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 1.6; } /* Mobile menu transition */ #mobile-menu { transition: all 0.3s ease; transform-origin: top; } /* Custom focus styles */ input:focus, textarea:focus, select:focus, button:focus { box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.5); } /* Custom placeholder color */ ::placeholder { color: rgba(216, 180, 254, 0.5) !important; } /* Responsive tweaks */ @media (max-width: 767px) { .hero-image { margin-top: 2rem; } }