body {
    background-color: #051810;
    color: #ecfdf5;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #051810; }
::-webkit-scrollbar-thumb { background: #064e3b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #34d399; }

.glass-nav {
    background: rgba(5, 24, 16, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(125deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px -10px rgba(6, 78, 59, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.liquid-blob {
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
    animation: morph 10s ease-in-out infinite alternate;
    background-size: 200% 200%;
    transition: all 1s ease;
}

.view-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.view-section.active-view {
    display: block;
    opacity: 1;
}