/* Vlux Bank Luxury Theme Styles */
:root[data-theme="dark"] {
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-tertiary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --sidebar-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.02);
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E050 50%, #B8860B 100%);
    --white-gold-gradient: linear-gradient(135deg, #FFFFFF 0%, #F5E050 50%, #D4AF37 100%);
}

:root[data-theme="light"] {
    --bg-primary: #F8F9FA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E9ECEF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --sidebar-bg: #FFFFFF;
    --card-bg: #FFFFFF;
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E050 50%, #B8860B 100%);
    --white-gold-gradient: linear-gradient(135deg, #FFFFFF 0%, #F5E050 50%, #D4AF37 100%);
    --border-primary: rgba(212, 175, 55, 0.3);
    --shadow-primary: 0 10px 40px rgba(212, 175, 55, 0.08);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Default to Dark if no attribute */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-tertiary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --sidebar-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.02);
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E050 50%, #B8860B 100%);
    --border-primary: rgba(255, 255, 255, 0.1);
    --shadow-primary: 0 20px 50px rgba(0,0,0,0.5);
    --shadow-inner: inset 0 2px 4px rgba(255,255,255,0.05);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', 'Outfit', sans-serif;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-primary);
    transition: all 0.4s ease;
}

.sidebar {
    width: 280px;
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 1.5rem;
    z-index: 1000;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    gap: 1rem;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-link:hover, .nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.nav-link.active i {
    color: var(--gold-primary);
}

.main-content {
    margin-left: 280px;
    padding: 2rem;
    min-height: 100vh;
}

.gold-text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000000 !important;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

/* Theme Helper Classes */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.border-theme { border-color: var(--border-primary) !important; }
.shadow-premium { box-shadow: var(--shadow-primary) !important; }
.shadow-inner-theme { box-shadow: var(--shadow-inner) !important; }

.card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-primary);
    border-radius: 32px;
}
