body {
    background-color: #F8FAFC; /* slate-50 */
    color: #1E293B; /* slate-800 */
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.glass-panel:hover {
    border: 1px solid rgba(0, 151, 157, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(0, 151, 157, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.transition-all-custom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(0, 151, 157, 0.1), transparent 30%),
                radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1), transparent 30%);
}

.value-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(0, 151, 157, 0.1) 0%, rgba(0, 151, 157, 0) 100%);
    border-left: 3px solid #00979D;
    color: #00979D;
}
.nav-item.active span {
    color: #1E293B;
    font-weight: 600;
}
