header {
    background-color: rgba(1, 2, 4, 0.85);
    backdrop-filter: blur(24px);
}

.view {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.animate-fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bg-brand-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-brand-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: -8px 0 25px rgba(59, 130, 246, 0.03), 0 0 25px rgba(255, 255, 255, 0.03), 8px 0 25px rgba(239, 68, 68, 0.03);
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.12);
}