/* Custom luxury radial background resembling aged dark leather */
.bg-leather-radial {
    background: radial-gradient(circle at center, #1C1510 0%, #0A0807 100%);
}

/* Metallic gold text shimmer effect */
.gold-text-shimmer {
    background: linear-gradient(to right, #FBF0D2 20%, #EEBD6E 40%, #C58F2B 60%, #FBF0D2 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Luxury custom scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0807;
}
::-webkit-scrollbar-thumb {
    background: #381F0B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #613C19;
}
