/* Custom Gradient Utilities */
.btn-gradient {
    background: linear-gradient(135deg, #00f3ff 0%, #bd00ff 50%, #ff00aa 100%);
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

.btn-gradient:hover {
    background-position: 100% 50%;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

@media (prefers-color-scheme: light) {
    ::-webkit-scrollbar-thumb {
        background: #ccc;
    }
}

/* Base override to prevent FOUC on some systems */
html {
    scroll-padding-top: 80px; /* Offset for sticky header */
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #00f3ff;
    outline-offset: 2px;
}
