/* HNX MLM Premium Dark Glassmorphism Styling Sheet - Ultra Premium Version */

:root {
    --bg-primary: #030408;
    --bg-secondary: #08090f;
    --bg-card: #0c0e17;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.22);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --accent-neon-green: #3b82f6; /* Blue Accent */
    --accent-gold: #60a5fa; /* Sky Blue Accent */
    --accent-glow-green: rgba(59, 130, 246, 0.2);
    --accent-glow-gold: rgba(96, 165, 250, 0.2);
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    --status-success: #3b82f6;
    --status-pending: #60a5fa;
    --status-danger: #ff3333;
    
    --font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Global Reset & Body Aura */
body {
    background-color: #030408 !important;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.015) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--glass-border-hover);
}

/* Ultra-Premium Glassmorphism Cards */
.glass-card {
    background: #0c0e17 !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1.2px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 10px 30px rgba(0, 0, 0, 0.75);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.7);
}

.glass-card.glow-green {
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 0 25px var(--accent-glow-green);
    border-color: rgba(37, 99, 235, 0.15);
}
.glass-card.glow-green::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    background: #2563eb;
    bottom: -20px;
    left: -20px;
    animation: floatSpotlightGreen 10s infinite alternate ease-in-out;
}
@keyframes floatSpotlightGreen {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -20px) scale(1.2); }
}

.glass-card.glow-green:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        0 0 30px var(--accent-glow-green);
}

.glass-card.glow-gold {
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 0 25px var(--accent-glow-gold);
    border-color: rgba(96, 165, 250, 0.15);
}
.glass-card.glow-gold::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    background: #60a5fa;
    top: -20px;
    right: -20px;
    animation: floatSpotlightGold 8s infinite alternate ease-in-out;
}
@keyframes floatSpotlightGold {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.15); }
}

.glass-card.glow-gold:hover {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        0 0 30px var(--accent-glow-gold);
}

/* Input Fields */
.glass-input {
    background: #08090f !important;
    border: 1.2px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--text-primary);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.glass-input:focus {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3) !important;
    color: var(--text-primary);
    outline: none;
}

.glass-input-gold:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px var(--accent-glow-gold);
}

/* Custom Select Dropdowns */
select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23b0b0b0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px 10px;
    padding-right: 40px;
}

/* Premium Buttons */
.btn-hnx-green {
    background: linear-gradient(90deg, #2563eb, #3b82f6, #2563eb) !important;
    background-size: 200% auto !important;
    border: none;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: btnGradientShine 4s linear infinite;
}
.btn-hnx-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-hnx-gold {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6) !important;
    background-size: 200% auto !important;
    border: none;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: btnGradientShine 4s linear infinite;
}

@keyframes btnGradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Ticker tape scroller components */
.ticker-wrap {
    display: inline-block;
    animation: tickerRun 25s linear infinite;
    padding-left: 100%;
}
.ticker-wrap:hover {
    animation-play-state: paused;
}
@keyframes tickerRun {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.btn-hnx-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-hnx-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.btn-hnx-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

/* Typography & Visual Accents */
.text-green { color: var(--accent-neon-green) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-gradient-gold {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-green {
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges */
.badge-hnx {
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}
.badge-paid, .badge-completed, .badge-active, .badge-approved {
    background: rgba(57, 255, 20, 0.08);
    color: var(--accent-neon-green);
    border: 1px solid rgba(57, 255, 20, 0.15);
}
.badge-pending {
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.15);
}
.badge-rejected, .badge-failed, .badge-blocked {
    background: rgba(255, 51, 51, 0.08);
    color: #ff3333;
    border: 1px solid rgba(255, 51, 51, 0.15);
}

/* Compact Tables Styling */
.hnx-table {
    width: 100%;
    color: var(--text-primary);
    border-collapse: separate;
    border-spacing: 0;
}
.hnx-table th {
    background: rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--accent-gold) !important;
    font-weight: 700;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 16px;
    text-align: left;
}
.hnx-table td {
    padding: 14px 16px;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    color: #e0e0e0;
}
.hnx-table tbody tr {
    transition: background-color 0.2s ease;
}
.hnx-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

/* App Shell Structure - Compact & Clean */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 240px;
    max-width: 240px;
    background: #080808;
    border-right: 1px solid var(--glass-border);
    min-height: 100vh;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

#sidebar .sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}

#sidebar ul.components {
    padding: 15px 0;
}

.sidebar-profile-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px;
    margin: 15px;
    position: relative;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.03);
}
.sidebar-profile-card::after {
    content: '👑';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.85rem;
    opacity: 0.65;
}

.badge-capsule-green {
    background: #39ff14 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    border-radius: 20px !important;
    padding: 3px 8px !important;
    font-size: 0.68rem !important;
}

#sidebar ul.components {
    padding: 10px 0;
}

#sidebar ul li a {
    padding: 9px 15px;
    margin: 4px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
    border: 1px solid transparent;
}

#sidebar ul li a i {
    margin-right: 12px;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

#sidebar ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.015);
}

#sidebar ul li.active a {
    color: var(--accent-gold) !important;
    background: rgba(255, 215, 0, 0.04) !important;
    border: 1.5px solid rgba(255, 215, 0, 0.25) !important;
    font-weight: 600;
}

#sidebar ul li.active a i {
    color: var(--accent-gold) !important;
}

/* Admin Sidebar Accent overrides */
#sidebar.admin-sidebar ul li a:hover i {
    color: var(--accent-gold);
}

#content {
    width: 100%;
    padding: 24px 30px;
    min-height: 100vh;
    background: transparent;
    transition: all 0.3s;
}

/* Mobile responsive navigation & header */
.mobile-header {
    display: none;
    background: #080808;
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1010;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-bottom-nav-item i {
    font-size: 1.1rem;
    margin-bottom: 1px;
}

.mobile-bottom-nav-item.active {
    color: var(--accent-neon-green);
}

/* Tab menu */
.hnx-tabs .nav-link {
    color: var(--text-secondary);
    border: none !important;
    background: transparent !important;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s;
    border-bottom: 2px solid transparent !important;
}

.hnx-tabs .nav-link.active {
    color: var(--accent-neon-green) !important;
    border-bottom-color: var(--accent-neon-green) !important;
}

/* Slabs tabs color overrides for Admin settings */
.admin-settings-tabs .nav-link.active {
    color: var(--accent-gold) !important;
    border-bottom-color: var(--accent-gold) !important;
}

/* Genealogy tree visualizer */
.genealogy-tree-container {
    overflow-x: auto;
    padding: 20px;
}

/* Range input gold/green slider */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
}
input[type=range]::-webkit-slider-thumb {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--accent-neon-green);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
    box-shadow: 0 0 8px var(--accent-neon-green);
}
input[type=range].gold-range::-webkit-slider-thumb {
    background: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

/* Modal customization */
.modal-content {
    background: #080808 !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(25px);
}
.modal-header {
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 16px 20px !important;
}
.modal-footer {
    border-top: 1px solid var(--glass-border) !important;
    padding: 14px 20px !important;
}

/* Responsive configurations */
@media (max-width: 991.98px) {
    #sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        bottom: 0;
        height: 100vh;
        z-index: 1020;
    }
    
    #sidebar.show {
        left: 0;
        box-shadow: 10px 0 30px rgba(0,0,0,0.8);
    }
    
    .mobile-header {
        display: flex;
    }
    
    #content {
        padding: 20px 16px 85px 16px;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
}

/* Premium Outlined Stat Cards with Neon glows (Exactly as screenshot) */
.stat-card-green {
    background: rgba(16, 185, 129, 0.05) !important;
    border: 1.5px solid rgba(16, 185, 129, 0.36) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09), 
        0 10px 30px rgba(0, 0, 0, 0.6), 
        0 0 18px rgba(16, 185, 129, 0.12) !important;
}
.stat-card-green:hover {
    border-color: rgba(16, 185, 129, 0.55) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.14), 
        0 12px 35px rgba(0, 0, 0, 0.7), 
        0 0 22px rgba(16, 185, 129, 0.22) !important;
}

.stat-card-yellow {
    background: rgba(234, 179, 8, 0.05) !important;
    border: 1.5px solid rgba(234, 179, 8, 0.36) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09), 
        0 10px 30px rgba(0, 0, 0, 0.6), 
        0 0 18px rgba(234, 179, 8, 0.12) !important;
}
.stat-card-yellow:hover {
    border-color: rgba(234, 179, 8, 0.55) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.14), 
        0 12px 35px rgba(0, 0, 0, 0.7), 
        0 0 22px rgba(234, 179, 8, 0.22) !important;
}

.stat-card-red {
    background: rgba(239, 68, 68, 0.05) !important;
    border: 1.5px solid rgba(239, 68, 68, 0.36) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09), 
        0 10px 30px rgba(0, 0, 0, 0.6), 
        0 0 18px rgba(239, 68, 68, 0.12) !important;
}
.stat-card-red:hover {
    border-color: rgba(239, 68, 68, 0.55) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.14), 
        0 12px 35px rgba(0, 0, 0, 0.7), 
        0 0 22px rgba(239, 68, 68, 0.22) !important;
}

.stat-card-blue {
    background: rgba(14, 165, 233, 0.05) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.36) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09), 
        0 10px 30px rgba(0, 0, 0, 0.6), 
        0 0 18px rgba(14, 165, 233, 0.12) !important;
}
.stat-card-blue:hover {
    border-color: rgba(14, 165, 233, 0.55) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.14), 
        0 12px 35px rgba(0, 0, 0, 0.7), 
        0 0 22px rgba(14, 165, 233, 0.22) !important;
}

.stat-card-purple {
    background: rgba(168, 85, 247, 0.05) !important;
    border: 1.5px solid rgba(168, 85, 247, 0.36) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.09), 
        0 10px 30px rgba(0, 0, 0, 0.6), 
        0 0 18px rgba(168, 85, 247, 0.09) !important;
}
.stat-card-purple:hover {
    border-color: rgba(168, 85, 247, 0.55) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.14), 
        0 12px 35px rgba(0, 0, 0, 0.7), 
        0 0 22px rgba(168, 85, 247, 0.22) !important;
}

/* Mobile scale and padding overrides for compact layouts */
@media (max-width: 768px) {
    .glass-card {
        padding: 12px 14px !important;
        border-radius: 10px !important;
    }
    body {
        font-size: 0.78rem !important;
    }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.15rem !important; }
    h5 { font-size: 1.02rem !important; }
    h6 { font-size: 0.9rem !important; }
    
    .chart-container canvas, canvas#earningsChart, canvas#businessChart {
        max-height: 160px !important;
    }
}

/* Dynamic Gradient Background Overlay */
body {
    background: radial-gradient(circle at 50% 0%, #0b1129 0%, #030408 70%) !important;
    background-attachment: fixed !important;
    background-image: 
        radial-gradient(circle at 50% 0%, #0b1129 0%, #030408 70%),
        linear-gradient(rgba(37, 99, 235, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.015) 1px, transparent 1px) !important;
    background-size: 100% 100%, 30px 30px, 30px 30px !important;
}

/* Premium Rotating Neon Card Border */
.neon-card-wrapper {
    position: relative;
    border-radius: 15px;
    padding: 1.5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neon-card-wrapper::before {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    background: conic-gradient(from 0deg, transparent 20%, #3b82f6 40%, transparent 60%, #60a5fa 80%, transparent 100%);
    top: -40%;
    left: -40%;
    animation: rotateBorder 5s linear infinite;
    z-index: 0;
    opacity: 0.85;
}
.neon-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}
.neon-card-wrapper .card-content {
    position: relative;
    background: #080911;
    border-radius: 14px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Colorful Neon Visible Borders & Backgrounds */
.top-stat-card {
    background: #080912 !important;
    border-width: 1.5px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.top-stat-card.blue {
    border: 1.5px solid rgba(37, 99, 235, 0.5) !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.18) !important;
}
.top-stat-card.blue:hover {
    border-color: rgba(37, 99, 235, 0.8) !important;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35) !important;
}

.top-stat-card.green {
    border: 1.5px solid rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.18) !important;
}
.top-stat-card.green:hover {
    border-color: rgba(16, 185, 129, 0.8) !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35) !important;
}

.top-stat-card.purple {
    border: 1.5px solid rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.18) !important;
}
.top-stat-card.purple:hover {
    border-color: rgba(139, 92, 246, 0.8) !important;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35) !important;
}

.top-stat-card.orange {
    border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.18) !important;
}
.top-stat-card.orange:hover {
    border-color: rgba(245, 158, 11, 0.8) !important;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35) !important;
}

.top-stat-card.pink {
    border: 1.5px solid rgba(236, 72, 153, 0.5) !important;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.18) !important;
}
.top-stat-card.pink:hover {
    border-color: rgba(236, 72, 153, 0.8) !important;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35) !important;
}

/* Floating Card Animations */
.float-card-1 { animation: floatAnim1 5s ease-in-out infinite; }
.float-card-2 { animation: floatAnim2 6s ease-in-out infinite; }
.float-card-3 { animation: floatAnim3 5.5s ease-in-out infinite; }
.float-card-4 { animation: floatAnim4 6.2s ease-in-out infinite; }
.float-card-5 { animation: floatAnim5 5.8s ease-in-out infinite; }

@keyframes floatAnim1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
@keyframes floatAnim2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}
@keyframes floatAnim3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
@keyframes floatAnim4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3.5px); }
}
@keyframes floatAnim5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5.5px); }
}

/* Glass card styling additions */
.glass-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #080912 !important;
}
.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
