
/* Binance announcement specific styles */
.announcement-badge {
    background-color: #f0b90b;
    color: #1e2026;
}

/* Custom styles for announcement cards */
.announcement-card {
    transition: all 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Latest announcement highlight */
.latest-announcement {
    border-left: 4px solid #4f46e5;
}

/* Pulse animation for new alerts */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse-alert {
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth transitions for elements */
.smooth-transition {
    transition: all 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a5b4fc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #818cf8;
}