@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@400;500;600&family=Manrope:wght@400;500;700&family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24
}

body {
    background-color: #0A0A0A;
    position: relative;
}

/* Premium Background */
.premium-bg {
    background-color: #0A0A0A;
    background-image: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 40%), 
                      radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    background-attachment: fixed;
}

.grid-pattern {
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Cards */
.login-card, .glass-card {
    background: #111111 !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-radius: 1.5rem;
    backdrop-filter: none !important;
}

.glass-card {
    background: #111111 !important;
}


/* Inputs */
input, textarea, select {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    backdrop-filter: none !important; /* Remove blur from inputs for clarity */
}

.input-glow:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.8) !important;
}

/* Buttons */
.premium-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8962D 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.premium-btn:hover::after {
    left: 120%;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

/* Textures */
.sync-texture {
    background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuC-FXNAtDHoq0sC79N8ANXwvfM8NtHQ-ykcENQQ7OXdzTjdnIRfbq8_D04oBWe3fyVBOIvB_YgIzmEGumD3mIXBoQvI3y_3c3b0AjhXTGGh3U0BeVCmc21QmpeSXd6H_tGZIIATPNeCFRXNBNchZ2frVpjhV6q92cfTCECOm9DB4p7Uq-RQEkkmsrhYQBA0YstSU1Fg9T6NNatBM7X2mmoRndIp7eGd7TbQRRZOv9RFgi7p-7jqYSihDSR7STRXvuvdXDgLp7_3nHYK);
    background-size: cover;
}

/* Custom Scrollbar - Premium Dark Minimalist */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    transition: all 0.5s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.3);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.05) #0A0A0A;
}

/* Sidebar Specific Scrollbar */
#sidebar::-webkit-scrollbar {
    width: 3px;
}

#sidebar::-webkit-scrollbar-thumb {
    background: transparent;
}

#sidebar:hover::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
}


/* Prestige Custom Select */
.prestige-select-container {
    position: relative;
    width: 100%;
    height: fit-content;
    z-index: 10;
}

.prestige-select-container.active {
    z-index: 50;
}

.prestige-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #0A0A0A;
    border: 1px solid #262626;
    border-radius: 0.75rem;
    padding: 1rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prestige-select-trigger:hover, 
.prestige-select-container.active .prestige-select-trigger {
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.prestige-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: #121212;
    border: 1px solid #262626;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999; /* Ensure it stays on top of everything */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 250px;
    overflow-y: auto;
}

.prestige-select-container.active .prestige-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.prestige-option {
    padding: 0.875rem 1rem;
    color: #A3A3A3;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.prestige-option:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #FFFFFF;
}

.prestige-option.selected {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    font-weight: bold;
}

/* Hide Number Input Arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Benefits Chips */
.benefit-chip.active-benefit {
    border-color: #D4AF37;
    color: #000000;
    background-color: #D4AF37;
    font-weight: 800;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Global Typography Overrides */
label, 
.font-label,
.text-label,
.text-zinc-500.uppercase,
.text-neutral-500.uppercase,
.text-gray-400.uppercase,
.text-gray-500.uppercase,
th {
    color: #FFFFFF !important;
    opacity: 0.9 !important;
}

/* Input Focus States */
input:focus, 
textarea:focus, 
select:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
    outline: none !important;
}




/* Utility Fixes */
.bg-primary, .bg-primary * {
    color: #000000 !important;
}
