/* dashboard_user/assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body {
    background-color: #05050f;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.08), transparent 25%), 
        radial-gradient(circle at 85% 30%, rgba(255, 0, 127, 0.08), transparent 25%);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 120px; /* Space for nav */
    min-height: 100vh;
    background-attachment: fixed;
}

* { box-sizing: border-box; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
::-webkit-scrollbar-thumb { background: rgba(0, 229, 255, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.6); }

/* Premium Glass Card */
.premium_glass_card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 229, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium_glass_card:hover, .premium_glass_card.hoverable:hover {
    border: 1px solid rgba(0, 229, 255, 0.5);
    box-shadow: 0 10px 40px 0 rgba(0, 229, 255, 0.15), inset 0 0 20px rgba(0, 229, 255, 0.05);
    transform: translateY(-5px);
}

.premium_glass_card_magenta {
    border-color: rgba(255, 0, 127, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 0, 127, 0.02);
}
.premium_glass_card_magenta:hover {
    border-color: rgba(255, 0, 127, 0.5);
    box-shadow: 0 10px 40px 0 rgba(255, 0, 127, 0.15), inset 0 0 20px rgba(255, 0, 127, 0.05);
}

/* Animations */
@keyframes scanline { 
    0% { transform: translateY(-100%); } 
    100% { transform: translateY(100%); } 
} 

@keyframes pulseGlow { 
    0% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); } 
    50% { box-shadow: 0 0 30px rgba(0, 229, 255, 0.6); } 
    100% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); } 
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease-out forwards; opacity: 0; }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Bottom Nav */
.bottom-nav {
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 400px; 
    border-radius: 30px; 
    display: flex; 
    justify-content: space-around; 
    padding: 15px; 
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 15px;
}

.nav-item.active, .nav-item:hover {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.2);
}

.nav-item i { font-size: 1.2rem; margin-bottom: 5px; }

/* Layout base */
.container { padding: 20px; max-width: 800px; margin: 0 auto; }
.section-title { color: #00e5ff; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.section-title.magenta { color: #ff007f; }

 . h o m e - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;   g a p :   2 0 p x ;   m a r g i n - t o p :   3 0 p x ;   p a d d i n g - b o t t o m :   1 0 0 p x ;   }   
 . h o m e - t i l e   {   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   h e i g h t :   1 2 0 p x ;   t e x t - d e c o r a t i o n :   n o n e ;   c o l o r :   # f f f ;   b o r d e r - r a d i u s :   2 0 p x ;   t r a n s i t i o n :   0 . 3 s ;   }   
 . h o m e - t i l e   i   {   f o n t - s i z e :   2 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   c o l o r :   # 0 0 e 5 f f ;   } 
 . c m d - b t n   {   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 4 ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 2 2 9 , 2 5 5 , 0 . 3 ) ;   b o r d e r - r a d i u s :   1 2 p x ;   p a d d i n g :   1 5 p x   1 0 p x ;   c o l o r :   # f f f ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   8 p x ;   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   0 . 2 s ;   b o x - s h a d o w :   i n s e t   0   0   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 8 ) ;   }   
 . c m d - b t n : a c t i v e   {   t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;   b o x - s h a d o w :   i n s e t   0   0   2 0 p x   r g b a ( 0 , 2 2 9 , 2 5 5 , 0 . 4 ) ;   b o r d e r - c o l o r :   # 0 0 e 5 f f ;   }  
 