
/* --- ESTILO DAS NOTIFICAÇÕES FAKE (LEDS) --- */
#led-notification-container {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    z-index: 9999;
    pointer-events: none; /* Deixa clicar no que está atrás */
}

.led-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-left: 4px solid var(--accent-color); /* Borda Amarela */
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    margin-bottom: 10px;
    opacity: 0;
    animation: slideDownIn 0.5s forwards, slideUpOut 0.5s 4.5s forwards;
}

.led-card.top-rank {
    border-left-color: #32D74B; /* Verde para TOPs */
    background: linear-gradient(90deg, rgba(20,20,20,1) 0%, rgba(50,215,75,0.1) 100%);
}

.led-icon {
    font-size: 1.5rem;
}

.led-content {
    flex: 1;
}

.led-title {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.led-text {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.2;
}

.led-text b {
    color: var(--accent-color);
}

.top-rank .led-text b {
    color: #32D74B;
}

/* Animações */
@keyframes slideDownIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUpOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-50px); opacity: 0; }
}
