/* LUXURY RESET */
.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    background-color: #050505;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* UI COMPONENTS */
.lux-card {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
    border-radius: 0.75rem;
}

.badge {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag {
    padding: 6px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 10px;
    color: #A3A3A3;
    cursor: default;
    transition: all 0.3s;
}
.tag:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

/* ANIMATIONS */
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.animate-shine {
    background-size: 200% auto;
    animation: shine 8s linear infinite;
}

/* SCROLLBAR */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #121212;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}