.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(78, 222, 163, 0.05);
}

.active-glass-card {
    background: rgba(78, 222, 163, 0.1);
    border: 1px solid rgba(78, 222, 163, 0.3);
    box-shadow: 0 0 30px rgba(78, 222, 163, 0.15);
}

.transition-all-custom {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.glow-secondary {
    text-shadow: 0 0 10px rgba(78, 222, 163, 0.6);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }

.morphing-target {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    border: 2px solid rgba(78, 222, 163, 0.5);
    background: rgba(78, 222, 163, 0.2);
    backdrop-filter: blur(12px);
    opacity: 0;
    border-radius: 1rem;
}