/* assets/css/style.css */

.gold-gradient-text {
    background: linear-gradient(135deg, #c28938 0%, #ddbf7d 50%, #a86f2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for the modal-like container */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
